This commit is contained in:
Tao Tien 2025-06-22 21:49:42 -07:00
parent 4c27a575a3
commit 703c40aa3c
5 changed files with 443 additions and 435 deletions

View file

@ -47,6 +47,8 @@ def jm --wrapped [-r: string = "@", ...rest] {
}
alias la = ls -a
alias ll = ls -l
alias lal = ls -la
alias ccp = cp -prv
alias mvp = mv-full -pv
@ -58,3 +60,12 @@ def --env c [path: path = "~"] {
def l --wrapped [path: path = ".", ...rest] {
ls ...$rest $path | sort-by type name -i -n
}
alias list-automounts = systemctl list-units --type=automount
def remount [] {
let reload = list-automounts | detect columns -n | get column0 | input list --multi
for mount in $reload {
systemctl resart $mount
}
}