diff --git a/apps/hyprland/hypr/binds.nix b/apps/hyprland/hypr/binds.nix index 5e54681..c9e9d4b 100644 --- a/apps/hyprland/hypr/binds.nix +++ b/apps/hyprland/hypr/binds.nix @@ -67,6 +67,7 @@ # Screenshots "SUPER, S, Screenshot Region (with edit), exec, screenshot region" "SUPER SHIFT, S, Screenshot Active Window, exec, screenshot window" + "SUPER ALT, S, Quick Screenshot (no edit), exec, screenshot region-save" "SUPER ALT SHIFT, S, Screenshot Current Monitor, exec, screenshot screen" # Special workspace diff --git a/apps/matugen/config.toml b/apps/matugen/config.toml index 8e31dbb..4e4b7f2 100644 --- a/apps/matugen/config.toml +++ b/apps/matugen/config.toml @@ -50,4 +50,4 @@ output_path = "~/.config/hypr/hyprlock-colors.conf" input_path = "~/.config/matugen/templates/mako" output_path = "~/.config/mako/config" post_hook = "makoctl reload" - +: diff --git a/apps/screenshot/default.nix b/apps/screenshot/default.nix index 6a70ada..d3b95f1 100644 --- a/apps/screenshot/default.nix +++ b/apps/screenshot/default.nix @@ -42,4 +42,18 @@ in { # Create Screenshots directory home.file."Pictures/Screenshots/.keep".text = ""; + + # Swappy configuration + home.file.".config/swappy/config".text = '' + [Default] + save_dir=$HOME/Pictures/Screenshots + save_filename_format=screenshot_%Y%m%d_%H%M%S.png + show_panel=true + line_size=5 + text_size=20 + text_font=sans-serif + paint_mode=brush + early_exit=false + fill_shape=false + ''; }