Add bluetooth shortcut

This commit is contained in:
Ethan Simmons
2025-06-08 10:02:44 -05:00
parent 11de4c2054
commit 6fd520839b
2 changed files with 7 additions and 5 deletions

View File

@@ -31,11 +31,12 @@
options = [ "subvol=nix" ]; options = [ "subvol=nix" ];
}; };
fileSystems."/mnt/drive0" = # Remove comments for optical drive in wine
{ device = "/dev/sr0"; # fileSystems."/mnt/drive0" =
fsType = "auto"; # { device = "/dev/sr0";
options = [ "ro" "user" "noauto" "unhide" ]; # fsType = "auto";
}; # options = [ "ro" "user" "noauto" "unhide" ];
# };
swapDevices = [ ]; swapDevices = [ ];

View File

@@ -114,6 +114,7 @@ in
"${modifier}+Shift+o" = "exec '${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${localPackages.x86_64-linux.gazou}/bin/gazou | tail -n +2 | ${pkgs.wl-clipboard}/bin/wl-copy'"; "${modifier}+Shift+o" = "exec '${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${localPackages.x86_64-linux.gazou}/bin/gazou | tail -n +2 | ${pkgs.wl-clipboard}/bin/wl-copy'";
"${modifier}+Shift+q" = "kill"; "${modifier}+Shift+q" = "kill";
"${modifier}+p" = "focus mode_toggle"; "${modifier}+p" = "focus mode_toggle";
"${modifier}+Control+b" = "exec bluetoothctl connect 18:3F:70:62:A5:3C";
"XF86AudioPause" = "exec playerctl play-pause"; "XF86AudioPause" = "exec playerctl play-pause";
"XF86AudioNext" = "exec playerctl next"; "XF86AudioNext" = "exec playerctl next";
"XF86AudioPrev" = "exec playerctl previous"; "XF86AudioPrev" = "exec playerctl previous";