summaryrefslogtreecommitdiff
path: root/oxwm
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2026-06-21 19:01:25 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2026-06-21 19:07:53 +0100
commitaebda32c2a09fcbdc1e645f55a0c6de3b9a2cfaf (patch)
treebac91eea7c658a6836f5486da562e258e9a8aba0 /oxwm
parentb2e8d5fc138d1ee9bb0eb0e4e3bf524a45d9fe25 (diff)
Add bookmark management scripts
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")