Skip to content

Instantly share code, notes, and snippets.

@Vultour
Created September 29, 2016 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vultour/ce731d66fa48d1d89d2d513e3e88184c to your computer and use it in GitHub Desktop.
Save Vultour/ce731d66fa48d1d89d2d513e3e88184c to your computer and use it in GitHub Desktop.
#!/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