Merge branch 'dev' of ssh://git.lyte.dev:2222/lytedev/dotfiles into dev
This commit is contained in:
commit
c28354db54
|
@ -9,7 +9,6 @@
|
|||
[ -f "$HOME/.xmodmap" ] && xmodmap "$HOME/.xmodmap"
|
||||
has_command xcape && xcape -e 'Control_L=Escape' &
|
||||
has_command libinput-gestures-setup && libinput-gestures-setup start
|
||||
has_command autocutsel && autocutsel -s PRIMARY &
|
||||
has_command autorandr && autorandr -c
|
||||
has_command redshift && redshift -r -l 39.1:-94.6 -t 6500K:3000K &
|
||||
has_command kdeconnect-indicator && kdeconnect-indicator &
|
||||
|
|
|
@ -114,6 +114,9 @@ alias gd "git diff"
|
|||
alias gds "gd --staged"
|
||||
# alias gdv "git dv" # TODO: what is this?
|
||||
alias gpl "git pull"
|
||||
alias ga "git add"
|
||||
alias gcm "git commit -m"
|
||||
alias gco "git checkout"
|
||||
alias gp "git push"
|
||||
alias gpa "git push --all && 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"
|
||||
|
||||
# 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 C "clear && clear"
|
||||
alias r "ranger"
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
sudo apt install curl gnupg2
|
||||
|
||||
echo "Setting up yarn source..."
|
||||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
||||
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
||||
|
@ -23,7 +25,6 @@ sudo apt install \
|
|||
neovim vim \
|
||||
unzip \
|
||||
lua5.3 luajit \
|
||||
curl \
|
||||
jq \
|
||||
w3m \
|
||||
ranger \
|
||||
|
@ -32,5 +33,5 @@ sudo apt install \
|
|||
fortune \
|
||||
nodejs yarn \
|
||||
gawk \
|
||||
gnupg2 \
|
||||
netcat \
|
||||
kitty-terminfo
|
||||
|
|
10
bin/pr-for-commit
Executable file
10
bin/pr-for-commit
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
export GITHUB_UPSTREAM="$(git remote -vv | awk '{$0=$2}')"
|
||||
|
||||
git log --merges --ancestry-path --oneline $1..master \
|
||||
| grep -i 'pull request' \
|
||||
| tail -n1 \
|
||||
| awk '{$0=$5}' \
|
||||
| cut -c2- \
|
||||
| xargs -I % open https://github.com/$GITHUB_UPSTREAM/${PWD##*/}/pull/%
|
Reference in a new issue