From ce1349c2296c4c9fc1bea72a3452364fc37bdf0d Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 19 May 2021 17:16:47 -0500 Subject: [PATCH] added --no-startup-id to screen-blanking command --- i3/.config/i3/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 36b4e49..3344a1e 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -183,8 +183,8 @@ font pango:DejaVu Sans Mono 8 bindsym $mod+shift+x exec --no-startup-id "$lock_command"; exec "systemctl suspend" # disable screen going to sleep with mod+c, enable screen going to sleep with mod+shift+c - bindsym $mod+c exec "xset s off -dpms; notify-send 'screen blanking off'" - bindsym $mod+shift+c exec "xset +dpms; notify-send 'screen blanking on'" + bindsym $mod+c exec --no-startup-id "xset s off -dpms; notify-send 'screen blanking off'" + bindsym $mod+shift+c exec --no-startup-id "xset +dpms; notify-send 'screen blanking on'" #screenshot everything with mod+s, current window with mod+shift+s bindsym $mod+s exec --no-startup-id "maim ~/Pictures/$(date +%s).png"