This file contains hidden or 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
#!/usr/bin/env bash | |
# TODO: Rewrite that as Ansible Playbook maybe for vagrant:ansible_local | |
# Installing Basic Utilitys | |
sudo apt-get install nano dnsutils | |
# Installing git | |
sudo apt-get install git -y |
This file contains hidden or 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
# RXVT Config. terminus font is required! | |
#Rxvt*font:xft: true | |
#Rxvt*font: terminus-iso8859-1-14 | |
#Rxvt*font: xft:Mono:pixelsize=13 | |
Rxvt*font: xft:Monospace:pixelsize=13 | |
URxvt*transparent: false | |
URxvt*tintColor: White | |
URxvt*shading: 25 |
This file contains hidden or 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
#!/usr/bin/env zsh | |
function usage() { | |
cat <<EOF | |
USAGE i3-xephyr start|stop|restart|run | |
start Start nested i3 in xephyr | |
stop Stop xephyr | |
restart reload i3 in xephyr | |
run run command in nested i3 | |
EOF |