diff --git a/oxwm/.config/oxwm/config.lua b/oxwm/.config/oxwm/config.lua index 7cf72e7..70a0706 100644 --- a/oxwm/.config/oxwm/config.lua +++ b/oxwm/.config/oxwm/config.lua @@ -62,6 +62,7 @@ oxwm.key.bind({ modkey }, "B", oxwm.spawn({ "librewolf" })) oxwm.key.bind({ modkey }, "D", oxwm.spawn({ "vesktop" })) oxwm.key.bind({ modkey }, "G", oxwm.spawn({ "steam" })) oxwm.key.bind({ modkey }, "M", oxwm.spawn({ "atlauncher" })) +oxwm.key.bind({ modkey }, "S", oxwm.spawn({ "sober" })) oxwm.key.bind({ modkey }, "Return", oxwm.spawn_terminal()) oxwm.key.bind({ modkey }, "Space", oxwm.spawn({ "sh", "-c", "dmenu_run -l 10" })) @@ -136,4 +137,10 @@ oxwm.key.bind({ modkey, "Control", "Shift" }, "9", oxwm.tag.toggletag(8)) -- }, oxwm.spawn_terminal()) oxwm.autostart("export _JAVA_AWT_WM_NONREPARENTING=1") -oxwm.autostart("xwallpaper --center $HOME/walals/never_falter.png") + +local walls = { + emacs = "emacsfield.png", + maxwell = "never_falter.png" +} + +oxwm.autostart("xwallpaper --stretch $HOME/walls/" .. walls.maxwell) diff --git a/walls/walls/emacsfield.png b/walls/walls/emacsfield.png new file mode 100644 index 0000000..62f822b Binary files /dev/null and b/walls/walls/emacsfield.png differ diff --git a/walls/walls/never_falter.png b/walls/walls/never_falter.png new file mode 100644 index 0000000..19f2089 Binary files /dev/null and b/walls/walls/never_falter.png differ