feat: hyprland small refactor + starting dunst
This commit is contained in:
parent
1fb0fd3099
commit
1fcbebff6f
4 changed files with 32 additions and 24 deletions
|
|
@ -107,7 +107,6 @@
|
||||||
vim
|
vim
|
||||||
wget
|
wget
|
||||||
usbutils
|
usbutils
|
||||||
dunst
|
|
||||||
alacritty
|
alacritty
|
||||||
ripgrep
|
ripgrep
|
||||||
git
|
git
|
||||||
|
|
|
||||||
10
modules/home-manager/dunst.nix
Normal file
10
modules/home-manager/dunst.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{...}: {
|
||||||
|
services.dunst = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
global = {
|
||||||
|
frame_color = "#ffebdbb2";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -19,34 +19,35 @@
|
||||||
"$mod,E,exec,nautilus"
|
"$mod,E,exec,nautilus"
|
||||||
"$mod,D,exec,killall -q wofi; wofi --show drun -I"
|
"$mod,D,exec,killall -q wofi; wofi --show drun -I"
|
||||||
"$mod, P,exec,wofi-pass -c"
|
"$mod, P,exec,wofi-pass -c"
|
||||||
"SUPERSHIFT,R,exec,hyprctl reload"
|
"$mod SHIFT,R,exec,hyprctl reload"
|
||||||
"$mod,space,togglefloating,"
|
"$mod,space,togglefloating,"
|
||||||
"ALTSHIFT, L, exec, swaylock"
|
"ALTSHIFT, L, exec, swaylock"
|
||||||
"$mod,F,fullscreen"
|
"$mod,F,fullscreen"
|
||||||
"ALTSHIFT,K,exec,amixer set 'Master' 5%+"
|
"ALTSHIFT,K,exec,amixer set 'Master' 5%+"
|
||||||
"ALTSHIFT,J,exec,amixer set 'Master' 5%-"
|
"ALTSHIFT,J,exec,amixer set 'Master' 5%-"
|
||||||
"SUPERSHIFT,N,exec, swaync-client -t -sw"
|
|
||||||
"$mod, M, exec,hyprctl keyword monitor 'eDP-1, enable'"
|
"$mod, M, exec,hyprctl keyword monitor 'eDP-1, enable'"
|
||||||
"SUPERSHIFT, M, exec,hyprctl keyword monitor 'eDP-1, disable'"
|
"$mod SHIFT, M, exec,hyprctl keyword monitor 'eDP-1, disable'"
|
||||||
"SUPERSHIFT,P,exec,hyprshot -m region -o ~/Screenshot/"
|
"$mod SHIFT,P,exec,hyprshot -m region -o ~/Screenshot/"
|
||||||
"SUPERALTSHIFT, P, exec, hyprshot -m window -o ~/Screenshot/"
|
"$mod ALTSHIFT, P, exec, hyprshot -m window -o ~/Screenshot/"
|
||||||
|
|
||||||
"$mod,left,movefocus,l"
|
"$mod,left,movefocus,l"
|
||||||
"$mod, H,movefocus,l"
|
"$mod, H,movefocus,l"
|
||||||
"SUPERALT, left, movewindow, l"
|
"$mod ALT, left, movewindow, l"
|
||||||
"SUPERALT, H, movewindow, l"
|
"$mod ALT, H, movewindow, l"
|
||||||
"$mod,right,movefocus,r"
|
"$mod,right,movefocus,r"
|
||||||
"$mod, L,movefocus,r"
|
"$mod, L,movefocus,r"
|
||||||
"SUPERALT, right, movewindow, r"
|
"$mod ALT, right, movewindow, r"
|
||||||
"SUPERALT, L, movewindow, r"
|
"$mod ALT, L, movewindow, r"
|
||||||
"$mod,up,movefocus,u"
|
"$mod,up,movefocus,u"
|
||||||
"$mod, K,movefocus,u"
|
"$mod, K,movefocus,u"
|
||||||
"SUPERALT, up, movewindow, u"
|
"$mod ALT, up, movewindow, u"
|
||||||
"SUPERALT, K, movewindow, u"
|
"$mod ALT, K, movewindow, u"
|
||||||
"$mod,down,movefocus,d"
|
"$mod,down,movefocus,d"
|
||||||
"$mod, J,movefocus,d"
|
"$mod, J,movefocus,d"
|
||||||
"SUPERALT, down, movewindow, d"
|
"$mod ALT, down, movewindow, d"
|
||||||
"SUPERALT, J, movewindow, d"
|
"$mod ALT, J, movewindow, d"
|
||||||
|
"$mod, 0, workspace, 10"
|
||||||
|
"$mod SHIFT, 0, movetoworkspace, 10"
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
# workspaces
|
# workspaces
|
||||||
|
|
@ -69,14 +70,14 @@
|
||||||
binde = [
|
binde = [
|
||||||
",XF86MonBrightnessDown,exec,brightnessctl --device=intel_backlight s 5%-"
|
",XF86MonBrightnessDown,exec,brightnessctl --device=intel_backlight s 5%-"
|
||||||
",XF86MonBrightnessUp,exec,brightnessctl --device=intel_backlight s 5%+"
|
",XF86MonBrightnessUp,exec,brightnessctl --device=intel_backlight s 5%+"
|
||||||
"SUPERSHIFT,right,resizeactive, 10 0"
|
"$mod SHIFT,right,resizeactive, 10 0"
|
||||||
"SUPERSHIFT,L,resizeactive, 10 0"
|
"$mod SHIFT,L,resizeactive, 10 0"
|
||||||
"SUPERSHIFT,down,resizeactive, 0 10"
|
"$mod SHIFT,down,resizeactive, 0 10"
|
||||||
"SUPERSHIFT,J,resizeactive, 0 10"
|
"$mod SHIFT,J,resizeactive, 0 10"
|
||||||
"SUPERSHIFT,left,resizeactive, -10 0"
|
"$mod SHIFT,left,resizeactive, -10 0"
|
||||||
"SUPERSHIFT,H,resizeactive, -10 0"
|
"$mod SHIFT,H,resizeactive, -10 0"
|
||||||
"SUPERSHIFT,up,resizeactive, 0 -10"
|
"$mod SHIFT,up,resizeactive, 0 -10"
|
||||||
"SUPERSHIFT,K,resizeactive, 0 -10"
|
"$mod SHIFT,K,resizeactive, 0 -10"
|
||||||
];
|
];
|
||||||
|
|
||||||
# MONITOR
|
# MONITOR
|
||||||
|
|
@ -142,7 +143,6 @@
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"waybar"
|
"waybar"
|
||||||
"nm-applet"
|
"nm-applet"
|
||||||
"dunst"
|
|
||||||
"whatpulse"
|
"whatpulse"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@
|
||||||
"bluetooth"
|
"bluetooth"
|
||||||
"custom/arrow8"
|
"custom/arrow8"
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
"custom/kdeconnect"
|
|
||||||
"tray"
|
"tray"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue