From 634a6aa16647b68ff57999d70b8f51c49487b9af Mon Sep 17 00:00:00 2001 From: thek4n Date: Sat, 1 Aug 2026 18:05:32 +0300 Subject: [PATCH] migrate to swayfx --- home/user/.config/alacritty/alacritty.toml | 2 +- home/user/.config/i3blocks/config | 4 ---- home/user/.config/sway/other.conf | 21 +++++++++++++++++++++ home/user/.config/zsh/.zprofile | 2 +- 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/home/user/.config/alacritty/alacritty.toml b/home/user/.config/alacritty/alacritty.toml index 0621b55..d66f46c 100644 --- a/home/user/.config/alacritty/alacritty.toml +++ b/home/user/.config/alacritty/alacritty.toml @@ -30,7 +30,7 @@ multiplier = 3 [window] dynamic_title = true -opacity = 0.92 +opacity = 0.6 [window.dimensions] columns = 150 diff --git a/home/user/.config/i3blocks/config b/home/user/.config/i3blocks/config index cdfb8d8..7feaea9 100644 --- a/home/user/.config/i3blocks/config +++ b/home/user/.config/i3blocks/config @@ -9,10 +9,6 @@ interval=5 command=~/.config/i3blocks/scripts/builder.sh wireless interval=10 -[ethernet] -command=~/.config/i3blocks/scripts/builder.sh ethernet -interval=10 - [diskroot] command=~/.config/i3blocks/scripts/builder.sh disk_root interval=30 diff --git a/home/user/.config/sway/other.conf b/home/user/.config/sway/other.conf index 4834335..3c76b42 100644 --- a/home/user/.config/sway/other.conf +++ b/home/user/.config/sway/other.conf @@ -59,3 +59,24 @@ workspace hide2 output $secondary for_window [class="(?i).*tlauncher.*"] floating enable 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; +} diff --git a/home/user/.config/zsh/.zprofile b/home/user/.config/zsh/.zprofile index e6b2853..8d35757 100644 --- a/home/user/.config/zsh/.zprofile +++ b/home/user/.config/zsh/.zprofile @@ -7,5 +7,5 @@ fi if [ "${TTY}" = "/dev/tty1" ] && [ -z "${WAYLAND_DISPLAY}" ] && [ -z "${DISPLAY}" ]; then wayland_dir="${XDG_STATE_HOME:-${HOME}/.local/state}/wayland" 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