Convert all exo-open commands to use al helper scripts
This commit is contained in:
parent
089169fb3d
commit
50d092c808
@ -1,21 +1,23 @@
|
|||||||
# web browser
|
# web browser
|
||||||
super + w
|
super + w
|
||||||
exo-open --launch WebBrowser
|
al-browser
|
||||||
|
|
||||||
# terminal emulator
|
# terminal emulator
|
||||||
super + Return
|
super + Return
|
||||||
exo-open --launch TerminalEmulator
|
al-terminal
|
||||||
|
super + t
|
||||||
|
al-terminal
|
||||||
|
alt + shift + Return
|
||||||
|
al-terminal
|
||||||
|
|
||||||
# file manager
|
# file manager
|
||||||
super + f
|
super + f
|
||||||
exo-open --launch FileManager
|
al-filemanager
|
||||||
|
|
||||||
# program launcher
|
# program launcher
|
||||||
super + @space
|
super + @space
|
||||||
rofi_run -r
|
rofi_run -r
|
||||||
|
alt + p
|
||||||
# program launcher
|
|
||||||
alt + F1
|
|
||||||
rofi_run -r
|
rofi_run -r
|
||||||
|
|
||||||
# make sxhkd reload its configuration files:
|
# make sxhkd reload its configuration files:
|
||||||
|
@ -3,11 +3,11 @@
|
|||||||
|
|
||||||
# terminal emulator
|
# terminal emulator
|
||||||
super + Return
|
super + Return
|
||||||
exo-open --launch TerminalEmulator
|
al-terminal
|
||||||
alt + shift + Return
|
alt + shift + Return
|
||||||
exo-open --launch TerminalEmulator
|
al-terminal
|
||||||
super + t
|
super + t
|
||||||
exo-open --launch TerminalEmulator
|
al-terminal
|
||||||
|
|
||||||
# program launcher
|
# program launcher
|
||||||
alt + p
|
alt + p
|
||||||
|
@ -128,7 +128,8 @@ Control Mod4 F11 :TakeToWorkspace 11
|
|||||||
Control Mod4 F12 :TakeToWorkspace 12
|
Control Mod4 F12 :TakeToWorkspace 12
|
||||||
|
|
||||||
# open a terminal
|
# open a terminal
|
||||||
Mod4 t :Exec exo-open --launch TerminalEmulator
|
Mod4 t :Exec al-terminal
|
||||||
|
Shift Enter p :Exec al-terminal
|
||||||
|
|
||||||
# open a dialog to run programs
|
# open a dialog to run programs
|
||||||
Mod1 F2 :Exec fbrun
|
Mod1 F2 :Exec fbrun
|
||||||
@ -148,9 +149,8 @@ XF86AudioNext :Exec playerctl next
|
|||||||
XF86MonBrightnessUp :Exec xbacklight +10
|
XF86MonBrightnessUp :Exec xbacklight +10
|
||||||
XF86MonBrightnessDown :Exec xbacklight -10
|
XF86MonBrightnessDown :Exec xbacklight -10
|
||||||
|
|
||||||
Mod4 w :Exec exo-open --launch WebBrowser
|
Mod4 w :Exec al-browser
|
||||||
Mod4 f :Exec exo-open --launch FileManager
|
Mod4 f :Exec al-filemanager
|
||||||
Mod4 e :Exec geany
|
|
||||||
|
|
||||||
Mod4 Print :Exec scrot -q 100 '%B_%s_$wx$h.png' -e 'mv $f ~/Pictures/'
|
Mod4 Print :Exec scrot -q 100 '%B_%s_$wx$h.png' -e 'mv $f ~/Pictures/'
|
||||||
|
|
||||||
|
@ -16,13 +16,11 @@
|
|||||||
# session.menuFile: ~/.fluxbox/my-menu
|
# session.menuFile: ~/.fluxbox/my-menu
|
||||||
[begin] (Fluxbox-1.3.7)
|
[begin] (Fluxbox-1.3.7)
|
||||||
[encoding] {UTF-8}
|
[encoding] {UTF-8}
|
||||||
[exec] (Run) {rofi -show run}
|
[exec] (Run) {rofi_run}
|
||||||
[separator]
|
[separator]
|
||||||
[exec] (Terminal) {exo-open --launch TerminalEmulator}
|
[exec] (Terminal) {al-terminal}
|
||||||
[exec] (File Manager) {exo-open --launch FileManager}
|
[exec] (File Manager) {al-filemanager}
|
||||||
[separator]
|
[exec] (Browser) {al-browser}
|
||||||
[exec] (Browser) {exo-open --launch WebBrowser}
|
|
||||||
[exec] (Mail) {exo-open --launch MailReader}
|
|
||||||
[separator]
|
[separator]
|
||||||
[submenu] (Settings)
|
[submenu] (Settings)
|
||||||
[exec] (Wallpaper) {nitrogen}
|
[exec] (Wallpaper) {nitrogen}
|
||||||
|
@ -46,12 +46,12 @@ bindsym Mod1+q kill
|
|||||||
bindsym Mod1+F4 kill
|
bindsym Mod1+F4 kill
|
||||||
|
|
||||||
# core
|
# core
|
||||||
bindsym $Mod+w exec --no-startup-id exo-open --launch WebBrowser
|
bindsym $Mod+w exec --no-startup-id al-browser
|
||||||
bindsym $Mod+f exec --no-startup-id exo-open --launch FileManager
|
bindsym $Mod+f exec --no-startup-id al-filemanager
|
||||||
bindsym $Mod+t exec --no-startup-id exo-open --launch TerminalEmulator
|
bindsym $Mod+t exec --no-startup-id al-terminal
|
||||||
bindsym $Mod+Return exec --no-startup-id exo-open --launch TerminalEmulator
|
bindsym $Mod+Return exec --no-startup-id al-terminal
|
||||||
bindsym Mod1+Shift+Return exec --no-startup-id exo-open --launch TerminalEmulator
|
bindsym Mod1+Shift+Return exec --no-startup-id al-terminal
|
||||||
bindsym Control+Shift+t exec --no-startup-id exo-open --launch TerminalEmulator
|
bindsym Control+Shift+t exec --no-startup-id al-terminal
|
||||||
|
|
||||||
# logout script
|
# logout script
|
||||||
bindsym $Mod+x exec --no-startup-id rofi_run -l
|
bindsym $Mod+x exec --no-startup-id rofi_run -l
|
||||||
|
@ -4,17 +4,17 @@
|
|||||||
<separator label="ArchLabs"/>
|
<separator label="ArchLabs"/>
|
||||||
<item label="Terminal">
|
<item label="Terminal">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch TerminalEmulator</command>
|
<command>al-terminal</command>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
<item label="Web Browser">
|
<item label="Web Browser">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch WebBrowser</command>
|
<command>al-browser</command>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
<item label="File Manager">
|
<item label="File Manager">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch FileManager</command>
|
<command>al-filemanager</command>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
<separator/>
|
<separator/>
|
||||||
@ -53,17 +53,17 @@
|
|||||||
<separator/>
|
<separator/>
|
||||||
<item label="Edit menu.xml">
|
<item label="Edit menu.xml">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open ~/.config/openbox/menu.xml</command>
|
<command>xdg-open ~/.config/openbox/menu.xml</command>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
<item label="Edit rc.xml">
|
<item label="Edit rc.xml">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open ~/.config/openbox/rc.xml</command>
|
<command>xdg-open ~/.config/openbox/rc.xml</command>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
<item label="Edit autostart">
|
<item label="Edit autostart">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open ~/.config/openbox/autostart</command>
|
<command>xdg-open ~/.config/openbox/autostart</command>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
<separator/>
|
<separator/>
|
||||||
|
@ -249,27 +249,27 @@
|
|||||||
</keybind>
|
</keybind>
|
||||||
<keybind key="W-f">
|
<keybind key="W-f">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch FileManager</command>
|
<command>al-filemanager</command>
|
||||||
</action>
|
</action>
|
||||||
</keybind>
|
</keybind>
|
||||||
<keybind key="W-t">
|
<keybind key="W-t">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch TerminalEmulator</command>
|
<command>al-terminal</command>
|
||||||
</action>
|
</action>
|
||||||
</keybind>
|
</keybind>
|
||||||
<keybind key="C-A-t">
|
<keybind key="C-A-t">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch TerminalEmulator</command>
|
<command>al-terminal</command>
|
||||||
</action>
|
</action>
|
||||||
</keybind>
|
</keybind>
|
||||||
<keybind key="W-Return">
|
<keybind key="W-Return">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch TerminalEmulator</command>
|
<command>al-terminal</command>
|
||||||
</action>
|
</action>
|
||||||
</keybind>
|
</keybind>
|
||||||
<keybind key="W-w">
|
<keybind key="W-w">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<command>exo-open --launch WebBrowser</command>
|
<command>al-browser</command>
|
||||||
</action>
|
</action>
|
||||||
</keybind>
|
</keybind>
|
||||||
<keybind key="W-v">
|
<keybind key="W-v">
|
||||||
|
Reference in New Issue
Block a user