Page 1 of 1

图形终端的字体太小了。

Posted: 2025-02-18 3:29
by SeanFung
您好,把Omni3576接到了16寸的2.5k屏幕上,debian上的图形Terminal的字体太小了,而且不支持使用Ctrl + Shift + +进行调整,请问如何将字体调大?

Re: 图形终端的字体太小了。

Posted: 2025-02-18 6:50
by Luckfox Taylor
  • 在桌面上创建一个新的快捷方式文件:

    Code: Select all

    cd ~/Desktop
  • 创建一个新的 .desktop 文件:

    Code: Select all

    vim XTerm.desktop

    Code: Select all

    [Desktop Entry]
    Version=1.0
    Name=XTerm
    Comment=Open XTerm with Monospace font and size 18
    Exec=xterm -fa 'Monospace' -fs 18
    Icon=utilities-terminal
    Terminal=false
    Type=Application
    Categories=Utility;TerminalEmulator;
    
  • chmod +x XTerm.desktop
按照上述操作就可以在桌面看到新生成了一个快捷方式,直接点击打开。字体大小调整核心命令:

Code: Select all

xterm -fa 'Monospace' -fs 18

Re: 图形终端的字体太小了。

Posted: 2025-02-20 8:58
by Luckfox Taylor
你也可以安装新的终端:

Code: Select all

sudo apt install xfce4-terminal

Re: 图形终端的字体太小了。

Posted: 2025-02-20 12:27
by SeanFung
可以了,谢谢。