summarylogtreecommitdiffstats
path: root/dmde-start.sh
blob: aa0cae5702d7aa006ff38238026ea33500ab1567 (plain)
1
2
3
4
5
6
7
#!/bin/bash
user_input=$(zenity --entry "Root PASS" --title "Input passwords" --text "Please, input the root passwords!" --entry-text "" --hide-text --width 300 --height 100)
if [ $? = 0 ]; then
	printf "%s\n" "${user_input}" | sudo --stdin /usr/share/dmde-linux/dmde
fi
clear
exit 0