fish: automatically connect to screen
This commit is contained in:
parent
60a1c2b3e6
commit
ff9a01ddc6
1 changed files with 11 additions and 0 deletions
|
@ -55,3 +55,14 @@ end
|
||||||
if [ -z $GOPATH ]
|
if [ -z $GOPATH ]
|
||||||
set -Ux GOPATH ~/.go
|
set -Ux GOPATH ~/.go
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Attach the autoscreen screen session if StumpWM is running
|
||||||
|
# and it's not already in use.
|
||||||
|
if test $DESKTOP_SESSION = "stumpwm"
|
||||||
|
if screen -list | grep -q "No Sockets"
|
||||||
|
screen -dmS autoscreen
|
||||||
|
exec screen -r
|
||||||
|
else if screen -list | grep -Eq "\.autoscreen.*Detached"
|
||||||
|
exec screen -r
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue