8 lines
170 B
Bash
Executable File
8 lines
170 B
Bash
Executable File
#! /bin/bash
|
|
if echo $XDG_SESSION_DESKTOP | grep -i ubuntu
|
|
then
|
|
python3 /usr/lib/pika/gnome-layouts/main.py
|
|
else
|
|
zenity --error --text="current session isn't gnome"
|
|
fi
|