feat(hyprland): add some window rules
This commit is contained in:
parent
24e98d63f3
commit
2f90b45fa2
1 changed files with 10 additions and 1 deletions
|
@ -6,6 +6,8 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
lib.mkIf osConfig.programs.hyprland.enable {
|
lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
|
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemd.variables = [ "--all" ];
|
systemd.variables = [ "--all" ];
|
||||||
|
@ -68,7 +70,11 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
vibrancy = 0.1696;
|
vibrancy = 0.1696;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
windowrulev2 = [
|
||||||
|
"float,initialClass:(com.nextcloud.desktopclient.nextcloud)"
|
||||||
|
"float,initialClass:(org.keepassxc.KeePassXC)"
|
||||||
|
"workspace 5,initialClass:(lollypop)"
|
||||||
|
];
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
||||||
animations = {
|
animations = {
|
||||||
|
|
||||||
|
@ -105,6 +111,8 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :(
|
disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :(
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bindm = [ "$mod,mouse:272,movewindow" ];
|
||||||
|
|
||||||
bind =
|
bind =
|
||||||
[
|
[
|
||||||
"$mod, D, exec, rofi -config ${config.home.homeDirectory}/.config/rofi/config.rasi -show combi -automatic-save-to-history"
|
"$mod, D, exec, rofi -config ${config.home.homeDirectory}/.config/rofi/config.rasi -show combi -automatic-save-to-history"
|
||||||
|
@ -126,6 +134,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
"$mod, X, fullscreen, 1"
|
"$mod, X, fullscreen, 1"
|
||||||
"$mod, F, fullscreen, 0"
|
"$mod, F, fullscreen, 0"
|
||||||
"$mod, N, exec, ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
|
"$mod, N, exec, ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
|
||||||
|
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
# workspaces
|
# workspaces
|
||||||
|
|
Loading…
Add table
Reference in a new issue