mirror of
https://github.com/TECHNOFAB11/tmux2k.git
synced 2025-12-12 16:10:07 +01:00
18 lines
326 B
Bash
Executable file
18 lines
326 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
current_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$current_dir"/utils.sh
|
|
|
|
start_icon=$(get_tmux_option "@tmux2k-start-icon" "session")
|
|
|
|
main() {
|
|
current=""
|
|
case $start_icon in
|
|
session) current=" #S" ;;
|
|
window) current=" #W" ;;
|
|
esac
|
|
|
|
echo "$current"
|
|
}
|
|
|
|
main
|