update con

This commit is contained in:
iofq 2024-09-08 13:39:39 -05:00
parent d7d5226ed2
commit 001edf9832
15 changed files with 214 additions and 93 deletions

View file

@ -60,4 +60,5 @@
}
];
};
home.file.".icons/default".source = "${pkgs.vanilla-dmz}/share/icons/DMZ-Black";
}

View file

@ -5,6 +5,7 @@
extraConfig = ''
monitor=,preferred,auto,1
'';
plugins = [ pkgs.hyprlandPlugins.hyprexpo ];
settings = {
"$mod" = "SUPER";
general = {
@ -14,6 +15,8 @@
};
misc = {
disable_hyprland_logo = true;
new_window_takes_over_fullscreen = 1;
exit_window_retains_fullscreen = 1;
};
decoration = {
blur = {
@ -49,6 +52,7 @@
natural_scroll = true;
tap_button_map = "lrm";
middle_button_emulation = false;
drag_lock = true;
};
touchdevice = {
enabled = false;
@ -61,8 +65,8 @@
binde = [
"$mod ALT, h, resizeactive, -50 0"
"$mod ALT, l, resizeactive, 50 0"
"$mod ALT, k, resizeactive, 0 50"
"$mod ALT, j, resizeactive, 0 -50"
"$mod ALT, j, resizeactive, 0 50"
"$mod ALT, k, resizeactive, 0 -50"
];
bind =
[
@ -70,12 +74,14 @@
"$mod, x, killactive"
"$mod, f, fullscreen"
"$mod SHIFT, Escape, exit"
"$mod SHIFT, f, fakefullscreen"
"$mod SHIFT, f, fullscreenstate, 0 3"
"$mod, a, hyprexpo:expo, toggle"
"$mod, Space, exec, ${pkgs.bemenu}/bin/bemenu-run"
"$mod, t, togglefloating"
"$mod, bracketleft, exec, grimshot --notify save area /tmp/scrot-$(date \"+%Y-%m-%d\"T\"%H:%M:%S\").png"
"$mod, bracketright, exec, grimshot --notify copy area"
"$mod SHIFT, q, exec, loginctl lock-session"
"$mod SHIFT, q, exec, swaylock"
"$mod SHIFT, BACKSPACE, exit"
",XF86MonBrightnessDown, exec, light -U 10"
",XF86MonBrightnessUp, exec, light -A 10"
",XF86AudioRaiseVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ +1%"
@ -95,6 +101,10 @@
"$mod SHIFT, l, movewindow, r"
"$mod SHIFT, k, movewindow, u"
"$mod SHIFT, j, movewindow, d"
"$mod, COMMA, focusmonitor, l"
"$mod, PERIOD, focusmonitor, r"
"$mod SHIFT, COMMA, movewindow, mon:l"
"$mod SHIFT, PERIOD, movewindow, mon:r"
]
++ (
# workspaces
@ -106,7 +116,7 @@
in
builtins.toString (x + 1 - (c * 10));
in [
"$mod, ${ws}, workspace, ${toString (x + 1)}"
"$mod, ${ws}, focusworkspaceoncurrentmonitor, ${toString (x + 1)}"
"$mod SHIFT, ${ws}, movetoworkspacesilent, ${toString (x + 1)}"
]
)