diff options
author | zachir <zachir@librem.one> | 2023-04-23 20:26:01 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-04-23 20:26:01 -0500 |
commit | 0ffcb340ad932765f3d148a58f85891012fb6b50 (patch) | |
tree | 8ba09743fc033bebb3226379e07ef3dfdabd3f9e /hypr | |
parent | a69e9ab07f98781863c9e1d0316785efa1b0fe46 (diff) | |
parent | 6f9af3bf5f0e8497d44ff6b7871815d3d57a877f (diff) |
Merge branch 'master' of zachir.xyz:zachir/dotfiles into awesome-bling
Diffstat (limited to 'hypr')
-rwxr-xr-x | hypr/gamemode.sh | 14 | ||||
-rw-r--r-- | hypr/hyprland.conf | 24 |
2 files changed, 26 insertions, 12 deletions
diff --git a/hypr/gamemode.sh b/hypr/gamemode.sh new file mode 100755 index 0000000..a07ac4a --- /dev/null +++ b/hypr/gamemode.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env sh +HYPRGAMEMODE=$(hyprctl getoption animations:enabled | sed -n '2p' | awk '{print $2}') +if [ $HYPRGAMEMODE = 1 ] ; then + hyprctl --batch "\ + keyword animations:enabled 0;\ + keyword decoration:drop_shadow 0;\ + keyword decoration:blur 0;\ + keyword general:gaps_in 0;\ + keyword general:gaps_out 0;\ + keyword general:border_size 1;\ + keyword decoration:rounding 0" + exit +fi +hyprctl reload diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 36bf50a..f674342 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -33,20 +33,17 @@ input { } #}}} -animation=global,0,1,default -#animation=windows,0,1,default -#animation=fade,0,1,default -#animation=workspaces,0,1,default - #{{{ General options general { # See https://wiki.hyprland.org/Configuring/Variables/ for more gaps_in = 5 gaps_out = 20 border_size = 2 - col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg - col.inactive_border = rgba(595959aa) - layout = dwindle + #col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg + #col.inactive_border = rgba(595959aa) + col.active_border = rgba(198844ee) + col.inactive_border = rgba(1b1d1cee) + layout = master no_cursor_warps = false } #}}} @@ -55,6 +52,7 @@ general { misc { enable_swallow = true swallow_regex = ^(St)$ + vfr = true } #}}} @@ -66,6 +64,7 @@ decoration { blur_size = 3 blur_passes = 1 blur_new_optimizations = on + blur_xray = yes drop_shadow = yes shadow_range = 4 shadow_render_power = 3 @@ -75,7 +74,7 @@ decoration { #{{{ Animations options animations { - enabled = yes + enabled = no # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more bezier = myBezier, 0.05, 0.9, 0.1, 1.05 animation = windows, 1, 7, myBezier @@ -196,6 +195,7 @@ binde = $mainMod $secdMod, J, resizeactive, 0 10 #DWINDLE bind = $mainMod SHIFT, Q, killactive, bind = $mainMod SHIFT, E, exit, bind = $mainMod SHIFT, SPACE, togglefloating, +bind = $mainMod $secdMod, F2, exec, ~/.config/hypr/gamemode.sh bind = $mainMod, F, fullscreen, 0 bind = $mainMod, M, fullscreen, 1 #}}} @@ -269,8 +269,8 @@ bind = $mainMod $secdMod, P, exec, passmenu #}}} #{{{ Misc bindings -bind = $mainMod, Return, exec, st -bind = $mainMod $secdMod, F, exec, st -e lf +bind = $mainMod, Return, exec, foot +bind = $mainMod $secdMod, F, exec, foot lf bind = $mainMod, W, exec, waytoggle bind = $mainMod, Q, exec, loginctl lock-session bind = $mainMod SHIFT, G, exec, get-app-id @@ -323,7 +323,7 @@ submap = reset #}}} #{{{ Media bindings -bindl = $secdMod, P, exec, playerctl -p mpd play-pause +bindl = $secdMod, P, exec, playerctl play-pause bindel = , XF86AudioRaiseVolume, exec, volsv -i 5 bindel = , XF86AudioLowerVolume, exec, volsv -d 5 bind = , XF86AudioMute, exec, volsv -t |