Compare commits
No commits in common. "8feb470940b072b576f14ad195fe99f4a39e9e55" and "b09e2c4850a06bd7ef3835480e7e7f1c54df2129" have entirely different histories.
8feb470940
...
b09e2c4850
13
dwm/config.h
13
dwm/config.h
|
@ -91,7 +91,7 @@ static const Layout layouts[] = {
|
|||
/* commands */
|
||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||
static const char *termcmd[] = { "xfce4-terminal", "--hide-menubar", NULL };
|
||||
static const char *termcmd[] = { "st", NULL };
|
||||
static const char *firefox[] = { "firefox", NULL };
|
||||
static const char *cacalendar[] = { "cacalendar", NULL };
|
||||
static const char *pcmanfm[] = { "pcmanfm", NULL };
|
||||
|
@ -103,16 +103,13 @@ static const char *mineur[] = { "mineur", NULL };
|
|||
static const Key keys[] = {
|
||||
/* custom */
|
||||
{ 0, XF86XK_PowerOff, spawn, SHCMD("power") },
|
||||
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("volume add") },
|
||||
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("volume min") },
|
||||
{ 0, XF86XK_AudioMute, spawn, SHCMD("volume set 0") },
|
||||
{ 0, XF86XK_AudioPlay, spawn, SHCMD("volume set 100") },
|
||||
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("/home/cptbb/dev/script/volume add") },
|
||||
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("/home/cptbb/dev/script/volume min") },
|
||||
{ 0, XF86XK_AudioMute, spawn, SHCMD("/home/cptbb/dev/script/volume set 0") },
|
||||
{ 0, XF86XK_AudioPlay, spawn, SHCMD("/home/cptbb/dev/script/volume set 100") },
|
||||
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("luminosity add") },
|
||||
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("luminosity min") },
|
||||
{ 0, PrintScreenDWM, spawn, SHCMD("screenshot") },
|
||||
{ ShiftMask, XF86XK_AudioRaiseVolume, spawn, SHCMD("set-sound-card next") },
|
||||
{ ShiftMask, XF86XK_AudioLowerVolume, spawn, SHCMD("set-sound-card prev") },
|
||||
{ ShiftMask, XF86XK_AudioMute, spawn, SHCMD("set-sound-card") },
|
||||
{ ShiftMask, PrintScreenDWM, spawn, SHCMD("screenrecorder") },
|
||||
{ MODKEY|ShiftMask, XK_l, spawn, SHCMD("lockscreen") },
|
||||
{ MODKEY, XK_w, spawn, SHCMD("randwallpaper") },
|
||||
|
|
Loading…
Reference in New Issue