From 270cc2f786b73161e0fcf416e3d11e58fcf6b5c4 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Wed, 4 Jun 2025 22:45:38 +0300 Subject: [PATCH] Remove deprecated transparent screensaver and update RNG command --- .config/sway/config | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/sway/config b/.config/sway/config index 075481e..4d39032 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -99,9 +99,7 @@ input type:touchpad { # Black bindsym $wm_mod+l exec swaylock -f -c 000000 # Random color - bindsym $wm_mod+Shift+l exec swaylock -f -c $(printf "%02x%02x%02x" $((RANDOM%256)) $((RANDOM%256)) $((RANDOM%256))) - # Transparent - bindsym $wm_mod+semicolon exec swaylock -f -c 00000000 + bindsym $wm_mod+semicolon exec swaylock -f -c $(dd if=/dev/urandom bs=1 count=3 2>/dev/null | hexdump -e '"%02x"') # Exit sway (logs you out of your Wayland session) bindsym $wm_mod+Delete exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'