alot of messing with what I like for a desktop

This commit is contained in:
Chris Cochrun 2023-02-05 07:09:48 -06:00
parent 2e8b8b98a2
commit 5a834ec5a3
14 changed files with 204 additions and 88 deletions

View file

@ -49,22 +49,24 @@ gestures {
decoration {
rounding=18
active_opacity=0.90
multisample_edges=true
active_opacity=0.97
inactive_opacity=0.75
fullscreen_opacity=1.0
blur=true
blur_new_optimizations=true
blur_size=2# minimum 1
blur_passes=5 # minimum 1, more passes = more resource intensive.
blur_size=10 # minimum 1
blur_passes=3 # minimum 1, more passes = more resource intensive.
blur_ignore_opacity=false
# 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.
drop_shadow=true
shadow_range=20
shadow_offset=10 10
shadow_scale=1.0
shadow_render_power=2
col.shadow = rgba(00000066)
shadow_range=15
shadow_offset=5 5
shadow_scale=0.99
shadow_render_power=1
col.shadow = rgba(000000cc)
dim_inactive=true
dim_strength=0.2
}

9
hypr/scripts/dynamic-float.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
function handle {
if [[ ${1:0:12} == "activewindow" ]]; then
echo ${1:0}
fi
}
socat - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done