diff options
| author | Cori Barker <coribarker2@gmail.com> | 2026-06-26 14:06:53 +0100 |
|---|---|---|
| committer | Cori Barker <coribarker2@gmail.com> | 2026-06-26 14:06:53 +0100 |
| commit | 43f68dc924c90cbc9f4704c4a166cc6dbc6d3001 (patch) | |
| tree | ba96a3f8199d0ed912dcadfc9becaecc700e1b61 /xmonad.hs | |
| parent | d332dd6bfc4c9716b500ddeb682845a2783da87b (diff) | |
Initial Commit
Diffstat (limited to 'xmonad.hs')
| -rw-r--r-- | xmonad.hs | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -87,7 +87,7 @@ myStartupHook = do spawnOnce "dunst" spawnOnce "~/.config/polybar/polybar-launch.sh" spawnOnce "urxvtd -q -o -f" - spawnOnce "/usr/bin/emacs --daemon --init-dir ~/.config/emacs/" + spawnOnce "emacs --daemon --init-dir ~/.config/emacs/" ------------------------------------------------------------------------ -- Key bindings @@ -133,9 +133,6 @@ myKeys = , ("<XF86AudioRaiseVolume>", spawn "pamixer --increase 5") , ("<XF86AudioLowerVolume>", spawn "pamixer --decrease 5") , ("<XF86AudioMute>", spawn "pamixer --toggle-mute") - - , ("<XF86MonBrightnessUp>", spawn "brightnessctl set +10%") - , ("<XF86MonBrightnessDown>", spawn "brightnessctl set 10%-") ] ++ [ ("M-" ++ key, windows $ W.greedyView ws) @@ -198,4 +195,4 @@ main = do , startupHook = myStartupHook , logHook = myLogHook fifo } - `additionalKeysP` myKeys
\ No newline at end of file + `additionalKeysP` myKeys |
