Added a screenshot way

This commit is contained in:
Alexandre1a 2026-01-27 17:31:54 +01:00
parent 9d5a736a79
commit b5b5b82dc1
No known key found for this signature in database
GPG Key ID: CE01C28FBC5EEF10
2 changed files with 48 additions and 41 deletions

View File

@ -21,17 +21,6 @@
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# Hyprland related (rice, etc...)
wofi
alacritty
firefox
cava
# File manager
kdePackages.dolphin
kdePackages.gwenview
# Hypr* ecosystem
hyprlauncher
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of

View File

@ -24,6 +24,7 @@ in
"$launcher2" = "hyprlauncher";
"fileManager" = "dolphin";
"$browser" = "firefox";
"$screenShot" = "hyprshot -m region";
exec-once = [
"hyprlauncher"
@ -67,6 +68,8 @@ in
"$mod SHIFT, F, exec, $browser"
"$mod, E, exec, $fileManager"
"$mod, F, fullscreen"
"$mod, PRINT, exec, $screenShot"
# Focus binds
"$mod, left, movefocus, l"
@ -93,4 +96,19 @@ in
};
};
home.packages = with pkgs; [
# Hyprland related (rice, etc...)
wofi
alacritty
firefox
cava
# File manager
kdePackages.dolphin
kdePackages.gwenview
# Hypr* ecosystem
hyprlauncher
hyprshot
];
}