diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-25 14:34:19 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-25 14:34:19 +0200 |
commit | 070feda5d782cdaf0675f6ebb51574a8ea725591 (patch) | |
tree | 2d4fe8dccfee9a7211f78c83a72597041d1a8b04 | |
parent | bigger sides (diff) | |
download | dwm-070feda5d782cdaf0675f6ebb51574a8ea725591.tar.gz dwm-070feda5d782cdaf0675f6ebb51574a8ea725591.tar.bz2 dwm-070feda5d782cdaf0675f6ebb51574a8ea725591.tar.xz dwm-070feda5d782cdaf0675f6ebb51574a8ea725591.tar.zst dwm-070feda5d782cdaf0675f6ebb51574a8ea725591.zip |
update\
-rw-r--r-- | config.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 0; /* 0 means no bar */ @@ -136,7 +136,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_F10, spawn, {.v = voltogcmd } }, { MODKEY|ShiftMask, XK_F11, spawn, {.v = voldeccmd } }, { MODKEY|ShiftMask, XK_F12, spawn, {.v = volinccmd } }, - { MODKEY|ShiftMask, XK_Home, spawn, {.v = miccmd } }, + { MODKEY|ShiftMask, XK_Delete, spawn, {.v = miccmd } }, { MODKEY|ControlMask, XK_F9, spawn, {.v = dmkillcmd } }, { MODKEY|ControlMask, XK_F10, spawn, {.v = dmscrotcmd } }, { MODKEY|ControlMask, XK_F11, spawn, {.v = dmsearchcmd } }, |