diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-11-20 20:46:43 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-11-20 20:46:43 -0800 |
| commit | 54d1201a543065116df9ed18a72dab20f8653c5c (patch) | |
| tree | 3c1b0289389996cc8a9a80e65ad072eaf73fe84a /modules | |
| parent | bd221b87f8cb5dacc2754a193c570fa7310447d4 (diff) | |
i3: fix flameshot binds (finally)
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/desktop/components/i3/default.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/home/desktop/components/i3/default.nix b/modules/home/desktop/components/i3/default.nix index 5e0175f..d9ae518 100644 --- a/modules/home/desktop/components/i3/default.nix +++ b/modules/home/desktop/components/i3/default.nix @@ -131,12 +131,11 @@ in { "${mod}+Num_Lock" = "exec --no-startup-id polybar-msg cmd toggle"; # Screenshots - #TODO: screen and full should be swapped, but currently screen is fucky :'( - "Shift+Print" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot screen -c"; - "Print" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot full -c"; + "Print" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot screen -c"; + "Shift+Print" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot full -c"; "${mod}+Shift+s" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot gui -c"; "Mod1+Shift+s" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot gui -c"; - "${mod}+Ctrl+Shift+s" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot launcher -c"; + "${mod}+Ctrl+Shift+s" = "exec --no-startup-id ${pkgs.flameshot}/bin/flameshot gui"; # Media keys "XF86AudioRaiseVolume" = "exec --no-startup-id ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ +2%"; |