mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
11 lines
158 B
Bash
11 lines
158 B
Bash
#! /bin/bash
|
|
|
|
status=$(gamemoded -s)
|
|
if [ "$status" == "gamemode is inactive" ]; then
|
|
color="#a6e22e"
|
|
else
|
|
color="#f92672"
|
|
fi
|
|
|
|
echo "<fc=$color> </fc>"
|