blob: 3ca7ba55943914fe9d1a001246c6f0ffc7f025b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
systemctl "$@" list-unit-files \
| tail -n +2 \
| head -n -2 \
| cut -d' ' -f1 \
| fzf \
--preview="systemctl $@ status {}" \
--preview-window "bottom,follow" \
--header-first \
--header="alt-1: status, alt-2: logs" \
--bind "alt-1:change-preview:systemctl $@ status {}" \
--bind "alt-2:change-preview:journalctl $@ -fu {}"
|