有没有办法拉伸我的 gnome 终端中选定的图像以适合当前窗口大小?
使用 gnome-session 3.2.1
答案1
我认为没有特定的选项可以根据窗口大小来调整图像。
gnome-terminal 支持修改背景的唯一选项如下:
$ gconftool-2 --recursive-list /apps/gnome-terminal/profiles/Default | grep background
scroll_background = false
background_darkness = 0.58315799999999995
background_image = /usr/share/backgrounds/Forever_by_Shady_S.jpg
background_color = #000000000000
background_type = image
当我设置时,/usr/share/backgrounds/Forever_by_Shady_S.jpg
我得到以下 gnome-terminal 窗口:
为了让背景图像自动调整大小/适应你的终端窗口大小,你可以尝试urxvt
:
sudo apt-get install rxvt-unicode
并按如下方式运行你的终端:
urxvt -pixmap /usr/share/backgrounds/Forever_by_Shady_S.jpg -fg white
当你调整窗口大小时,背景图像将自动调整大小: