Files
lnx-arch/dots/hyprland/hyprland.conf
tuxwarrior 81901f2aaf u
2024-04-30 21:17:59 -05:00

353 lines
10 KiB
Plaintext

# --------------------------------------------------
# klevstul
# -----
# source documentation:
# https://wiki.hyprland.org/
# --------------------------------------------------
# - - - - - - - - - - - - - - - - - - - - - - - - -
# monitors
# - - - - -
# https://wiki.hyprland.org/Configuring/Monitors/
# - - - - - - - - - - - - - - - - - - - - - - - - -
monitor=,preferred,auto,auto
# - - - - - - - - - - - - - - - - - - - - - - - - -
# keywords
# - - - - -
# https://wiki.hyprland.org/Configuring/Keywords/
# - - - - - - - - - - - - - - - - - - - - - - - - -
# execute at launch
#exec-once = hyprpaper & waybar & hypridle & hyprdim --strength 0.6 --duration 500 --no-dim-when-only --dialog-dim 0.1 & pcloud
exec-once = hyprpaper
# Source a file (multi-file configs)
# source = ~/.config/hypr/myColors.conf
# Some default env vars.
env = XCURSOR_SIZE,24
# - - - - - - - - - - - - - - - - - - - - - - - - -
# input
# - - - - -
# https://wiki.hyprland.org/Configuring/Variables/#input
# - - - - - - - - - - - - - - - - - - - - - - - - -
input {
# switch keyboard layout
# https://wiki.hyprland.org/Configuring/Uncommon-tips--tricks/
kb_layout = us,no
kb_options = grp:caps_toggle,grp_led:scroll # this has no effect, so a bind is done below
kb_variant =
kb_model =
kb_options =
kb_rules =
follow_mouse = 1
touchpad {
natural_scroll = no
}
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# input
# - - - - -
# https://wiki.hyprland.org/Configuring/Variables/#general
# - - - - - - - - - - - - - - - - - - - - - - - - -
general {
gaps_in = 4
gaps_out = 4
border_size = 2
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
col.inactive_border = rgba(595959aa)
layout = dwindle # {dwindle, master}
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
allow_tearing = false
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# decoration
# - - - - -
# https://wiki.hyprland.org/Configuring/Variables/#decoration
# - - - - - - - - - - - - - - - - - - - - - - - - -
decoration {
rounding = 10
blur {
enabled = true
size = 3
passes = 1
}
drop_shadow = yes
shadow_range = 4
shadow_render_power = 3
col.shadow = rgba(1a1a1aee)
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# animations
# - - - - -
# https://wiki.hyprland.org/Configuring/Animations/
# - - - - - - - - - - - - - - - - - - - - - - - - -
animations {
enabled = yes
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
animation = windows, 1, 7, myBezier
animation = windowsOut, 1, 7, default, popin 80%
animation = border, 1, 10, default
animation = borderangle, 1, 8, default
animation = fade, 1, 7, default
animation = workspaces, 1, 6, default
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# dwindle layout
# - - - - -
# https://wiki.hyprland.org/Configuring/Dwindle-Layout/
# - - - - - - - - - - - - - - - - - - - - - - - - -
dwindle {
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 layout
# - - - - -
# https://wiki.hyprland.org/Configuring/Master-Layout/
# - - - - - - - - - - - - - - - - - - - - - - - - -
master {
new_is_master = true
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# gestures
# - - - - -
# https://wiki.hyprland.org/Configuring/Variables/#gestures
# - - - - - - - - - - - - - - - - - - - - - - - - -
gestures {
workspace_swipe = off
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# binds
# - - - - -
# https://wiki.hyprland.org/Configuring/Variables/#binds
# - - - - - - - - - - - - - - - - - - - - - - - - -
binds {
allow_workspace_cycles = yes
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# misc
# - - - - -
# https://wiki.hyprland.org/Configuring/Variables/#misc
# - - - - - - - - - - - - - - - - - - - - - - - - -
misc {
disable_hyprland_logo = false
force_default_wallpaper = 0
# only key presses will turn the screen on
mouse_move_enables_dpms = false
key_press_enables_dpms = true
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# per-device input configssc
# - - - - -
# https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs
# - - - - - - - - - - - - - - - - - - - - - - - - -
device {
name=epic-mouse-v1
sensitivity = -0.5
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# window rules
# - - - - -
# https://wiki.hyprland.org/Configuring/Window-Rules/
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Example windowrule v1
# windowrule = float, ^(kitty)$
# Example windowrule v2
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
# - - - - - - - - - - - - - - - - - - - - - - - - -
# plugins
# - - - - -
# https://wiki.hyprland.org/Plugins/Using-Plugins/
# - - - - - - - - - - - - - - - - - - - - - - - - -
plugin {
}
# - - - - - - - - - - - - - - - - - - - - - - - - -
# binds
# - - - - -
# https://wiki.hyprland.org/Configuring/Binds/
#
# keysyms (use segment after XKB_KEY_):
# https://github.com/xkbcommon/libxkbcommon/blob/master/include/xkbcommon/xkbcommon-keysyms.h
#
# three keys bind example:
# bind = $mainMod_SHIFT, space, togglefloating
#
# bind[flags]=..
# bindrl=MOD,KEY,exec,amongus
# flags:
# l -> locked, aka. works also when an an input inhibitor (e.g. a lockscreen) is active
# r -> release, will trigger on release of a key
# e -> repeat, will repeat when held.
# m -> mouse
# - - - - - - - - - - - - - - - - - - - - - - - - -
$mainMod = SUPER
# execute programs
bind = $mainMod, RETURN, exec, kitty
bind = $mainMod, Q, killactive,
bind = $mainMod, F3, exec, pcmanfm
bind = $mainMod, D, exec, bemenu-run
bind = $mainMod, O, exec, sleep 1; hyprctl dispatch dpms off; hyprlock # monitor off & lock (had to sleep to avoid immediate wakeup)
bind = $mainMod, L, exec, hyprlock # lock
bind = $mainMod, T, togglegroup
bind = $mainMod SHIFT, T, changegroupactive, t
bind = $mainMod ALT, T, changegroupactive, b
# misc
bind = $mainMod, Escape, exit, # exit
bind = $mainMod, space, togglefloating # floting (toggle)
bind = $mainMod, TAB, workspace, previous # cycle workspace
# window cycle
# https://github.com/hyprwm/Hyprland/issues/2061
#bind = ALT, TAB, cyclenext # cycle windows in same workspace
#bind = ALT, TAB, bringactivetotop # bring focused window to top
bind = ALT, Tab, focuscurrentorlast # switch focus from current to previous window
# screenshot
bind = $mainMod, PRINT, exec, hyprshot -m window # window
bind = , PRINT, exec, hyprshot -m output # monitor
bind = $shiftMod, PRINT, exec, hyprshot -m region # region
# fullscreen
bind = $mainMod, F, fullscreen, 1 # fullscreen, with border
bind = $mainMod, G, fullscreen, 0 # fullscreen, fill entire screen
# special workspace (scratchpad)
bind = $mainMod, S, togglespecialworkspace, magic
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
# change keyboard layout
# https://wiki.hyprland.org/Configuring/Using-hyprctl/#switchxkblayout
# note: the key binding "Caps_Lock" did not work on t470p
bind = $mainMod, K, exec, hyprctl switchxkblayout at-translated-set-2-keyboard next
# view mode
bind = $mainMod, W, exec, hyprctl keyword general:layout "master"
bind = $mainMod, E, exec, hyprctl keyword general:layout "dwindle"
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, J, togglesplit, # dwindle
# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r
bind = $mainMod, up, movefocus, u
bind = $mainMod, down, movefocus, d
# media player control
bind = $mainMod, XF86AudioPlay, exec, playerctl play
bind = $mainMod, XF86AudioStop, exec, playerctl pause
bind = $mainMod, XF86AudioNext, exec, playerctl next
bind = $mainMod, XF86AudioPrev, exec, playerctl previous
# volume control
bindel = , XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
bindel = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
bind = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
# focus window
bind = $mainMod, semicolon, focuswindow, kitty # cli
#bind = $mainMod, G, focuswindow, gimp
#bind = $mainMod, K, focuswindow, gitkraken
#bind = $mainMod, C, focuswindow, vscodium
#bind = $mainMod, S, focuswindow, subl
#bind = $mainMod, R, focuswindow, reaper
# move window
bind = $mainMod SHIFT, left, movewindoworgroup, l
bind = $mainMod SHIFT, right, movewindoworgroup, r
bind = $mainMod SHIFT, up, movewindoworgroup, u
bind = $mainMod SHIFT, down, movewindoworgroup, d
bind = $mainMod ALT, left, moveactive, -40 0
bind = $mainMod ALT, right, moveactive, 40 0
bind = $mainMod ALT, up, moveactive, 0 -40
bind = $mainMod ALT, down, moveactive, 0 40
# resize window
bind = $mainMod CTRL, left, resizeactive, -40 0
bind = $mainMod CTRL, right, resizeactive, 40 0
bind = $mainMod CTRL, up, resizeactive, 0 -40
bind = $mainMod CTRL, down, resizeactive, 0 40
# Switch workspaces with mainMod + [0-9]
bind = $mainMod, 1, workspace, 1
bind = $mainMod, 2, workspace, 2
bind = $mainMod, 3, workspace, 3
bind = $mainMod, 4, workspace, 4
bind = $mainMod, 5, workspace, 5
bind = $mainMod, 6, workspace, 6
bind = $mainMod, 7, workspace, 7
bind = $mainMod, 8, workspace, 8
bind = $mainMod, 9, workspace, 9
bind = $mainMod, 0, workspace, 10
# Move active window to a workspace with mainMod + SHIFT + [0-9]
bind = $mainMod SHIFT, 1, movetoworkspace, 1
bind = $mainMod SHIFT, 2, movetoworkspace, 2
bind = $mainMod SHIFT, 3, movetoworkspace, 3
bind = $mainMod SHIFT, 4, movetoworkspace, 4
bind = $mainMod SHIFT, 5, movetoworkspace, 5
bind = $mainMod SHIFT, 6, movetoworkspace, 6
bind = $mainMod SHIFT, 7, movetoworkspace, 7
bind = $mainMod SHIFT, 8, movetoworkspace, 8
bind = $mainMod SHIFT, 9, movetoworkspace, 9
bind = $mainMod SHIFT, 0, movetoworkspace, 10
# Scroll through existing workspaces with mainMod + scroll
bind = $mainMod, mouse_down, workspace, e+1
bind = $mainMod, mouse_up, workspace, e-1
# Move/resize windows with mainMod + LMB/RMB and dragging
bindm = $mainMod, mouse:272, movewindow
#bindm = $mainMod, mouse:273, resizewindow