Fix things
This commit is contained in:
parent
d48567987d
commit
b0a5a1cac4
|
@ -237,7 +237,7 @@ super + shift + v
|
||||||
sh -c 'kill -USR1 $(cat "/var/run/user/$UID/polybar-mic-script.sh.pid")'
|
sh -c 'kill -USR1 $(cat "/var/run/user/$UID/polybar-mic-script.sh.pid")'
|
||||||
|
|
||||||
super + shift + e
|
super + shift + e
|
||||||
rofimoji --use-clipboard --rofi-args='--sort -sorting-method fzf'
|
rofimoji --insert-with-clipboard --rofi-args='--sort -sorting-method fzf'
|
||||||
|
|
||||||
super + shift + p
|
super + shift + p
|
||||||
rofi-pass
|
rofi-pass
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
[ -f "$HOME/.xmodmap" ] && xmodmap "$HOME/.xmodmap"
|
[ -f "$HOME/.xmodmap" ] && xmodmap "$HOME/.xmodmap"
|
||||||
has_command xcape && xcape -e 'Control_L=Escape' &
|
has_command xcape && xcape -e 'Control_L=Escape' &
|
||||||
has_command libinput-gestures-setup && libinput-gestures-setup start
|
has_command libinput-gestures-setup && libinput-gestures-setup start
|
||||||
has_command autocutsel && autocutsel -s PRIMARY &
|
|
||||||
has_command autorandr && autorandr -c
|
has_command autorandr && autorandr -c
|
||||||
has_command redshift && redshift -r -l 39.1:-94.6 -t 6500K:3000K &
|
has_command redshift && redshift -r -l 39.1:-94.6 -t 6500K:3000K &
|
||||||
has_command kdeconnect-indicator && kdeconnect-indicator &
|
has_command kdeconnect-indicator && kdeconnect-indicator &
|
||||||
|
|
|
@ -114,6 +114,9 @@ alias gd "git diff"
|
||||||
alias gds "gd --staged"
|
alias gds "gd --staged"
|
||||||
# alias gdv "git dv" # TODO: what is this?
|
# alias gdv "git dv" # TODO: what is this?
|
||||||
alias gpl "git pull"
|
alias gpl "git pull"
|
||||||
|
alias ga "git add"
|
||||||
|
alias gcm "git commit -m"
|
||||||
|
alias gco "git checkout"
|
||||||
alias gp "git push"
|
alias gp "git push"
|
||||||
alias gpa "git push --all && git push --tags"
|
alias gpa "git push --all && git push --tags"
|
||||||
alias gpt "git push && git push --tags"
|
alias gpt "git push && git push --tags"
|
||||||
|
@ -130,6 +133,11 @@ alias dclf "docker-compose logs --tail=500 -f"
|
||||||
alias ctop "docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock quay.io/vektorlab/ctop:latest"
|
alias ctop "docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock quay.io/vektorlab/ctop:latest"
|
||||||
|
|
||||||
# misc aliases
|
# misc aliases
|
||||||
|
function pp
|
||||||
|
while not ping -n 1 -t 5 8.8.8.8
|
||||||
|
sleep 1
|
||||||
|
end
|
||||||
|
end
|
||||||
alias p "ping 8.8.8.8"
|
alias p "ping 8.8.8.8"
|
||||||
alias C "clear && clear"
|
alias C "clear && clear"
|
||||||
alias r "ranger"
|
alias r "ranger"
|
||||||
|
|
Reference in a new issue