mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
11 lines
168 B
Bash
Executable File
11 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
ask() { \
|
|
case $(printf "Yes\\nNo" | dmenu -i -p "Are you sure?") in
|
|
Yes) sshpass -p 12345 ssh root@192.168.1.3 PowerOff;;
|
|
No) echo "!";;
|
|
esac
|
|
}
|
|
|
|
ask
|
|
|