diff options
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/gkleen@sif/default.nix | 2 | ||||
-rw-r--r-- | accounts/gkleen@sif/xmonad/xmonad.hs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index 01b68ed7..e7cb786b 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -278,7 +278,7 @@ in { | |||
278 | home = { | 278 | home = { |
279 | packages = with pkgs; [ | 279 | packages = with pkgs; [ |
280 | fira fira-code powerline-fonts nerdfonts pavucontrol keepassxc | 280 | fira fira-code powerline-fonts nerdfonts pavucontrol keepassxc |
281 | sxiv xclip mumble pulseaudio-ctl libnotify synergy | 281 | sxiv xclip mumble pulseaudio-ctl pamixer libnotify synergy |
282 | xorg.xbacklight screen-message pidgin-with-plugins | 282 | xorg.xbacklight screen-message pidgin-with-plugins |
283 | google-play-music-desktop-player qt5ct playerctl evince | 283 | google-play-music-desktop-player qt5ct playerctl evince |
284 | thunderbird wrappedZulip zoom-us steam steam-run wireshark | 284 | thunderbird wrappedZulip zoom-us steam steam-run wireshark |
diff --git a/accounts/gkleen@sif/xmonad/xmonad.hs b/accounts/gkleen@sif/xmonad/xmonad.hs index c835cfed..9cae8507 100644 --- a/accounts/gkleen@sif/xmonad/xmonad.hs +++ b/accounts/gkleen@sif/xmonad/xmonad.hs | |||
@@ -853,9 +853,9 @@ myKeys' conf host = Map.fromList $ | |||
853 | -- Deincrement the number of windows in the master area | 853 | -- Deincrement the number of windows in the master area |
854 | , ((modm , xK_period), sendMessage (IncMasterN (-1))) | 854 | , ((modm , xK_period), sendMessage (IncMasterN (-1))) |
855 | 855 | ||
856 | , ((0, xF86XK_AudioRaiseVolume), safeSpawn "pulseaudio-ctl" ["up", "2"]) | 856 | , ((0, xF86XK_AudioRaiseVolume), safeSpawn "pamixer" ["-i", "2"]) |
857 | , ((0, xF86XK_AudioLowerVolume), safeSpawn "pulseaudio-ctl" ["down", "2"]) | 857 | , ((0, xF86XK_AudioLowerVolume), safeSpawn "pamixer" ["-i", "2"]) |
858 | , ((0, xF86XK_AudioMute), safeSpawn "pulseaudio-ctl" ["mute"]) | 858 | , ((0, xF86XK_AudioMute), safeSpawn "pamixer" ["-t"]) |
859 | , ((0, xF86XK_AudioPause), mediaMpv $ MpvSetProperty "pause" False) | 859 | , ((0, xF86XK_AudioPause), mediaMpv $ MpvSetProperty "pause" False) |
860 | , ((0, {-xF86XK_AudioMicMute-} 269025202), safeSpawn "pulseaudio-ctl" ["mute-input"]) | 860 | , ((0, {-xF86XK_AudioMicMute-} 269025202), safeSpawn "pulseaudio-ctl" ["mute-input"]) |
861 | , ((0, xF86XK_AudioPlay), mediaMpvTogglePause) | 861 | , ((0, xF86XK_AudioPlay), mediaMpvTogglePause) |