aboutsummaryrefslogtreecommitdiff
path: root/external/zsh/aliases/system.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'external/zsh/aliases/system.zsh')
-rw-r--r--external/zsh/aliases/system.zsh13
1 files changed, 0 insertions, 13 deletions
diff --git a/external/zsh/aliases/system.zsh b/external/zsh/aliases/system.zsh
deleted file mode 100644
index 48951a9..0000000
--- a/external/zsh/aliases/system.zsh
+++ /dev/null
@@ -1,13 +0,0 @@
-
-# Pacman aliases
-alias auto-remove="yay -Rcs \$(yay -Qdtq)";
-alias update="yay -Syu";
-alias mirrorlist-refresh="sudo reflector --latest 200 --protocol http --protocol https --sort rate --save /etc/pacman.d/mirrorlist-arch"
-
-# Sandbox
-alias sandbox="sudo ~/scripts/host-file-elb-update.sh";
-
-# Runit helpers
-sv_enable() { [[ -f "/etc/runit/sv/$1" ]] && sudo ln -s /etc/runit/sv/$1 /run/runit/service; }
-sv_disable() { sudo unlink /run/runit/service/$1; }
-