Created
September 29, 2016 16:20
-
-
Save Vultour/ce731d66fa48d1d89d2d513e3e88184c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
TERMCONF="~/.config/xfce4/terminal" | |
if [ ! -e $TERMCONF/terminalrc ]; then | |
mkdir -p $TERMCONF | |
echo "[Configuration]" > $TERMCONF/terminalrc | |
fi | |
echo "ScrollingBar=TERMINAL_SCROLLBAR_NONE" >> $TERMCONF/terminalrc | |
xfce4-terminal --fullscreen --hide-menubar --hide-borders --hide-toolbar -x /usr/bin/cmatrix & | |
sleep 5 | |
killall xfce4-terminal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment