1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 06:17:34 +00:00

Remove incorrect descriptions

This commit is contained in:
Steffo 2024-05-20 02:11:11 +02:00
parent edf0984249
commit f4454554a8
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
6 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,3 @@
function dudo --wraps=sudo --description 'alias dudo sudo'
function dudo --wraps=sudo
sudo $argv;
end

View file

@ -1,3 +1,3 @@
function idea --wraps='idea -e -w' --description 'alias idea idea -e -w'
function idea
command idea -e -w $argv;
end

View file

@ -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

View file

@ -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

View file

@ -1,3 +1,3 @@
function sdr --wraps='systemctl restart' --description 'alias sdr systemctl restart'
function sdr
systemctl restart $argv;
end

View file

@ -1,3 +1,3 @@
function sds --wraps='systemctl status' --description 'alias sds systemctl status'
function sds
systemctl status $argv;
end