migrate to swayfx

This commit is contained in:
thek4n 2026-08-01 18:05:32 +03:00
parent 2129fbf146
commit fcacf4a84a
5 changed files with 24 additions and 7 deletions

View File

@ -30,7 +30,7 @@ multiplier = 3
[window] [window]
dynamic_title = true dynamic_title = true
opacity = 0.92 opacity = 0.6
[window.dimensions] [window.dimensions]
columns = 150 columns = 150

View File

@ -9,10 +9,6 @@ interval=5
command=~/.config/i3blocks/scripts/builder.sh wireless command=~/.config/i3blocks/scripts/builder.sh wireless
interval=10 interval=10
[ethernet]
command=~/.config/i3blocks/scripts/builder.sh ethernet
interval=10
[diskroot] [diskroot]
command=~/.config/i3blocks/scripts/builder.sh disk_root command=~/.config/i3blocks/scripts/builder.sh disk_root
interval=30 interval=30

View File

@ -59,3 +59,24 @@ workspace hide2 output $secondary
for_window [class="(?i).*tlauncher.*"] floating enable for_window [class="(?i).*tlauncher.*"] floating enable
exec_always test -f ~/.Xresources && xrdb -merge ~/.Xresources exec_always test -f ~/.Xresources && xrdb -merge ~/.Xresources
blur enable
blur_radius 3
shadows enable
shadow_color #0000007F
shadow_blur_radius 8
shadow_offset 0 5
default_dim_inactive 0.25
corner_radius 8
layer_effects "waybar" {
blur enable;
blur_xray enable;
blur_ignore_transparent enable;
shadows enable;
corner_radius 20;
}

View File

@ -7,5 +7,5 @@ fi
if [ "${TTY}" = "/dev/tty1" ] && [ -z "${WAYLAND_DISPLAY}" ] && [ -z "${DISPLAY}" ]; then if [ "${TTY}" = "/dev/tty1" ] && [ -z "${WAYLAND_DISPLAY}" ] && [ -z "${DISPLAY}" ]; then
wayland_dir="${XDG_STATE_HOME:-${HOME}/.local/state}/wayland" wayland_dir="${XDG_STATE_HOME:-${HOME}/.local/state}/wayland"
mkdir -p "${wayland_dir}" mkdir -p "${wayland_dir}"
exec sway >> "${wayland_dir}/sway.log" 2>&1 exec sway --unsupported-gpu 2>&1 | tee -a "${wayland_dir}/sway.log"
fi fi

File diff suppressed because one or more lines are too long