This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
KMAJ="$(uname -r | cut -d. -f1)" | |
KMIN="$(uname -r | cut -d. -f2)" | |
if [ "${KMAJ}" != "4" ]; then | |
echo "This script has to be run on a 4.x kernel." 1>&2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Name=Chromium Web Browser viewing BONE101 | |
Exec=/home/debian/bone101.sh | |
Terminal=false | |
Type=Application |