mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 08:05:59 +01:00
100 lines
No EOL
2.3 KiB
Text
100 lines
No EOL
2.3 KiB
Text
# This is an example Hyprland config file.
|
|
# Syntax is the same as in Hypr, but settings might differ.
|
|
#
|
|
# Refer to the wiki for more information.
|
|
|
|
monitor=,1280x720@60,0x0,0.5,1
|
|
workspace=DP-1,1
|
|
|
|
input {
|
|
kb_layout=
|
|
kb_variant=
|
|
kb_model=
|
|
kb_options=
|
|
kb_rules=
|
|
|
|
follow_mouse=1
|
|
}
|
|
|
|
general {
|
|
max_fps=60
|
|
sensitivity=0.25
|
|
main_mod=SUPER
|
|
|
|
gaps_in=5
|
|
gaps_out=20
|
|
border_size=2
|
|
col.active_border=0x66ee1111
|
|
col.inactive_border=0x66333333
|
|
|
|
damage_tracking=monitor # experimental, monitor is 99% fine, but full might have bugs!
|
|
}
|
|
|
|
decoration {
|
|
rounding=10
|
|
blur=1
|
|
blur_size=8 # minimum 2
|
|
blur_passes=1 # minimum 1, more passes = more resource intensive.
|
|
# Your blur "amount" is blur_size * blur_passes, but high blur_size (over around 30-ish) will produce artifacts.
|
|
# if you want heavy blur, you need to up the blur_passes.
|
|
}
|
|
|
|
animations {
|
|
enabled=1
|
|
speed=7
|
|
windows_speed=6 # specific speeds for components can be made with name_speed=float. 0 means use global (speed=float). If not set, will use the global value.
|
|
windows=1
|
|
borders=1
|
|
borders_speed=20
|
|
fadein=1 # fade in AND out
|
|
fadein_speed=20
|
|
}
|
|
|
|
dwindle {
|
|
pseudotile=0 # enable pseudotiling on dwindle
|
|
}
|
|
|
|
# example window rules
|
|
# for windows named/classed as abc and xyz
|
|
windowrule=move 69 420,abc
|
|
windowrule=size 420 69,abc
|
|
windowrule=tile,xyz
|
|
windowrule=float,abc
|
|
windowrule=pseudo,abc
|
|
windowrule=monitor 0,xyz
|
|
|
|
# example binds
|
|
bind=SUPER,Q,exec,kitty
|
|
bind=SUPER,C,killactive,
|
|
bind=SUPER,M,exec,pkill Hyprland
|
|
bind=SUPER,E,exec,dolphin
|
|
bind=SUPER,V,togglefloating,
|
|
bind=SUPER,R,exec,wofi --show drun -o DP-3
|
|
bind=SUPER,P,pseudo,
|
|
|
|
bind=SUPER,left,movefocus,l
|
|
bind=SUPER,right,movefocus,r
|
|
bind=SUPER,up,movefocus,u
|
|
bind=SUPER,down,movefocus,d
|
|
|
|
bind=SUPER,1,workspace,1
|
|
bind=SUPER,2,workspace,2
|
|
bind=SUPER,3,workspace,3
|
|
bind=SUPER,4,workspace,4
|
|
bind=SUPER,5,workspace,5
|
|
bind=SUPER,6,workspace,6
|
|
bind=SUPER,7,workspace,7
|
|
bind=SUPER,8,workspace,8
|
|
bind=SUPER,9,workspace,9
|
|
bind=SUPER,0,workspace,10
|
|
|
|
bind=ALT,1,movetoworkspace,1
|
|
bind=ALT,2,movetoworkspace,2
|
|
bind=ALT,3,movetoworkspace,3
|
|
bind=ALT,4,movetoworkspace,4
|
|
bind=ALT,5,movetoworkspace,5
|
|
bind=ALT,6,movetoworkspace,6
|
|
bind=ALT,7,movetoworkspace,7
|
|
bind=ALT,8,movetoworkspace,8
|
|
bind=ALT,9,movetoworkspace,9
|
|
bind=ALT,0,movetoworkspace,10 |