diff --git a/share/functions/suspend.fish b/share/functions/suspend.fish new file mode 100644 index 000000000..ce3824eb4 --- /dev/null +++ b/share/functions/suspend.fish @@ -0,0 +1,7 @@ +function suspend + if status --is-login + echo cannot suspend login shell >&2 + else + kill -STOP %self + end +end