diff options
author | julian T <julian@jtle.dk> | 2019-01-27 21:29:23 +0100 |
---|---|---|
committer | julian T <julian@jtle.dk> | 2019-01-27 21:29:23 +0100 |
commit | dc5c6c8875a2fcf7f64e5b9f7a9fe89804ab5094 (patch) | |
tree | da03e3b21a52c180cacc6bc7d7e6a411505c656b | |
parent | 28ba57f1e557eb5408ba666d15af2797e0a1d841 (diff) | |
parent | 3837ac1855c39ac2d2acf6e307a43bd07f6517ee (diff) |
Merge branch 'master' of https://github.com/jbjjbjjbj/Custom-dwm6.1
-rw-r--r-- | config.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -88,6 +88,7 @@ static const char *exitXsession[] = { "/home/julian/.dwmSession.sh", "-e" }; static const char *musicPause[] = {"dbus-send", "--print-reply", "--dest=org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2.Player.PlayPause"}; static const char *musicPrev[] = {"dbus-send", "--print-reply", "--dest=org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2.Player.Previous"}; static const char *musicNext[] = {"dbus-send", "--print-reply", "--dest=org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2.Player.Next"}; +static const char *launchScript[] = {"/home/julian/lc", "--dmenu" }; #define MODKEY Mod1Mask #define TAGKEYS(KEY,TAG) \ @@ -150,8 +151,8 @@ static Key keys[] = { { 0, XF86XK_MonBrightnessDown, spawn, {.v = brightdown } }, { 0, XF86XK_AudioPlay , spawn, {.v = musicPause } }, { 0, XF86XK_AudioNext , spawn, {.v = musicNext } }, - { 0, XF86XK_AudioPrev , spawn, {.v = musicPrev } } - + { 0, XF86XK_AudioPrev , spawn, {.v = musicPrev } }, + { MODKEY, XK_semicolon, spawn, {.v = launchScript } } }; /* button definitions */ |