Add vagrant halt alias
This commit is contained in:
parent
955e37ae34
commit
c53ca9e785
@ -67,11 +67,12 @@ bindsym $mod+XF86AudioMute exec --no-startup-id pactl set-sink-mute 1 toggle # m
|
||||
|
||||
|
||||
## requires xbacklight
|
||||
#bindsym XF86MonBrightnessUp exec xbacklight -inc 20 # increase screen brightness
|
||||
#bindsym XF86MonBrightnessDown exec xbacklight -dec 20 # decrease screen brightness
|
||||
bindsym XF86MonBrightnessUp exec light -A 5 # increase screen brightness
|
||||
bindsym XF86MonBrightnessDown exec light -U 5 # decrease screen brightness
|
||||
|
||||
## Keyboard Backlighting
|
||||
#/sys/devices/platform/asus-nb-wmi/leds/asus\:\:kbd_backlight/brightness
|
||||
|
||||
# change focus
|
||||
bindsym $mod+h focus left
|
||||
bindsym $mod+t focus down
|
||||
|
@ -15,6 +15,7 @@ alias vp='vagrant provision'
|
||||
alias vssh='vagrant ssh'
|
||||
alias vd='vagrant destroy'
|
||||
alias vc='vagrant destroy && vagrant up --provision'
|
||||
alias vh="for i in `vagrant global-status | awk '/running/ {print $5}'`; do cd $i && vagrant halt; done"
|
||||
|
||||
### Git
|
||||
alias git_clean='git fetch --all && git reset --hard origin/master'
|
||||
@ -23,4 +24,4 @@ alias git_clean='git fetch --all && git reset --hard origin/master'
|
||||
alias vpn_lyrical='cd /home/ahosking/lyrical/vpn &&sudo openvpn --config gw-udp-1194-ahosking-vpn.ovpn'
|
||||
|
||||
alias roles_fetch='r10k puppetfile install --puppetfile Puppetfile --moduledir ../../roles/'
|
||||
alias roles_pull='for role in `ls ../../roles`; do echo "########" $role; echo `git -C ../../roles/$role pull`; done'
|
||||
alias roles_pull='for role in `ls ../../roles`; do echo "########" $role; echo `git -C ../../roles/$role pull origin master`; done'
|
||||
|
Loading…
Reference in New Issue
Block a user