From 9872bdf3feb2f06e3e13893cd126f9c32fdd7934 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sun, 5 Jul 2020 10:27:31 +0200 Subject: [PATCH] [X] Fix flashfocus autostart error Until flashfocus [#54](https://github.com/fennerm/flashfocus/issues/54) is fixed, the short option for lone window flashing does not work as expected. This changes it to use the long option instead. --- X/.config/xresources/xinitrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X/.config/xresources/xinitrc b/X/.config/xresources/xinitrc index a8a9bdf..a2644a9 100644 --- a/X/.config/xresources/xinitrc +++ b/X/.config/xresources/xinitrc @@ -56,7 +56,7 @@ type unclutter >/dev/null 2>&1 && unclutter & # picom is the maintained version of desktop compositor compton type picom >/dev/null 2>&1 && picom & # flashfocus 'flashes' windows as they gain focus -type flashfocus >/dev/null 2>&1 && flashfocus -l never & +type flashfocus >/dev/null 3>&1 && flashfocus --flash-lone-windows never & # redshift removes blue light from display as it gets dark outside type redshift >/dev/null 2>&1 && redshift &