You are not logged in.
Pages: 1
How would I create a launcher to start multiple programs?
e.g.
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Start Apps
Comment=Start All My Apps At Once
Exec=/path/to/command1 && /path/to/command2 -with-options && /path/to/command3 -with-options -- U%
Needless to say I have tried this but nothing happens.
The apps are all GUI like Terminal, Thunar, Firefox, etc.
Thanks,
Paully
Last edited by plittlefield (2016-08-22 13:26:30)
Offline
Pretty sure you will want to point the launcher to a script that specifies the apps you want. Many examples can be found with a web search on "linux script to start apps," and I would imagine something like this would work:
#!/bin/bash
/usr/bin/firefox &
/usr/bin/thunar &
/usr/bin/terminal &
exit 0
Be sure to make it executable. (There are others on this Forum who know a lot more about this than I do...)
MX-23 (based on Debian Stable) with our flagship Xfce 4.18.
Offline
Thanks, that worked.
Offline
Pages: 1
[ Generated in 0.012 seconds, 9 queries executed - Memory usage: 522.42 KiB (Peak: 523.27 KiB) ]