如何在 Ubuntu 中从终端显示消息框

如何在 Ubuntu 中从终端显示消息框

我想在 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

在此处输入图片描述

相关内容