summaryrefslogtreecommitdiff
path: root/oxwm
diff options
context:
space:
mode:
Diffstat (limited to 'oxwm')
-rw-r--r--oxwm/.config/oxwm/config.lua16
1 files changed, 13 insertions, 3 deletions
diff --git a/oxwm/.config/oxwm/config.lua b/oxwm/.config/oxwm/config.lua
index d899890..80b6d27 100644
--- a/oxwm/.config/oxwm/config.lua
+++ b/oxwm/.config/oxwm/config.lua
@@ -275,8 +275,18 @@ oxwm.key.bind({ modkey, "Control", "Shift" }, "9", oxwm.tag.toggletag(8))
-- Example: Press Mod4+Space, then release and press T to spawn a terminal without auto starting anything.
oxwm.key.chord({
{ { modkey }, "Space" },
- { {}, "T" }
-}, oxwm.spawn({ "alacritty", "-e", "bash" }))
+ { {}, "B" }
+}, oxwm.spawn({ "firefox" }))
+
+oxwm.key.chord({
+ { { modkey }, "b" },
+ { {}, "a" }
+}, oxwm.spawn({ "add-bookmark.sh" }))
+
+oxwm.key.chord({
+ { { modkey }, "b" },
+ { {}, "o" }
+}, oxwm.spawn({ "open-bookmark.sh" }))
-------------------------------------------------------------------------------
-- Autostart
@@ -286,7 +296,7 @@ oxwm.key.chord({
-- Keycode 108 was found using the exv command and pressing the AltGr key in the popup window.
oxwm.autostart("xmodmap -e 'keycode 108 = Super_R' -e 'add mod4 = Super_R'")
+oxwm.autostart("dunst")
-- oxwm.autostart("picom")
-- oxwm.autostart("feh --bg-scale ~/wallpaper.jpg")
--- oxwm.autostart("dunst")
-- oxwm.autostart("nm-applet")