vote up 0 vote down star

Is there a good way to test whether I am logging into a text shell or starting a GUI session in my .bashrc? For example, to set my editor to gedit if in gnome and emacs if using a command line.

flag

2 Answers

vote up 9 vote down check

Your DISPLAY variable will be set if you're logged in to an X session.

Edit: So, this (untested) code should work:

[ -n "${DISPLAY}" ] && export EDITOR=gedit || export EDITOR=emacs

Fixed based on comments.

link|flag
1  
Actually, you need to either leave off the -z or swap the editors. – Dennis Williamson Sep 15 at 0:54
Replacing -z with -n would also work. – Michael E Sep 15 at 14:36
Whoops .. thanks. – eduffy Sep 16 at 3:15
FYI. [ is actually a command. If you're using bash, the preferred method is [[. – Jeremy Michael Cantrell Sep 28 at 18:32
vote up 2 vote down

Using bash conventions:

if [[ $DISPLAY ]]; then
    export EDITOR=gedit
else
    export EDITOR=emacs
fi
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.