Last active
July 7, 2016 21:15
-
-
Save tavinus/db64e5f7de5b9b8727c5a8c573183af0 to your computer and use it in GitHub Desktop.
xfce4-terminal maximized
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 | |
################################################################### | |
# | |
# 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