From d235d500f74c2ec121df7918f7e0a7bec2dfc6d1 Mon Sep 17 00:00:00 2001 From: VectorKappa Date: Sat, 18 Nov 2023 18:49:59 +0100 Subject: [PATCH] Added hyprland configs --- hyprland/.config/hypr/hyprland.conf | 148 ++++++++++++++++++++++++++++ hyprland/.config/hypr/hyprload.toml | 6 ++ 2 files changed, 154 insertions(+) create mode 100644 hyprland/.config/hypr/hyprland.conf create mode 100644 hyprland/.config/hypr/hyprload.toml diff --git a/hyprland/.config/hypr/hyprland.conf b/hyprland/.config/hypr/hyprland.conf new file mode 100644 index 0000000..9e8cf88 --- /dev/null +++ b/hyprland/.config/hypr/hyprland.conf @@ -0,0 +1,148 @@ +# 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=DP-1,1920x1080@60,0x0,1 +monitor=DP-3,1920x1080@60,1920x0,1 +#workspace=DP-1,1 +workspace=1, m:DP-1 +workspace=2, m:DP-1 +workspace=3, m:DP-1 +workspace=4, m:DP-1 +workspace=5, m:DP-1 +workspace=6, m:DP-3 +workspace=7, m:DP-3 +workspace=8, m:DP-3 +workspace=9, m:DP-3 +workspace=10, m:DP-3 + + +input { + kb_layout=pl + kb_variant= + kb_model= + kb_options= + kb_rules= + numlock_by_default=true + follow_mouse=1 +} + +general { + max_fps=60 # deprecated, unused + sensitivity=1 + #main_mod=SUPER + no_cursor_warps=true + gaps_in=5 + gaps_out=20 + border_size=2 + col.active_border=0x66ee1111 + col.inactive_border=0x66333333 + resize_on_border=true + #damage_tracking=full # leave it on full unless you hate your GPU and want to make it suffer +} + +decoration { + rounding=10 + blur { + enabled=1 + size=3 # minimum 1 + passes=3 # minimum 1, more passes = more resource intensive. + } + # Your blur "amount" is blur_size * blur_passes, but high blur_size (over around 5-ish) will produce artifacts. + # if you want heavy blur, you need to up the blur_passes. + # the more passes, the more you can up the blur_size without noticing artifacts. +} + +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,Z,exec,alacritty +bind=SUPER,X,killactive, +bind=SUPER_SHIFT,Q,exit, +bind=SUPER,E,exec,nemo +bind=SUPER,F,togglefloating, +bind=SUPER,R,exec,wofi --show drun -o DP-3 +bind=SUPER,P,pseudo, +bind=SUPER,SPACE,exec,rofi -modi drun,run,window,calc -show drun + +bind=SUPERSHIFT,R,hyprload,reload +bind=SUPERSHIFT,U,hyprload,update +bind=SUPERSHIFT,I,hyprload,install + +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=SUPER_SHIFT,1,movetoworkspace,1 +bind=SUPER_SHIFT,2,movetoworkspace,2 +bind=SUPER_SHIFT,3,movetoworkspace,3 +bind=SUPER_SHIFT,4,movetoworkspace,4 +bind=SUPER_SHIFT,5,movetoworkspace,5 +bind=SUPER_SHIFT,6,movetoworkspace,6 +bind=SUPER_SHIFT,7,movetoworkspace,7 +bind=SUPER_SHIFT,8,movetoworkspace,8 +bind=SUPER_SHIFT,9,movetoworkspace,9 +bind=SUPER_SHIFT,0,movetoworkspace,10 + +exec-once=/usr/lib/mate-polkit/polkit-mate-authentication-agent-1 +exec-once=/bin/eww open bar + +windowrulev2 = opacity 0.0 override 0.0 override,class:^(xwaylandvideobridge)$ +windowrulev2 = nofocus,class:^(xwaylandvideobridge)$ +windowrulev2 = noinitialfocus,class:^(xwaylandvideobridge)$ + +plugin:hyprfocus { + enabled = yes + + keyboard_focus_animation = shrink + mouse_focus_animation = shrink + + bezier = bezIn, 0.5,0.0,1.0,0.5 + bezier = bezOut, 0.0,0.5,0.5,1.0 + + flash { + flash_opacity = 0.7 + + in_bezier = bezIn + in_speed = 0.5 + + out_bezier = bezOut + out_speed = 3 + } + + shrink { + shrink_percentage = 0.9 + + in_bezier = bezIn + in_speed = 0.5 + + out_bezier = bezOut + out_speed = 3 + } +} + +exec-once=$HOME/.local/share/hyprload/hyprload.sh diff --git a/hyprland/.config/hypr/hyprload.toml b/hyprland/.config/hypr/hyprload.toml new file mode 100644 index 0000000..a50473d --- /dev/null +++ b/hyprland/.config/hypr/hyprload.toml @@ -0,0 +1,6 @@ +plugins = [ + # Installs the plugin from https://github.com/Duckonaut/split-monitor-workspaces + "Duckonaut/split-monitor-workspaces", + "VortexCoyote/hyprfocus", + +]