Pular para o conteúdo principal

Postagens

Mostrando postagens de novembro, 2018

Window list in Fluxbox

One of the best features on openbox comes "hidden" in Fluxbox. To use it, put a line in your "keys" (/home/"user"/.fluxbox/keys) file like that: Mod4 Escape    :ClientMenu In my case, when I click windows button+escape I get: That's it!

Creating a Custom Shutdown Menu in Fluxbox

This is easy. Just edit fluxbox "keys" inserting a line like that: Mod4 x  :CustomMenu "path-to-menu" Of course the menu you're pointing at must exist in ~/.fluxbox. In my case, I've done that: $ touch /home/pibarnas/.fluxbox/sair $   echo "[begin] (Sair) \n \t [exit] (Sair) {Exit} \n \t [exec] (Desligar) {/sbin/shutdown -h now} \n \t [exec] (Reiniciar) {/sbin/shutdown -r now} \n [end]" > /home/pibarnas/.fluxbox/sair $ cat /home/pibarnas/.fluxbox/sair [begin] (Sair)          [exit] (Sair) {Exit}          [exec] (Desligar) {/sbin/shutdown -h now}          [exec] (Reiniciar) {/sbin/shutdown -r now}  [end] My ~/.fluxbox/keys related line:  Mod4 x  :CustomMenu /home/pibarnas/.fluxbox/sair Now when I click windows button+x this menu appear: You can make custom menus other than the default one as you wish. Hope y...