pika-drivers/data/modify-driver.sh

9 lines
245 B
Bash
Raw Normal View History

2023-06-29 22:18:36 +02:00
#! /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