mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 18:03:13 +00:00
8 lines
103 B
Bash
8 lines
103 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if grep -q ON /proc/acpi/bbswitch; then
|
||
|
echo "# Active"
|
||
|
else
|
||
|
echo "# Inactive"
|
||
|
fi
|