diff options
author | tv <tv@krebsco.de> | 2018-10-03 22:23:31 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-10-03 22:23:31 +0200 |
commit | a8e75ec0e75eb0c3a4542582dc8aa47a961a0494 (patch) | |
tree | 057ff4dfa53b2f74202b4b9dbbf5eb13bfb2fa19 /tv/2configs | |
parent | 21e7a49885dce34155395a77babc9d090b42acc4 (diff) |
tv bash: use XMONAD_SPAWN_WORKSPACE when SHLVL=1
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/bash/default.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tv/2configs/bash/default.nix b/tv/2configs/bash/default.nix index 546b2e7..b75ad8b 100644 --- a/tv/2configs/bash/default.nix +++ b/tv/2configs/bash/default.nix @@ -33,11 +33,13 @@ with import <stockholm/lib>; PS1="ssh-agent[$SSH_AGENT_PID] $PS1" fi - case ''${XMONAD_SPAWN_WORKSPACE-} in - stockholm) - cd ~/stockholm - ;; - esac + if test ''${SHLVL-1} = 1; then + case ''${XMONAD_SPAWN_WORKSPACE-} in + stockholm) + cd ~/stockholm + ;; + esac + fi ''; }; } |