1
1
Fork 0

fixed intendation

This commit is contained in:
david 2018-05-13 16:13:14 +02:00
parent 865c3e2332
commit 35d1e634ea
1 changed files with 97 additions and 102 deletions

View File

@ -2,19 +2,18 @@
# It might not be very useful for you. # It might not be very useful for you.
# Options # **** zsh options ****
set -o shwordsplit set -o shwordsplit
# Aliases # **** aliases definitions ****
alias zz='source ~/.zshrc' alias zz='source $HOME/.zshrc'
alias vz='vim ~/.zshrc && source ~/.zshrc' alias vz='vim $HOME/.zshrc && source $HOME/.zshrc'
#alias vp='vim $ZSH/plugins/david.zsh && source ~/.zshrc' alias vp='vim $ZSH_CUSTOM/plugins/zsh-david/zsh-david.plugin.zsh && source $HOME/.zshrc'
#alias vt='vim $ZSH/themes/david.zsh && source ~/.zshrc' alias vu='upgrade_oh_my_zsh && _upgrade_custom'
#alias vs='vim $ZSH/myzsh.sh && source ~/.zshrc'
#alias vu='cd $ZSH > /dev/null; git pull origin master; cd - > /dev/null; echo $timestamp > $ZSH/lastrun; source ~/.zshrc'
alias vi='vim' alias vi='vim'
alias v='vim' alias v='vim'
alias vv='vim $HOME/.vimrc'
alias serve="python2 -m SimpleHTTPServer" alias serve="python2 -m SimpleHTTPServer"
alias push="git push origin master" alias push="git push origin master"
alias pull="git pull origin master" alias pull="git pull origin master"
@ -36,14 +35,16 @@ alias systemctl='sudo systemctl'
alias se='ls /usr/bin | grep' alias se='ls /usr/bin | grep'
# Variables # **** variables ****
export EDITOR=vim export EDITOR=vim
if [[ $LANG = '' ]]; then if [[ $LANG = '' ]]; then
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
fi fi
# Functions # **** function definitions ****
## RDP client
rdp() rdp()
{ {
@ -75,20 +76,16 @@ rdp()
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
#xfreerdp +clipboard /v:$server /u:$username /d:$domain /size:1920x1080 #xfreerdp +clipboard /v:$server /u:$username /d:$domain /size:1920x1080
xfreerdp /v:$server /u:$username /d:$domain /size:1366x768 -wallpaper:on xfreerdp /v:$server /u:$username /d:$domain /size:1366x768 -wallpaper:on
else else
echo "error: no rdp client found" echo "error: no rdp client found"
return 1 return 1
fi fi
fi fi
} }
## OS Upgrade for various systems.
update() update()
{ {
# OS Upgrade function for various systems.
#checking for system
systems="ubuntu arch solus raspbian antergos" systems="ubuntu arch solus raspbian antergos"
issue="$(cat /etc/issue)" issue="$(cat /etc/issue)"
for item in $systems; do for item in $systems; do
@ -98,7 +95,6 @@ update()
fi fi
done done
#trying to update parsed system
case $system in case $system in
ubuntu|debian|raspbian) ubuntu|debian|raspbian)
echo "Updating Ubuntu/Debian.." echo "Updating Ubuntu/Debian.."
@ -124,10 +120,9 @@ update()
} }
## Cross-platform install routine
install() install()
{ {
#checking for system
systems="ubuntu arch" systems="ubuntu arch"
issue="$(cat /etc/issue)" issue="$(cat /etc/issue)"
packages=$* packages=$*
@ -149,9 +144,9 @@ install()
echo "unknown system. could not run install." echo "unknown system. could not run install."
;; ;;
esac esac
} }
## Thinkpad Trackpoint input fix (for for thinkpad x131e/chromebook)
fixtrackpoint() fixtrackpoint()
{ {
xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 1 xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 1