From b8131941ab6ec31db1c8432a5e66a8baf95dd471 Mon Sep 17 00:00:00 2001 From: Tyler Starr Date: Sun, 9 Feb 2025 16:32:17 -0800 Subject: [PATCH] clean up aliases --- home/bin/executable_linux-toggle-vpn | 9 --------- home/dot_aliases | 26 +------------------------- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 home/bin/executable_linux-toggle-vpn diff --git a/home/bin/executable_linux-toggle-vpn b/home/bin/executable_linux-toggle-vpn deleted file mode 100644 index 5847a92e..00000000 --- a/home/bin/executable_linux-toggle-vpn +++ /dev/null @@ -1,9 +0,0 @@ -#!/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 diff --git a/home/dot_aliases b/home/dot_aliases index 2c949079..211d94cf 100644 --- a/home/dot_aliases +++ b/home/dot_aliases @@ -21,14 +21,8 @@ function b() { } } -# hyprland -alias h='Hyprland' - -alias tw='linux-toggle-vpn' - # chezmoi alias cc="cd ~/.local/share/chezmoi" -alias cdr="chezmoi apply --verbose --dry-run" alias ca="chezmoi apply" alias ce='chezmoi edit' @@ -38,19 +32,8 @@ alias te='trash-empty' alias tl='trash-list' alias tre='trash-restore' 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 mv="mvg -g" @@ -61,12 +44,5 @@ alias ga="git add ." alias gd="git diff" 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 alias rsync.net="ssh fm2120@fm2120.rsync.net"