Skip to content

Commit

Permalink
a bit more default config nice addons
Browse files Browse the repository at this point in the history
  • Loading branch information
vaxerski committed Oct 17, 2022
1 parent 286cb90 commit ecf0cda
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
11 changes: 9 additions & 2 deletions example/hyprland.conf
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ decoration {
blur_size = 3
blur_passes = 1
blur_new_optimizations = on

drop_shadow = yes
shadow_range = 4
shadow_render_power = 3
col.shadow = rgba(1a1a1aee)
}

animations {
Expand All @@ -74,7 +79,8 @@ animations {

dwindle {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
pseudotile = false
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = yes # you probably want this
}

master {
Expand Down Expand Up @@ -110,7 +116,8 @@ bind = $mainMod, M, exit,
bind = $mainMod, E, exec, dolphin
bind = $mainMod, V, togglefloating,
bind = $mainMod, R, exec, wofi --show drun
bind = $mainMod, P, pseudo,
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, J, togglesplit, # dwindle

# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
Expand Down
11 changes: 9 additions & 2 deletions src/config/defaultConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ decoration {
blur_size = 3
blur_passes = 1
blur_new_optimizations = on
drop_shadow = yes
shadow_range = 4
shadow_render_power = 3
col.shadow = rgba(1a1a1aee)
}
animations {
Expand All @@ -83,7 +88,8 @@ animations {
dwindle {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
pseudotile = false
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = yes # you probably want this
}
master {
Expand Down Expand Up @@ -119,7 +125,8 @@ bind = $mainMod, M, exit,
bind = $mainMod, E, exec, dolphin
bind = $mainMod, V, togglefloating,
bind = $mainMod, R, exec, wofi --show drun
bind = $mainMod, P, pseudo,
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, J, togglesplit, # dwindle
# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
Expand Down

0 comments on commit ecf0cda

Please sign in to comment.