Como executar um script por tecla de atalho em elementaryOS?

2

Eu quero ser capaz de executar certos scripts por atalho da maneira que eu faço no Ubuntu - por exemplo, alguns semelhantes a este script incrível . (Nesse modelo eu posso pesquisar no google o texto selecionado em qualquer editor de texto, ou até traduzi-lo em vários idiomas, pesquisá-lo em sites diferentes, etc.).

Como usar esse tipo de script no elementaryOS?

    
por cipricus 11.10.2013 / 15:00

2 respostas

1

Parece que os ajustes elementares não têm mais ligações de teclas no Freya elementar. Mas, felizmente, há um modo de ligar as chaves em Freya também. Você pode usar o programa chamado xbindkeys. Detalhes sobre como configurá-lo e usá-lo, você pode encontrar aqui .

trecho

We only need xbindkeys, a simple yet powerful command line tool to bind commands to a certain key or keys combinations. The program can be installed via terminal typing:

   $ sudo apt-get install xbindkeys

After the installation, if you try to run the application, you will be warmed to create a configuration file. As user, type:

   $ touch ~/.xbindkeysrc

or, alternatively:

   $ xbindkeys --defaults > ~/.xbindkeysrc

Then edit the file:

   $ nano ~/.xbindkeysrc

And type, before the end section:

   "slingshot-launcher"
   Super_L

so it will look like this:

   xbindkeys

Then press CTRL+X to save and exit.

Of course, xbindkeys can be used to bind also different commands to different keys. The values are written as:

   "command"
   state (0x8) and keycode (32)
   keysyms associated with the given keycodes

To find the last two values (which, as we’ve seen, can be used indifferently), type

   $ xbindkeys -k

then, in the blank window that’ll be open, type the key or the desired keys combination. The result will appear in the terminal.

    
por 22.04.2015 / 21:57
1

Trabalhou em Luna, não disponível mais em Freya!

sudo apt-add-repository ppa:versable/elementary-update
sudo apt-get update
sudo apt-get install elementary-tweaks

Nas configurações do sistema - > Ajustes - > Atalhos

'+' para adicionar nova tecla de atalho

use um comando como sh /path/to/script

Para executar o script, xclip é necessário.

sudo apt-get install xclip    
    
por 11.10.2013 / 15:06