Run multi command with exec [closed]
asked 2013-02-24 14:08:07 +0000
Anonymous
I want to start all my applications with one keybind. It can be done with a bash script which starts them all. But I don't want to use addition bash file,
Tried this but did not work:
bindsym $mod+p exec bash -c 'for i in skype firefox pidgin thunderbird; do `$i &`; done' &
is there any way to do that that with exec and do not use a bash script?
This was already answered here: https://faq.i3wm.org/question/403/executing-applications-exec/