diff --git a/functions/dudo.fish b/functions/dudo.fish index c06c4fa..6602129 100644 --- a/functions/dudo.fish +++ b/functions/dudo.fish @@ -1,3 +1,3 @@ -function dudo --wraps=sudo --description 'alias dudo sudo' +function dudo --wraps=sudo sudo $argv; end diff --git a/functions/idea.fish b/functions/idea.fish index f086bde..4efe0e1 100644 --- a/functions/idea.fish +++ b/functions/idea.fish @@ -1,3 +1,3 @@ -function idea --wraps='idea -e -w' --description 'alias idea idea -e -w' +function idea command idea -e -w $argv; end diff --git a/functions/sd+.fish b/functions/sd+.fish index f539856..e6b9fd9 100644 --- a/functions/sd+.fish +++ b/functions/sd+.fish @@ -1,3 +1,3 @@ -function sd+ --wraps='systemctl start' --wraps='systemctl enable --now' --description 'alias sd+ systemctl enable --now' +function sd+ systemctl enable --now $argv; end diff --git a/functions/sd-.fish b/functions/sd-.fish index f09c046..9cd3cb8 100644 --- a/functions/sd-.fish +++ b/functions/sd-.fish @@ -1,3 +1,3 @@ -function sd- --wraps='systemctl stop' --wraps='systemctl disable --now' --description 'alias sd- systemctl disable --now' +function sd- systemctl disable --now $argv; end diff --git a/functions/sdr.fish b/functions/sdr.fish index 7c5fbee..f9ad221 100644 --- a/functions/sdr.fish +++ b/functions/sdr.fish @@ -1,3 +1,3 @@ -function sdr --wraps='systemctl restart' --description 'alias sdr systemctl restart' +function sdr systemctl restart $argv; end diff --git a/functions/sds.fish b/functions/sds.fish index 41deb28..8a6364a 100644 --- a/functions/sds.fish +++ b/functions/sds.fish @@ -1,3 +1,3 @@ -function sds --wraps='systemctl status' --description 'alias sds systemctl status' +function sds systemctl status $argv; end