From 950ccc32e6316283af7592ce1aee5e6dae192cad Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Mon, 11 Jul 2022 08:49:29 -0400 Subject: [PATCH] Remove urgency hinting on startup When i3 starts, all the auto-started windows get the urgency marker set. You would typically have to go through and activate each window to unset the flag. That is pointless busiwork. Script adatped from https://www.reddit.com/r/i3wm/comments/vuv53l/comment/ifhk3k5/?utm_source=share&utm_medium=web2x&context=3 --- autostart.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autostart.conf b/autostart.conf index bbcbb80..a29daef 100644 --- a/autostart.conf +++ b/autostart.conf @@ -43,3 +43,6 @@ exec --no-startup-id redshift # Switch to the terminal/email workspace by default exec --no-startup-id "i3-msg workspace $ws3" + +# disable the urgency flags on all windows at startup +exec --no-startup-id ~/bin/disable_startup_urgency.sh