我可以从启动器启动具有特定良好值的应用程序吗?

我可以从启动器启动具有特定良好值的应用程序吗?

有没有办法让程序(例如 Firefox)执行好的从启动器 (“nice firefox”) 中编辑命令?在其他地方看到一 (1) 个帖子说您可以右键单击启动图标并选择“编辑命令”,但我的似乎没有该选项。(Ubuntu 14.04 LTS)

答案1

我认为最好的方法是向 Firefox 启动器添加右键单击(快速列表)条目。有几个选项:

1. 手动

  1. 将 Firefox 启动器从/usr/share/applications复制到~/.local/share/applications

    cp /usr/share/applications/firefox.desktop ~/.local/share/applications
    
  2. 使用(例如)gedit 打开文件,查找以以下内容开头的行:

    Actions=
    

    将“Nice Firefox”添加到以下行:

    Actions=NewWindow;Nice firefox;
    

    在文件的最底部添加一个部分:

    [Desktop Action Nice firefox]
    Name=Nice firefox
    Exec=nice -10 firefox
    
  3. 现在保存文件,注销并重新登录。出现一个新条目:

    在此处输入图片描述

2. 使用 GUI 快速列表编辑器

...喜欢这个

在此处输入图片描述

安装后,打开编辑器,从列表中选择 Firefox 启动器(无需说它需要锁定到启动器),然后单击大+添加您的条目​​。

安装:

sudo add-apt-repository ppa:vlijm/qle
sudo apt-get update
sudo apt-get install qle

相关内容