Linux
如何為 urxvt 設置背景圖片?
如何在 urxvt 中設置平鋪背景圖像?我在我的
.Xresources
文件中嘗試了以下替代方案:URxvt*backgroundPixmap: /home/jgg/Pictures/tiles/escheresque_ste.png;style=tiled URxvt.backgroundPixmap: /home/jgg/Pictures/tiles/escheresque_ste.xpm URxvt.backgroundPixmap: /home/jgg/Pictures/tiles/escheresque_ste.png;+0+0:tile -tr
我還跑來
xrdb -merge ~/.Xresources
確保每次都更新配置。我錯過了什麼?有我需要安裝的庫嗎?
我在 Debian 7.4 (Wheezy) 系統上執行 rxvt-unicode (urxvt) v9.15。
使用該
-pixmap
選項設置 RXVT 的背景圖像。例如,我有一組小.png
瓷磚,我使用以下單線隨機挑選:urxvt -pixmap "`find /path/to/tiles/ -name '*.png' | sort -R | head -n 1`;style=tiled"
您可以輕鬆地將上述內容轉換為別名或腳本。