2023-07-01 16:11:54 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
2023-08-14 14:47:31 +02:00
|
|
|
if echo $1 | grep -i mesa
|
2023-07-01 16:11:54 +02:00
|
|
|
then
|
2023-08-14 14:47:31 +02:00
|
|
|
true
|
|
|
|
else
|
|
|
|
if zenity --question --text ""$1" has been processed successfully. Would you like to reboot for changes to take effect?"
|
|
|
|
then
|
|
|
|
systemctl reboot
|
|
|
|
fi
|
2023-07-01 16:11:54 +02:00
|
|
|
fi
|