X11
i3 xterm 菜單(ctrl+滑鼠)太小
我最近開始使用 i3 視窗管理器。我配置了 i3 和 xterm 以滿足我的需要,但是每當我啟動 xterm 並想要使用菜單 (
ctrl
+mouse_button
) 時,菜單就會顯示為一個沒有邊框和標題欄的小視窗。我無法使用菜單,因為選項不可見。黑色邊框是菜單周圍的邊框。如您所見,它顯示“VT” …
我怎樣才能解決這個問題?是 i3 還是 Xresources 的東西?
~/.Xdefaults
xterm*dynamicColors: true xterm*background: grey13 xterm*foreground: yellow xterm*utf8: 1 xterm*eightBitInput: true xterm*saveLines: 32767 xterm*scrollTtyKeypress: true xterm*scrollTtyOutput: false xterm*scrollBar: true xterm*loginShell: true xterm*font: 7x13 xterm*jumpScroll: true xterm*multiScroll: true xterm*toolBar: true xterm*geometry: 90x30 xterm*cursorBlink: true
問題是幾何的資源設置:
xterm*geometry: 90x30
這適用於 VT100 視窗和菜單——使用不同的測量單位。對於 VT100,它是字元,但對於菜單,它是像素。像素比(大多數)字元小很多。
你可能是這個意思:
xterm*VT100.geometry: 90x30
進一步閱讀:為什麼菜單很小?(xterm 常見問題解答)