10 lines
294 B
Bash
Executable file
10 lines
294 B
Bash
Executable file
#! /bin/bash
|
|
|
|
if ( systemctl status tablet-mode.service ); then
|
|
sudo systemctl stop tablet-mode.service
|
|
notify-send "Laptop mode" "The system is now in laptop mode."
|
|
else
|
|
sudo systemctl start tablet-mode.service
|
|
notify-send "Tablet mode" "The system is now in tablet mode."
|
|
fi
|
|
|