Skip to content
This repository was archived by the owner on Aug 30, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions install/check-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,11 @@ if [ "$ARCH" != "x86_64" ] && [ "$ARCH" != "i686" ]; then
echo "Installation stopped."
exit 1
fi

# Check if the current desktop environment is GNOME
if [[ ! "$XDG_CURRENT_DESKTOP" =~ "GNOME" ]]; then
echo "GNOME is NOT the current desktop environment!"
echo "A modified version without GNOME WILL NOT WORK!"
echo "Press Enter to continue anyway, or Ctrl+C to exit."
read -r _ </dev/tty
fi