hosts/dunamis/users/user/programs.nix: add pueue
modules/home/desktop/niri/default.nix: add wpctl volume limit modules/home/programs/shell/fish.nix: add aliases Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
|
||||
stylix.targets.fzf.enable = false;
|
||||
services.ssh-agent.enable = true;
|
||||
services.pueue.enable = true;
|
||||
|
||||
syncthing.enable = true;
|
||||
|
||||
|
@ -635,8 +635,8 @@ in {
|
||||
Ctrl+Print { screenshot-screen; }
|
||||
Shift+Print { screenshot-window; }
|
||||
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.05+"; }
|
||||
XF86AudioLowerVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.05-"; }
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "-l" "1.0" "@DEFAULT_AUDIO_SINK@" "5%+"; }
|
||||
XF86AudioLowerVolume allow-when-locked=true { spawn "wpctl" "set-volume" "-l" "1.0" "@DEFAULT_AUDIO_SINK@" "5%-"; }
|
||||
XF86AudioMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle"; }
|
||||
XF86AudioMicMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"; }
|
||||
XF86AudioPlay allow-when-locked=true { spawn "playerctl" "play-pause"; }
|
||||
|
@ -32,11 +32,18 @@ in {
|
||||
fish = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
cd = "z";
|
||||
# cat = "bat";
|
||||
la = "ls -a";
|
||||
l = "ls -la";
|
||||
cd = "z";
|
||||
ed = "$EDITOR";
|
||||
jf = "jj-fzf"; # think of jeff
|
||||
l = "ls -lah";
|
||||
la = "ls -ah";
|
||||
ll = "ls -lh";
|
||||
s = "systemctl";
|
||||
p = "pueue";
|
||||
};
|
||||
shellAbbrs = {
|
||||
pa = "pueue add --";
|
||||
};
|
||||
interactiveShellInit = ''
|
||||
bind \e\[3\;5~ kill-word
|
||||
|
Reference in New Issue
Block a user