17 lines
391 B
Bash
Executable file
17 lines
391 B
Bash
Executable file
#!/bin/sh
|
|
# SSH for people who did not sleep long enough
|
|
# Changes background colour to red for remote and resets to LightYellow2 after
|
|
# the session is finished
|
|
#
|
|
# Inspiration by Stefan Baur
|
|
# Coded by Nico Schottelius, 2020-01-19
|
|
#
|
|
# Copying: GPLv3
|
|
|
|
printf '\033]10;black\007'
|
|
printf '\033]11;red\007'
|
|
echo ''
|
|
ssh "$@"
|
|
printf '\033]11;LightYellow2\007'
|
|
printf '\033]10;black\007'
|
|
echo ''
|