diff options
Diffstat (limited to 'modules/home/desktop/components')
| -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%"; |