config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

commit 47d8ab9733c3ae9d1c6e1847c423d99c8a20f676
parent f39b48743ce9596620ea72088678b7b412d19cf3
Author: jacob <jacobdoeslinux@protonmail.com>
Date:   Sun, 24 Nov 2019 21:47:37 -0800

added mpd controls

Diffstat:
Mxmonad/.xmonad/xmonad-x86_64-linux | 0
Mxmonad/.xmonad/xmonad.errors | 10+++++-----
Mxmonad/.xmonad/xmonad.hs | 6+++---
Mxmonad/.xmonad/xmonad.o | 0
4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/xmonad/.xmonad/xmonad-x86_64-linux b/xmonad/.xmonad/xmonad-x86_64-linux Binary files differ. diff --git a/xmonad/.xmonad/xmonad.errors b/xmonad/.xmonad/xmonad.errors @@ -1,6 +1,6 @@ xmonad.hs:21:16: warning: [-Wdeprecations] - In the use of `defaultConfig' + In the use of ‘defaultConfig’ (imported from XMonad, but defined in XMonad.Config): Deprecated: "Use def (from Data.Default, and re-exported by XMonad and XMonad.Config) instead." | @@ -8,7 +8,7 @@ xmonad.hs:21:16: warning: [-Wdeprecations] | ^^^^^^^^^^^^^ xmonad.hs:79:101: warning: [-Wdeprecations] - In the use of `defaultConfig' + In the use of ‘defaultConfig’ (imported from XMonad, but defined in XMonad.Config): Deprecated: "Use def (from Data.Default, and re-exported by XMonad and XMonad.Config) instead." | @@ -16,7 +16,7 @@ xmonad.hs:79:101: warning: [-Wdeprecations] | ^^^^^^^^^^^^^ xmonad.hs:80:131: warning: [-Wdeprecations] - In the use of `defaultConfig' + In the use of ‘defaultConfig’ (imported from XMonad, but defined in XMonad.Config): Deprecated: "Use def (from Data.Default, and re-exported by XMonad and XMonad.Config) instead." | @@ -24,7 +24,7 @@ xmonad.hs:80:131: warning: [-Wdeprecations] | ^^^^^^^^^^^^^ xmonad.hs:81:101: warning: [-Wdeprecations] - In the use of `defaultConfig' + In the use of ‘defaultConfig’ (imported from XMonad, but defined in XMonad.Config): Deprecated: "Use def (from Data.Default, and re-exported by XMonad and XMonad.Config) instead." | @@ -32,7 +32,7 @@ xmonad.hs:81:101: warning: [-Wdeprecations] | ^^^^^^^^^^^^^ xmonad.hs:93:82: warning: [-Wdeprecations] - In the use of `defaultConfig' + In the use of ‘defaultConfig’ (imported from XMonad, but defined in XMonad.Config): Deprecated: "Use def (from Data.Default, and re-exported by XMonad and XMonad.Config) instead." | diff --git a/xmonad/.xmonad/xmonad.hs b/xmonad/.xmonad/xmonad.hs @@ -51,9 +51,9 @@ myKeys conf = M.fromList $ , ((controlMask, xK_Home), spawn "/home/jacob/bin/xbacklight-script inc") , ((controlMask, xK_End), spawn "/home/jacob/bin/xbacklight-script dec") , ((myModMask .|. shiftMask , xK_l ), spawn "systemctl suspend") - , ((0, 0x1008ff16), spawn "playerctl previous") - , ((0, 0x1008ff14), spawn "playerctl play-pause") - , ((0, 0x1008ff17), spawn "playerctl next") + , ((0, 0x1008ff16), spawn "playerctl previous && mpc prev") + , ((0, 0x1008ff14), spawn "playerctl play-pause && mpc toggle") + , ((0, 0x1008ff17), spawn "playerctl next && mpc next") -- -- Window Controls , ((myModMask .|. shiftMask , xK_space ), setLayout $ XMonad.layoutHook conf) diff --git a/xmonad/.xmonad/xmonad.o b/xmonad/.xmonad/xmonad.o Binary files differ.