Skip to content

Instantly share code, notes, and snippets.

@tavinus
Last active July 7, 2016 21:15
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 tavinus/db64e5f7de5b9b8727c5a8c573183af0 to your computer and use it in GitHub Desktop.
Save tavinus/db64e5f7de5b9b8727c5a8c573183af0 to your computer and use it in GitHub Desktop.
xfce4-terminal maximized
#!/bin/bash
###################################################################
#
# Maximized xfce4-terminal
# /usr/bin/xfce4-terminal
#
# Created for linux mint xfce
# Gustavo Neves - 4 Jul 2016
#
# You must move your original xfce-terminal
# from -> /usr/bin/xfce4-terminal
# to -> /usr/bin/xfce4-terminal-original
#
# You can do that with:
# sudo mv /usr/bin/xfce4-terminal /usr/bin/xfce4-terminal-original
#
# One-liner to install this script
# Move and download/install
# (Use this at your own risk!)
#
# sudo mv /usr/bin/xfce4-terminal /usr/bin/xfce4-terminal-original # Run this only once!!
# sudo wget -q https://gist.githubusercontent.com/tavinus/db64e5f7de5b9b8727c5a8c573183af0/raw/ -O /usr/bin/xfce4-terminal && sudo chmod 775 /usr/bin/xfce4-terminal
#
###################################################################
/usr/bin/xfce4-terminal-original --maximize $@ &>/dev/null &
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment