commit 30669a595d9e04f295e6ae9882b545957c26ca0a
parent a14e1f133f34cf23c3bf0954968cefead5e0e29f
Author: Byron Torres <b@torresjrjr>
Date: Thu, 18 Feb 2021 04:17:03 +0000
Merge branch 'master' of git.sr.ht:~torresjrjr/fetch
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/fetch b/fetch
@@ -46,7 +46,7 @@ status() {
## Statuslines
_title() {
- printf "$1" "$(whoami)" "$(hostname)" "$(date -R)"
+ printf "$1" "$(whoami)" "$(uname -n)" "$(date -R)"
}
_os() {
printf "$1" "$(uname -o)"
@@ -55,14 +55,14 @@ _kernel() {
printf "$1" "$(uname -sr)"
}
_shell() {
- printf "$1" "$(< /proc/$(< /proc/$$/ppid)/exename)"
+ printf "$1" "$($(readlink /proc/$PPID/exe) --version | head -1)"
}
_sshd() {
sshd_pids=$(ps | awk 'BEGIN{ORS=" "}; /sshd/{print $1}')
printf "$1" "${sshd_pids:---}"
}
_tmux() {
- ps | grep -q tmux && tmux_sessions=$(
+ ps a | grep -q tmux && tmux_sessions=$(
tmux ls \
| sed \
-e 's/(created[^)]*)//' -e 's/(attached)/@/' \