Add install script
Add Minibook configuration Re-Add scripts
This commit is contained in:
parent
d24cc31b04
commit
c1914511ee
7 changed files with 53 additions and 3 deletions
27
install.sh
Executable file
27
install.sh
Executable file
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
echo "Add tablet group..."
|
||||
/usr/sbin/groupadd tablet
|
||||
|
||||
read -p "Enter your local username: " user
|
||||
|
||||
echo "Add user to group..."
|
||||
usermod -a -G tablet "$user"
|
||||
|
||||
echo "Copy files..."
|
||||
cp -r tabletmode/ /usr/local/lib/python3.11/dist-packages
|
||||
cp tablet-mode.service /etc/systemd/system
|
||||
cp laptop-mode.service /etc/systemd/system
|
||||
cp tablet-mode.json /etc/
|
||||
cp tablet-mode.desktop /home/"$user"/.local/applications
|
||||
cp tablet-mode.sudoers /etc/sudoers.d/tablet-mode
|
||||
cp setsysmode /usr/local/bin
|
||||
chmod +x /usr/local/bin/setsysmode
|
||||
cp sysmoded /usr/local/bin
|
||||
chmod +x /usr/local/bin/sysmoded
|
||||
|
||||
echo "Reload systemd..."
|
||||
systemctl daemon-reload
|
||||
|
||||
echo "Install packages..."
|
||||
apt install evtest -y
|
Loading…
Add table
Add a link
Reference in a new issue