From f821dff3a59b1503fc18f60a91b580ecfb5ba907 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Thu, 17 Dec 2020 16:10:19 +0100 Subject: [PATCH] Re-enable qutebrowser at startup --- autostart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autostart b/autostart index 43ffc63..a328787 100755 --- a/autostart +++ b/autostart @@ -11,11 +11,16 @@ hc emit_hook reload xsetroot -solid '#5A8E3A' TERMINAL="termit" +BROWSER="qutebrowser" if [ $(command -v "${TERMINAL}") ] && [ ! $(pidof -x "${TERMINAL}") ] ; then "${TERMINAL}" & fi +if [ $(command -v "${BROWSER}") ] && [ ! $(pidof -x "${BROWSER}") ] ; then + "${BROWSER}" & +fi + ################### ### Keybindings ### ###################