Compare commits

..

No commits in common. "b8131941ab6ec31db1c8432a5e66a8baf95dd471" and "776aaae1948c50a4959d0815f5cf9c999c067b6b" have entirely different histories.

2 changed files with 35 additions and 2 deletions

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
if [ -f ~/.wg0 ]; then
sudo systemctl stop wg-quick-wg0.service
rm ~/.wg0
else
sudo systemctl restart wg-quick-wg0.service
touch ~/.wg0
fi

View File

@ -10,7 +10,7 @@ alias nb="cd ~/.local/share/chezmoi/provision && \
cd -" cd -"
# sesh # sesh
function b() { function s() {
{ {
exec </dev/tty exec </dev/tty
exec <&1 exec <&1
@ -21,8 +21,14 @@ function b() {
} }
} }
# hyprland
alias h='Hyprland'
alias tw='linux-toggle-vpn'
# chezmoi # chezmoi
alias cc="cd ~/.local/share/chezmoi" alias cc="cd ~/.local/share/chezmoi"
alias cdr="chezmoi apply --verbose --dry-run"
alias ca="chezmoi apply" alias ca="chezmoi apply"
alias ce='chezmoi edit' alias ce='chezmoi edit'
@ -32,8 +38,19 @@ alias te='trash-empty'
alias tl='trash-list' alias tl='trash-list'
alias tre='trash-restore' alias tre='trash-restore'
alias trm='trash-rm' alias trm='trash-rm'
alias rofi='wayland-rofi'
# zk
alias cz="cd ~/documents/zet"
# nnn
# Open nnn at location you closed it
n() {
nnn -r -e $(cat ~/.nnn_last)
echo "$(pwd)" > ~/.nnn_last
}
# cp and mv with progress
alias cp="cpg -g" alias cp="cpg -g"
alias mv="mvg -g" alias mv="mvg -g"
@ -44,5 +61,12 @@ alias ga="git add ."
alias gd="git diff" alias gd="git diff"
alias gl="git log" alias gl="git log"
# dev
alias dp="docker pull ghcr.io/starr-dust/dev-container:master"
alias dr='docker run --rm --name $(date +%Y%m%d%k%M%S) -p 8082:8082 -v $(pwd):/root/src -it ghcr.io/starr-dust/dev-container:master'
# applications
alias google-chrome-stable="google-chrome-stable --simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT'"
# rsync # rsync
alias rsync.net="ssh fm2120@fm2120.rsync.net" alias rsync.net="ssh fm2120@fm2120.rsync.net"