diff options
author | tv <tv@krebsco.de> | 2018-11-30 14:04:42 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-11-30 14:04:42 +0100 |
commit | 6dc6cb52faf242e89c5f19293fc0470d89b31dd8 (patch) | |
tree | 715690e62258b8c94450a4bfaa67323bd4370a72 /tv | |
parent | 7ab237c99e0f9f1f005663a8c5ecf4eb15d41234 (diff) |
tv bash: use XMONAD_SPAWN_WORKSPACE only for tv
change directory only for interactivetv user
Diffstat (limited to 'tv')
-rw-r--r-- | tv/2configs/bash/default.nix | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/tv/2configs/bash/default.nix b/tv/2configs/bash/default.nix index b75ad8b..3b4a4aa 100644 --- a/tv/2configs/bash/default.nix +++ b/tv/2configs/bash/default.nix @@ -13,6 +13,18 @@ with import <stockholm/lib>; shopt -s histappend histreedit histverify shopt -s no_empty_cmd_completion complete -d cd + + case $UID in + ${shell.escape (toString config.krebs.users.tv.uid)}) + if test ''${SHLVL-1} = 1; then + case ''${XMONAD_SPAWN_WORKSPACE-} in + stockholm) + cd ~/stockholm + ;; + esac + fi + ;; + esac ''; promptInit = /* sh */ '' case $UID in @@ -32,14 +44,6 @@ with import <stockholm/lib>; if test -n "$SSH_AGENT_PID"; then PS1="ssh-agent[$SSH_AGENT_PID] $PS1" fi - - if test ''${SHLVL-1} = 1; then - case ''${XMONAD_SPAWN_WORKSPACE-} in - stockholm) - cd ~/stockholm - ;; - esac - fi ''; }; } |