2012-12-04 63 views

回答

1

也許你必須指定較大的窗口:

dialog --yesno 'Hello, this is my first dialog program' 20 60 

你可以使用$COLUMN$LINES相應尺寸:

dialog --yesno 'Hello, this is my first dialog program' $((LINES-4)) $((COLUMNS-4)) 

,甚至捕獲窗口的大小調整的bash腳本:

trap 'COLUMNS=`tput cols` LINES=`tput lines`' WINCH 
+0

謝謝謝謝謝謝;-) – Charlie

+0

不客氣! – techno

相關問題