gh0stzk / dotfiles

BSPWM environment with 18 themes. With a theme selector to change on the fly.
GNU General Public License v3.0
3.02k stars 225 forks source link

App auto start #287

Closed imstuart closed 3 months ago

imstuart commented 3 months ago

Hi, it’s possible to have an auto start for firefox ? (and more apps)

gh0stzk commented 3 months ago

yes, add at the bottom of bspwmrc.

For example add firefox at bottom of bspwmrc

But need to be carefull, if u add a daemon you need to add & at the end, for example sxhkd & why?

for example if you do something like this:

whatever daemon
firefox

That will give u errors, must be:

whatever daemon &
firefox

but if u only wanna add firefox or apps that doenst run in background or demonize, just add it to bottom of file.

firefox geany ranger etc

imstuart commented 3 months ago

thanks you it’s fixed