diff --git a/home/scripts.nix b/home/scripts.nix index 366c1a9..54a2546 100644 --- a/home/scripts.nix +++ b/home/scripts.nix @@ -28,22 +28,6 @@ in executable = true; }; - "scripts/volume_up.sh" = - let - wpctl = "${pkgs.wireplumber}/bin/wpctl"; - in - { - executable = true; - text = '' - #!/bin/sh - - set -eu - - ${wpctl} set-mute @DEFAULT_AUDIO_SINK@ 0 - [ $(${wpctl} get-volume @DEFAULT_AUDIO_SINK@ | awk -F': ' '{print $2}' | sed 's/\.//') -lt 100 ] && ${wpctl} set-volume @DEFAULT_AUDIO_SINK@ 5%+ - ''; - }; - "scripts/tmux_sessions.sh" = let kitty = "${pkgs.kitty}/bin/kitty";