9 lines
329 B
Bash
9 lines
329 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
zenity --list \
|
||
|
--title="Choose the Bugs You Wish to View" \
|
||
|
--column="Bug Number" --column="Severity" --column="Description" \
|
||
|
992383 Normal "GtkTreeView crashes on multiple selections" \
|
||
|
293823 High "GNOME Dictionary does not handle proxy" \
|
||
|
393823 Critical "Menu editing does not work in GNOME 2.0"
|