1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

lannch iceweasel or firefox depending on which one exists

This commit is contained in:
Ryan Kes 2019-03-22 18:29:36 +01:00
parent c002f051e0
commit 170dcc9e88

View File

@ -14,4 +14,11 @@ slstatus &
exec st -c tmux -e tmux &
exec spotify &
exec firefox &
if [ -e /usr/bin/firefox ]
then
exec firefox &
elif [ -e /usr/bin/iceweasel ]
then
exec iceweasel &
fi