Compare commits

..

No commits in common. "aa1c447d41b2f6a93735b2b43a8ab5ce84b83443" and "e7b8db9d22a5805e886a020a3063a9f6144dbab0" have entirely different histories.

3 changed files with 507 additions and 573 deletions

View File

@ -3,30 +3,7 @@ let
fuzzel-command = config.nathan.config.desktop.fuzzel-command; fuzzel-command = config.nathan.config.desktop.fuzzel-command;
targets = config.nathan.config.desktop.targets; targets = config.nathan.config.desktop.targets;
hyprland = config.nathan.programs.hyprland.enable; hyprland = config.nathan.programs.hyprland.enable;
in lib.mkMerge [ in lib.mkIf hyprland {
# Hyprland specific configuration
(lib.mkIf hyprland {
programs.waybar.settings.mainBar = {
modules-center = [
"custom/launcher"
"wlr/workspaces"
"custom/media"
# "hyprland/window"
"idle_inhibitor"
"pulseaudio"
"network"
"cpu"
"memory"
# "temperature"
"tray"
"custom/notification"
"clock"
# "custom/power"
];
};
})
# General configuration
(lib.mkIf hyprland {
######################### #########################
## Waybar ## Waybar
######################### #########################
@ -47,6 +24,25 @@ in lib.mkMerge [
spacing = 0; spacing = 0;
margin-top = 5; margin-top = 5;
margin-bottom = 0; margin-bottom = 0;
# modules-left = [ "wlr/workspaces" "hyprland/submap" ];
# modules-center = [ "hyprland/window" ];
# modules-right = [ "mpd" "clock" "tray" ];
modules-center = [
"custom/launcher"
"wlr/workspaces"
"custom/media"
# "hyprland/window"
"idle_inhibitor"
"pulseaudio"
"network"
"cpu"
"memory"
# "temperature"
"tray"
"custom/notification"
"clock"
# "custom/power"
];
"custom/launcher" = { "custom/launcher" = {
format = ""; format = "";
on-click = fuzzel-command + " --prompt=' ' "; on-click = fuzzel-command + " --prompt=' ' ";
@ -119,8 +115,7 @@ in lib.mkMerge [
format-icons = { format-icons = {
notification = " <span foreground='red'><sup></sup></span> "; notification = " <span foreground='red'><sup></sup></span> ";
none = " "; none = " ";
dnd-notification = dnd-notification = " <span foreground='red'><sup></sup></span> ";
" <span foreground='red'><sup></sup></span> ";
dnd-none = ""; dnd-none = "";
inhibited-notification = inhibited-notification =
" <span foreground='red'><sup></sup></span> "; " <span foreground='red'><sup></sup></span> ";
@ -483,5 +478,4 @@ in lib.mkMerge [
}; };
}; };
}) }
]

View File

@ -86,84 +86,57 @@ in with lib; {
preserve_split = true # you probably want this preserve_split = true # you probably want this
} }
master {
new_is_master = false
}
gestures { gestures {
workspace_swipe = false workspace_swipe = false
} }
bind = SUPER, Q, exec, alacritty $mainMod = SUPER
bind = SUPER, C, killactive,
# bind = SUPER, M, exit,
bind = SUPER, E, exec, dolphin
bind = SUPER, V, togglefloating,
bind = SUPER, P, pseudo, # dwindle
bind = SUPER, B, togglesplit, # dwindle
# Maximize bind = $mainMod, Q, exec, alacritty
bind = SUPER, A, fullscreen, 1 bind = $mainMod, C, killactive,
bind = SUPER SHIFT, A, fullscreen, 0 # bind = $mainMod, M, exit,
bind = $mainMod, E, exec, dolphin
bind = $mainMod, V, togglefloating,
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, B, togglesplit, # dwindle
# Move focus with mainMod + arrow keys # Move focus with mainMod + arrow keys
bind = SUPER, H, movefocus, l bind = $mainMod, H, movefocus, l
bind = SUPER, L, movefocus, r bind = $mainMod, L, movefocus, r
bind = SUPER, K, movefocus, u bind = $mainMod, K, movefocus, u
bind = SUPER, K, layoutmsg, focusnext bind = $mainMod, J, movefocus, d
bind = SUPER, J, movefocus, d
bind = SUPER, J, layoutmsg, focusprev
# Move windows with mainMod + arrow keys
bind = SUPER SHIFT, H, movewindow, l
bind = SUPER SHIFT, L, movewindow, r
bind = SUPER SHIFT, K, movewindow, u
bind = SUPER SHIFT, K, layoutmsg, swapnext
bind = SUPER SHIFT, J, movewindow, d
bind = SUPER SHIFT, J, layoutmsg, swapprev
# Switch layouts with a mode
bind = SUPER, S, submap, layout
submap=layout
# dwindle
bind = , A, exec, hyprctl keyword general:layout dwindle
bind = , A, submap, reset
# master
bind = , S, exec, hyprctl keyword general:layout master
bind = , S, submap, reset
submap = reset
# Switch workspaces with mainMod + [0-9] # Switch workspaces with mainMod + [0-9]
bind = SUPER, 1, workspace, 1 bind = $mainMod, 1, workspace, 1
bind = SUPER, 2, workspace, 2 bind = $mainMod, 2, workspace, 2
bind = SUPER, 3, workspace, 3 bind = $mainMod, 3, workspace, 3
bind = SUPER, 4, workspace, 4 bind = $mainMod, 4, workspace, 4
bind = SUPER, 5, workspace, 5 bind = $mainMod, 5, workspace, 5
bind = SUPER, 6, workspace, 6 bind = $mainMod, 6, workspace, 6
bind = SUPER, 7, workspace, 7 bind = $mainMod, 7, workspace, 7
bind = SUPER, 8, workspace, 8 bind = $mainMod, 8, workspace, 8
bind = SUPER, 9, workspace, 9 bind = $mainMod, 9, workspace, 9
bind = SUPER, 0, workspace, 10 bind = $mainMod, 0, workspace, 10
# Move active window to a workspace with mainMod + SHIFT + [0-9] # Move active window to a workspace with mainMod + SHIFT + [0-9]
bind = SUPER SHIFT, 1, movetoworkspace, 1 bind = $mainMod SHIFT, 1, movetoworkspace, 1
bind = SUPER SHIFT, 2, movetoworkspace, 2 bind = $mainMod SHIFT, 2, movetoworkspace, 2
bind = SUPER SHIFT, 3, movetoworkspace, 3 bind = $mainMod SHIFT, 3, movetoworkspace, 3
bind = SUPER SHIFT, 4, movetoworkspace, 4 bind = $mainMod SHIFT, 4, movetoworkspace, 4
bind = SUPER SHIFT, 5, movetoworkspace, 5 bind = $mainMod SHIFT, 5, movetoworkspace, 5
bind = SUPER SHIFT, 6, movetoworkspace, 6 bind = $mainMod SHIFT, 6, movetoworkspace, 6
bind = SUPER SHIFT, 7, movetoworkspace, 7 bind = $mainMod SHIFT, 7, movetoworkspace, 7
bind = SUPER SHIFT, 8, movetoworkspace, 8 bind = $mainMod SHIFT, 8, movetoworkspace, 8
bind = SUPER SHIFT, 9, movetoworkspace, 9 bind = $mainMod SHIFT, 9, movetoworkspace, 9
bind = SUPER SHIFT, 0, movetoworkspace, 10 bind = $mainMod SHIFT, 0, movetoworkspace, 10
# Scroll through existing workspaces with mainMod + scroll # Scroll through existing workspaces with mainMod + scroll
bind = SUPER, mouse_down, workspace, e+1 bind = $mainMod, mouse_down, workspace, e+1
bind = SUPER, mouse_up, workspace, e-1 bind = $mainMod, mouse_up, workspace, e-1
# Move/resize windows with mainMod + LMB/RMB and dragging # Move/resize windows with mainMod + LMB/RMB and dragging
bindm = SUPER, mouse:272, movewindow bindm = $mainMod, mouse:272, movewindow
bindm = SUPER, mouse:273, resizewindow bindm = $mainMod, mouse:273, resizewindow
# Media key binds # Media key binds
bind = , xf86audioraisevolume, exec, swayosd --output-volume=raise bind = , xf86audioraisevolume, exec, swayosd --output-volume=raise
@ -196,35 +169,6 @@ in with lib; {
windowrulev2 = float,class:^(.blueman-manager-wrapped)$ windowrulev2 = float,class:^(.blueman-manager-wrapped)$
windowrulev2 = center,class:^(.blueman-manager-wrapped)$ windowrulev2 = center,class:^(.blueman-manager-wrapped)$
# firefox Picture-in-Picture
windowrulev2 = float,class:^(firefox)$,title:^(Picture-in-Picture)$
windowrulev2 = pin,class:^(firefox)$,title:^(Picture-in-Picture)$
windowrulev2 = nofullscreenrequest,class:^(firefox)$,title:^(Picture-in-Picture)$
# firefox figma micro indicator
windowrulev2 = nofullscreenrequest,class:^(firefox)$,title:^(Firefox Sharing Indicator)$
windowrulev2 = float,class:^(firefox)$,title:^(Firefox Sharing Indicator)$
# Common modals
windowrule = float,title:^(Open)$
windowrule = center,title:^(Open)$
windowrule = float,title:^(Choose Files)$
windowrule = center,title:^(Choose Files)$
windowrule = float,title:^(Save As)$
windowrule = center,title:^(Save As)$
windowrule = float,title:^(Confirm to replace files)$
windowrule = center,title:^(Confirm to replace files)$
windowrule = float,title:^(File Operation Progress)$
windowrule = center,title:^(File Operation Progress)$
windowrulev2 = float,class:^(google-chrome)$,title:^(Open Files)$
windowrulev2 = center,class:^(google-chrome)$,title:^(Open Files)$
windowrulev2 = float,class:^(google-chrome)$,title:^(Open File)$
windowrulev2 = center,class:^(google-chrome)$,title:^(Open File)$
# Pavucontrol
windowrule = center,pavucontrol
windowrule = float,pavucontrol
## Scratchpads ## Scratchpads
# Alacritty # Alacritty

View File

@ -26,12 +26,8 @@
sensitivity = -0.8 sensitivity = -0.8
# accel_profile = flat # accel_profile = flat
} }
master {
mfact = 0.68
}
exec-once=hyprpaper exec-once=hyprpaper
''; '';
################################################################################
# Background # Background
xdg.configFile."hypr/hyprpaper.conf" = { xdg.configFile."hypr/hyprpaper.conf" = {