我想在 Ubuntu 的终端显示一个消息框,我有 GNOME 3 桌面环境。
我该如何继续?
答案1
使用zenity
:
sudo lsof | tee >(zenity --progress --pulsate) > out
zenity --question --text "Are you sure you want to shutdown?"; echo $?
zenity --warning --text "This will kill, are you sure?";echo $?
ans=$(zenity --scale --text "pick a number" --min-value=2 --max-value=100 --value=2 --step 2); echo "$ans"
sudo lsof | zenity --text-info --width 530
使用yad
安装yad
sudo apt-add repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install yad
创建示例脚本example
并添加以下行
#!/bin/bash
frmdata=$(yad --title "Test Form" --form --field "Address" --field="Name")
frmaddr=$(echo "$frmdata" | awk 'BEGIN {FS="|" } { print $1 }')
frmname=$(echo "$frmdata" | awk 'BEGIN {FS="|" } { print $2 }')
echo "$frmaddr"
echo "$frmname"
或者更复杂一点:
yad --width=400 --title="" --text="Please enter your details:" \
--image="/usr/share/icons/Tango/scalable/emotes/face-smile.svg" \
--form --date-format="%-d %B %Y" --item-separator="," \
--field="Last name" \
--field="First name" \
--field="Date of birth":DT \
--field="Last holiday":CBE \
"" "" "Click calendar icon" "Gold Coast, Bali,Phuket, Sydney, other"
使用notify-send
notify-send "Hello" "Hello world"
使用dialog
dialog --msgbox "Hello world" 10 30
使用whiptail
whiptail --msgbox "Hello world" 10 30