fish-shell/share/functions/__fish_systemctl_timers.fish

9 lines
292 B
Fish

function __fish_systemctl_timers
if type -q systemctl
if __fish_contains_opt user
systemctl --user list-unit-files --no-legend --type=timer ^/dev/null $argv | cut -f 1 -d ' '
else
systemctl list-unit-files --no-legend --type=timer ^/dev/null $argv | cut -f 1 -d ' '
end
end
end