Minor edits.

This commit is contained in:
Derek Taylor
2020-11-27 19:21:21 -06:00
parent 8b1a8cfbfd
commit 248ac6186c
5 changed files with 47 additions and 27 deletions

View File

@@ -570,8 +570,8 @@ key_bindings:
- { key: Insert, mods: Shift, action: PasteSelection } - { key: Insert, mods: Shift, action: PasteSelection }
- { key: Key0, mods: Control, action: ResetFontSize } - { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize }
- { key: Add, mods: Control, action: IncreaseFontSize } - { key: Plus, mods: Control, action: IncreaseFontSize }
- { key: Subtract, mods: Control, action: DecreaseFontSize } - { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize } - { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: Paste, action: Paste } - { key: Paste, action: Paste }

View File

@@ -68,9 +68,9 @@
</command> </command>
</action> </action>
</item> </item>
<item label="Leafpad"> <item label="Notepadqq">
<action name="Execute"> <action name="Execute">
<execute>leafpad</execute> <execute>notepadqq</execute>
</action> </action>
</item> </item>
<item label="ProRealTime"> <item label="ProRealTime">
@@ -207,6 +207,11 @@
</item> </item>
</menu> </menu>
<menu id="root-menu-273054" label="Internet"> <menu id="root-menu-273054" label="Internet">
<item label="Brave">
<action name="Execute">
<execute>brave</execute>
</action>
</item>
<item label="Canto RSS Reader"> <item label="Canto RSS Reader">
<action name="Execute"> <action name="Execute">
<execute>termite -e 'canto-curses' -t 'Canto RSS Reader' </execute> <execute>termite -e 'canto-curses' -t 'Canto RSS Reader' </execute>
@@ -236,9 +241,7 @@
</item> </item>
<item label="Firefox"> <item label="Firefox">
<action name="Execute"> <action name="Execute">
<execute> <execute>firefox https://mozilla.org</execute>
firefox
</execute>
</action> </action>
</item> </item>
<item label="Irssi IRC"> <item label="Irssi IRC">
@@ -246,6 +249,11 @@
<execute>termite -e 'irssi' -t 'irssi'</execute> <execute>termite -e 'irssi' -t 'irssi'</execute>
</action> </action>
</item> </item>
<item label="Jitsi">
<action name="Execute">
<execute>/home/dt/Applications/jitsi-meet-x86_64.AppImage</execute>
</action>
</item>
<item label="Lynx"> <item label="Lynx">
<action name="Execute"> <action name="Execute">
<execute>termite -e 'lynx www.google.com' -t 'lynx web browser'</execute> <execute>termite -e 'lynx www.google.com' -t 'lynx web browser'</execute>
@@ -510,6 +518,11 @@
</action> </action>
</item> </item>
</menu> </menu>
<item label="App Outlet">
<action name="Execute">
<execute>/home/dt/Applications/App\ Outlet-1.3.2.AppImage</execute>
</action>
</item>
<item label="Network Connections"> <item label="Network Connections">
<action name="Execute"> <action name="Execute">
<command> <command>
@@ -553,6 +566,11 @@
<execute>termite -e 'ranger' -t 'ranger file manager'</execute> <execute>termite -e 'ranger' -t 'ranger file manager'</execute>
</action> </action>
</item> </item>
<item label="Snap Store">
<action name="Execute">
<execute>snap-store</execute>
</action>
</item>
<item label="Startup Disk Creator"> <item label="Startup Disk Creator">
<action name="Execute"> <action name="Execute">
<execute> <execute>

View File

@@ -34,7 +34,7 @@
<!-- with Smart placement on a multi-monitor system, try to place new windows <!-- with Smart placement on a multi-monitor system, try to place new windows
on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where
the active window is, 'Primary' - only on the primary monitor --> the active window is, 'Primary' - only on the primary monitor -->
<primaryMonitor>1</primaryMonitor> <primaryMonitor>2</primaryMonitor>
<!-- The monitor where Openbox should place popup dialogs such as the <!-- The monitor where Openbox should place popup dialogs such as the
focus cycling popup, or the desktop switch popup. It can be an index focus cycling popup, or the desktop switch popup. It can be an index
from 1, specifying a particular monitor. Or it can be one of the from 1, specifying a particular monitor. Or it can be one of the

View File

@@ -247,7 +247,8 @@
(dt/exwm-start-nm-applet) (dt/exwm-start-nm-applet)
(dt/exwm-start-volumeicon) (dt/exwm-start-volumeicon)
(setq display-time-day-and-date t (setq display-time-day-and-date t
display-time-format "%a %b %d, %Y (%H:%M)") display-time-format "%a %b %d, %Y (%H:%M)"
dmenu-prompt-string "RUN: ")
(display-time-mode 1)) (display-time-mode 1))
(setq doom-font (font-spec :family "SauceCodePro Nerd Font Mono" :size 15) (setq doom-font (font-spec :family "SauceCodePro Nerd Font Mono" :size 15)

View File

@@ -409,7 +409,8 @@ The programs I want to autostart when using EXWM. Note that I don't execute the
(dt/exwm-start-nm-applet) (dt/exwm-start-nm-applet)
(dt/exwm-start-volumeicon) (dt/exwm-start-volumeicon)
(setq display-time-day-and-date t (setq display-time-day-and-date t
display-time-format "%a %b %d, %Y (%H:%M)") display-time-format "%a %b %d, %Y (%H:%M)"
dmenu-prompt-string "RUN: ")
(display-time-mode 1)) (display-time-mode 1))
#+end_src #+end_src