tide/functions/_tide_item_jobs.fish

11 lines
374 B
Fish
Raw Normal View History

2020-05-20 20:05:33 +03:00
function _tide_item_jobs
2020-09-08 18:13:15 +03:00
if jobs --quiet # Use --quiet because its faster and most people wont use verbose
set_color $tide_jobs_color
2020-08-25 03:20:45 +03:00
if test "$tide_jobs_verbose" = true
2020-09-08 18:13:15 +03:00
printf '%s' $tide_jobs_icon ' '(jobs --pid | count) # --pid because it's faster than just jobs
else
printf '%s' $tide_jobs_icon
2020-08-25 03:20:45 +03:00
end
2020-05-19 06:03:25 +03:00
end
end