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