mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-06 01:19:23 +01:00
14 lines
382 B
Bash
14 lines
382 B
Bash
if ! hash lsb_release 2> /dev/null; then
|
|
ERRORMESSAGE="lsb_release was not found, the wallpaper scripts cannot figure out the distribution"
|
|
echo $ERRORMESSAGE
|
|
#notify-send $ERRORMESSAGE
|
|
exit 0
|
|
fi
|
|
|
|
export DISTROID=$(lsb_release -si)
|
|
export DISTROREL=$(lsb_release -sr)
|
|
|
|
export DARKMANGET=$(darkman get)
|
|
|
|
printf "Distribution: $DISTROID\nRelease: $DISTROREL\nMode: $DARKMANGET\n"
|