Different ways to display a dialog box or a status message in Ubuntu.
1. notify-send -i /home/user/Desktop/notifications.ico "MsgSummary" "This is message body !!!"
2.
gxmessage "This is message body"
gxmessage -file message.txt
gxmessage -center -timeout 3 -fg RED -file message.sh
3.
whiptail --msgbox "This is the message" 10 50
whiptail --yesno "Press wither yes or no" 10 50
4.
dialog --msgbox "This is the message" 10 50
5.
zenity --info --text="Here is the message body"
zenity --calendar
zenity --color-selection
zenity --password
Please see user manual of each command for more detailed information.
You can find more ways. Please comment if more options are there to display a message.
-Thanks
1. notify-send -i /home/user/Desktop/notifications.ico "MsgSummary" "This is message body !!!"
2.
gxmessage "This is message body"
gxmessage -file message.txt
gxmessage -center -timeout 3 -fg RED -file message.sh
3.
whiptail --msgbox "This is the message" 10 50
whiptail --yesno "Press wither yes or no" 10 50
4.
dialog --msgbox "This is the message" 10 50
5.
zenity --info --text="Here is the message body"
zenity --calendar
zenity --color-selection
zenity --password
Please see user manual of each command for more detailed information.
You can find more ways. Please comment if more options are there to display a message.
-Thanks
No comments:
Post a Comment