add driver modifier

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2023-06-29 23:18:36 +03:00
parent 2af456f72d
commit 99b09e5903

8
data/modify-driver.sh Executable file
View File

@ -0,0 +1,8 @@
#! /bin/bash
if dpkg -s "$1"
then
pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY bash -c "apt remove $1 -y && sudo apt autoremove -y"
else
pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY bash -c "apt update -y && apt install $1 -y"
fi