9 lines
184 B
Bash
9 lines
184 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if zenity --entry \
|
||
|
--title="Add new profile" \
|
||
|
--text="Enter name of new profile:" \
|
||
|
--entry-text "NewProfile"
|
||
|
then echo "OK"
|
||
|
else echo "No name entered"
|
||
|
fi
|