From eb55424a60fee064dc7ded97006beda0ee284e62 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Fri, 29 Sep 2023 13:13:19 +0200 Subject: [PATCH] Updates --- waybar/style.css | 2 +- wlogout/layout | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/waybar/style.css b/waybar/style.css index 92dd0ac..dc72fc4 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -41,7 +41,7 @@ window#waybar { #workspaces { background: #FFFFFF; margin: 2px; - padding: 2px 2px; + padding: 1px 1px; border-radius: 15px; font-weight: bold; font-style: normal; diff --git a/wlogout/layout b/wlogout/layout index 568a332..50891a8 100644 --- a/wlogout/layout +++ b/wlogout/layout @@ -1,18 +1,18 @@ { "label" : "lock", - "action" : "swaylock", + "action" : "sleep 1; swaylock", "text" : "Lock", "keybind" : "l" } { "label" : "hibernate", - "action" : "systemctl hibernate", + "action" : "sleep 1; systemctl hibernate", "text" : "Hibernate", "keybind" : "h" } { "label" : "logout", - "action" : "loginctl terminate-user $USER", + "action" : "sleep 1; loginctl terminate-user $USER", "text" : "Logout", "keybind" : "e" } @@ -24,13 +24,13 @@ } { "label" : "suspend", - "action" : "systemctl suspend", + "action" : "sleep 1; systemctl suspend", "text" : "Suspend", "keybind" : "u" } { "label" : "reboot", - "action" : "systemctl reboot", + "action" : "sleep 1; systemctl reboot", "text" : "Reboot", "keybind" : "r" }