Still no illegible commit message, as usual
This commit is contained in:
parent
150301d166
commit
29cb924997
1
bashrc
1
bashrc
|
@ -80,6 +80,7 @@ alias df='df -h'
|
||||||
alias 49.3='sudo'
|
alias 49.3='sudo'
|
||||||
alias pacman='pacman --color auto'
|
alias pacman='pacman --color auto'
|
||||||
alias x='startx; logout'
|
alias x='startx; logout'
|
||||||
|
alias x='sudo -s -E'
|
||||||
|
|
||||||
# Solarized theme for tty, the dark version.
|
# Solarized theme for tty, the dark version.
|
||||||
# Based on:
|
# Based on:
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ "$1" == 'root' ]; then
|
if [ "$1" == 'root' ]; then
|
||||||
a=" (root)"
|
a=" (root)"
|
||||||
b="sudo "
|
b="sudo -E "
|
||||||
|
fi
|
||||||
|
machine=$(cat ~/.ssh/config | grep '^Host ' | cut -d ' ' -f 2 | grep -v '*' | sort | $HOME/.config/i3/dmenu_cmd -p "SSH$a to ")
|
||||||
|
if [ ! -z $machine ]; then
|
||||||
|
xterm -e "ssh $machine -t '${b}bash --login'"
|
||||||
fi
|
fi
|
||||||
xterm -e "ssh $(cat ~/.ssh/config | grep '^Host ' | cut -d ' ' -f 2 | grep -v '*' | sort | $HOME/.config/i3/dmenu_cmd -p "SSH$a to ") -t '${b}bash --login'"
|
|
||||||
|
|
|
@ -24,6 +24,9 @@ mkdir -p $DEBLOC_DB &> /dev/null
|
||||||
mkdir -p $DEBLOC_ROOT &> /dev/null
|
mkdir -p $DEBLOC_ROOT &> /dev/null
|
||||||
|
|
||||||
export PATH="$DEBLOC_ROOT/usr/bin:$DEBLOC_ROOT/usr/games/:$DEBLOC_ROOT/usr/lib/git-core:$PATH"
|
export PATH="$DEBLOC_ROOT/usr/bin:$DEBLOC_ROOT/usr/games/:$DEBLOC_ROOT/usr/lib/git-core:$PATH"
|
||||||
|
export LIBRARY_PATH="$DEBLOC_LD:$LIBRARY_PATH"
|
||||||
|
export C_INCLUDE_PATH="$DEBLOC_ROOT/include:$C_INCLUDE_PATH"
|
||||||
|
export CPLUS_INCLUDE_PATH="$DEBLOC_ROOT/include:$CPLUS_INCLUDE_PATH"
|
||||||
export LD_LIBRARY_PATH="$DEBLOC_LD:$LD_LIBRARY_PATH"
|
export LD_LIBRARY_PATH="$DEBLOC_LD:$LD_LIBRARY_PATH"
|
||||||
export PYTHONPATH="$DEBLOC_ROOT/usr/lib/python3/dist-packages:$PYTHONPATH"
|
export PYTHONPATH="$DEBLOC_ROOT/usr/lib/python3/dist-packages:$PYTHONPATH"
|
||||||
export QT_QPA_PLATFORM_PLUGIN_PATH="$DEBLOC_ROOT/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms"
|
export QT_QPA_PLATFORM_PLUGIN_PATH="$DEBLOC_ROOT/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms"
|
||||||
|
|
Loading…
Reference in a new issue