美文网首页
Linux 各种小技巧

Linux 各种小技巧

作者: 空中指南 | 来源:发表于2017-02-20 14:00 被阅读0次

    菜单中没有新程序?

    以shotcut程序为例:

    1. 画png图标,放到

    ~/local/share/icons/hicolor/16x16/shortcut.png

    1. 建立快捷方式

    ~$ lxshortcut -o ~/abc.desktopsudo lxshortcut -o /usr/share/applications/abc.desktop

    注意路径不完整有时会出错,可能是个bug。

    1. 编辑快捷方式,加上

    Categories=Graphics
    Icon=shotcut

    鼠标滚轮转换成键盘按键

    用 Linguist 进行 QT 软件翻译时,如果使用字典翻译,需要不停的双击鼠标和按 Ctrl + Enter 键。如果将这两个动作绑定到鼠标滚轮上,则翻译会快很多。

    1. sudo apt install imwheel
    2. vim ~/.imwheelrc
    3. 加入
    "^linguist$"
    None,      Up,   Button1, 2
    None,      Down, Control_L|Return
    

    相关文章

      网友评论

          本文标题:Linux 各种小技巧

          本文链接:https://www.haomeiwen.com/subject/nwglwttx.html