aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xextras/HOME/.xmonad/xmobar-bluetooth2
-rw-r--r--src/Internal/Keys.hs8
2 files changed, 5 insertions, 5 deletions
diff --git a/extras/HOME/.xmonad/xmobar-bluetooth b/extras/HOME/.xmonad/xmobar-bluetooth
index 3024cfe..30903e3 100755
--- a/extras/HOME/.xmonad/xmobar-bluetooth
+++ b/extras/HOME/.xmonad/xmobar-bluetooth
@@ -15,4 +15,4 @@ bluetoothctl -- info | while read line ; do
fi
done
-exec echo "<fc=#a0a0a0></fc> <fc=#404040>│</fc> "
+exec echo "<fc=#404040></fc> <fc=#404040>│</fc> "
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs
index 09d0cc8..bc27750 100644
--- a/src/Internal/Keys.hs
+++ b/src/Internal/Keys.hs
@@ -95,8 +95,8 @@ newKeys markContext =
, ((modm .|. mod1Mask, xK_s), (void $ spawn "sudo systemctl suspend && xsecurelock"))
, ((modm .|. shiftMask, xK_c), kill)
, ((modm .|. shiftMask, xK_t), withFocused $ windows . W.sink)
- , ((modm, xK_comma), withFocused $ sendMessage . shrinkWindowAlt)
- , ((modm, xK_period), withFocused $ sendMessage . expandWindowAlt)
+ , ((modm .|. shiftMask, xK_plus), withFocused $ sendMessage . expandWindowAlt)
+ , ((modm .|. shiftMask, xK_minus), withFocused $ sendMessage . shrinkWindowAlt)
, ((mod4Mask, xK_BackSpace), (void $ spawn "xterm"))
, ((modm, xK_BackSpace), (void $ spawn "pkill -SIGUSR1 xmobar"))
, ((modm, xK_t), (void $ spawn (terminal config)))
@@ -130,8 +130,8 @@ newKeys markContext =
, ((modm, xK_minus), sendMessage (IncMasterN (-1)))
, ((modm, xK_plus), sendMessage (IncMasterN 1))
- , ((modm .|. shiftMask, xK_bracketleft), sendMessage (modifyWindowBorder (-1)))
- , ((modm .|. shiftMask, xK_bracketright), sendMessage (modifyWindowBorder 1))
+ , ((modm .|. shiftMask, xK_bracketleft), sendMessage (modifyWindowBorder (-5)))
+ , ((modm .|. shiftMask, xK_bracketright), sendMessage (modifyWindowBorder 5))
, ((modm, xK_bracketleft), sendMessage ShrinkZoom)
, ((modm, xK_bracketright), sendMessage ExpandZoom)