You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
250 B
8 lines
250 B
5 years ago
|
#!/bin/bash
|
||
|
# script for displaying reboot status in tmux status line
|
||
|
|
||
5 years ago
|
source "$( dirname "$(realpath -e "${BASH_SOURCE[0]}")" )"/.tmux.status-helpers.sh
|
||
|
if needs_reboot; then
|
||
|
echo "#[bg=colour$(get_bgcolor_gradient_red_to_cyan 0 100)][REBOOT]"
|
||
5 years ago
|
fi
|