diff options
Diffstat (limited to 'config/i3blocks/scripts/bbswitch')
-rwxr-xr-x | config/i3blocks/scripts/bbswitch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/i3blocks/scripts/bbswitch b/config/i3blocks/scripts/bbswitch new file mode 100755 index 0000000..a6ad24c --- /dev/null +++ b/config/i3blocks/scripts/bbswitch @@ -0,0 +1,9 @@ +#!/bin/bash + +if [ -e /proc/acpi/bbswitch ]; then + if [ -n "`cat /proc/acpi/bbswitch | grep ON`" ]; then + echo OPTIMUS + echo OP + echo '#ffff00' + fi +fi |