Results 1 to 3 of 3
I'm using Debian with Openbox and would like Chromium, GIMP, and the terminal to open automatically when I login in. I use those everyday...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 12-14-2012 #1Just Joined!
- Join Date
- Jun 2012
- Posts
- 57
How to make certain applications open automatically?
I'm using Debian with Openbox and would like Chromium, GIMP, and the terminal to open automatically when I login in. I use those everyday
- 12-15-2012 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
Why don't you use the autostart file to start them at user login?
Help:Autostart - Openboxoz
- 12-15-2012 #3Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,657
I would have suggested putting the commands in a custom X startup script. If using a graphical login manager (GDM, KDM, etc.), you use the file ~/.xsession and if you run startx from text-mode to get into your desktop, then you'd use ~/.xinitrc.
In either case, you'd want the X startup file to look something like this:
Of course, you can replace gnome-session w/whatever you DM prefer (that is installed). The file has to be executable, too.Code:#!/bin/bash [ -f ~/.Xresources ] && xrdb -merge ~/.Xresources chromium& gimp& gnome-terminal& exec gnome-session
Oz's way is probably the better/easier way to go, though.


Reply With Quote

