diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-27 10:54:51 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-27 10:54:51 +0200 |
commit | 1b3f2c930030df4d07d22f21d7c5560be3135022 (patch) | |
tree | 02839304f749165f8ded498a14e2b83cb295be67 | |
parent | Add gcc-{,less-}extreme{,-not-pedantic} (diff) | |
download | dotfiles-1b3f2c930030df4d07d22f21d7c5560be3135022.tar.gz dotfiles-1b3f2c930030df4d07d22f21d7c5560be3135022.tar.bz2 dotfiles-1b3f2c930030df4d07d22f21d7c5560be3135022.tar.xz |
Fix xinitrc
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | xorg-xinit/xinitrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-xinit/xinitrc b/xorg-xinit/xinitrc index 5d6a3ab..b10ab67 100644 --- a/xorg-xinit/xinitrc +++ b/xorg-xinit/xinitrc @@ -3,7 +3,7 @@ # Get selected session default_session=xmonad SESSION_="$SESSION" -if test -z "$SESSION" = ""; then +if test -z "$SESSION"; then SESSION="$default_session" SESSION_="$SESSION" fi |