=Better systemctl handling

這個提交存在於:
Gal Szkolnik 2022-08-26 14:13:42 -04:00
父節點 64add644e5
當前提交 9dbfb53327
共有 2 個檔案被更改,包括 1 行新增19 行删除

檢視檔案

@ -1,18 +0,0 @@
get_clean_path() {
sed 's/ *:\?$//g;s/`/``/g;s/:/`:`/g;s/\\`:`/\\:/g;' <<< $1 | \
awk -v RS='`:`' -v ORS='`:`' '!arr[$0]++' | \
sed 's/`:`/:/g;s/:$//g'
}
# set PATH so it includes user's private bin if it exists
if [[ -d "$HOME/bin" ]] ; then
export PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [[ -d "$HOME/.local/bin" ]] ; then
export PATH="$HOME/.local/bin:$PATH"
fi
PATH=$( get_clean_path $PATH )

檢視檔案

@ -63,7 +63,7 @@
"style": "powerline",
"properties": {
"shell": "bash",
"command": "systemctl is-system-running || true"
"command": "'[[ -n \"$(type -t systemctl)\" ]] && systemctl is-system-running || true'"
},
"template": "{{ if not (contains \"running\" .Output) }} {{ .Output }} {{ end }}"
},