From 99470bda884aa47b7660576396bb912bf3ecf7aa Mon Sep 17 00:00:00 2001 From: "Christopher R. Nelson" Date: Sat, 2 Sep 2023 15:39:58 -0400 Subject: add move configs --- .config/openbox/menu.xml | 39 +++ .config/openbox/rc.xml | 807 +++++++++++++++++++++++++++++++++++++++++++ .config/openbox/todoman.sh | 26 ++ .config/openbox/wallpaper.sh | 11 + 4 files changed, 883 insertions(+) create mode 100644 .config/openbox/menu.xml create mode 100644 .config/openbox/rc.xml create mode 100755 .config/openbox/todoman.sh create mode 100755 .config/openbox/wallpaper.sh (limited to '.config/openbox') diff --git a/.config/openbox/menu.xml b/.config/openbox/menu.xml new file mode 100644 index 0000000..eeb959e --- /dev/null +++ b/.config/openbox/menu.xml @@ -0,0 +1,39 @@ + + + + + + + x-terminal-emulator + + + x-www-browser + + + + + + + + + + + + obconf-qt + + + + + + + + + + + + + + diff --git a/.config/openbox/rc.xml b/.config/openbox/rc.xml new file mode 100644 index 0000000..70a5b5f --- /dev/null +++ b/.config/openbox/rc.xml @@ -0,0 +1,807 @@ + + + + + 10 + 20 + + + yes + + yes + + yes + + no + + 80 + + yes + + + + Smart + +
yes
+ + Primary + + 1 + +
+ + Natura + NLIMC + + yes + yes + + Sans Serif + 10 + + Normal + + Normal + + + + Sans Serif + 10 + + Normal + + Normal + + + + Sans Serif + 11 + + Normal + + Normal + + + + Sans Serif + 11 + + Normal + + Normal + + + + Sans Serif + 11 + + Normal + + Normal + + + + Sans Serif + 11 + + Normal + + Normal + + + + + + 4 + 1 + + + + 875 + + + + yes + Nonpixel + + Center + + + + 10 + + 10 + + + + + + 0 + 0 + 0 + 0 + + + BottomRight + + 0 + 0 + no + Above + + Horizontal + + no + 300 + + 300 + + Middle + + + + C-g + + + + left + no + + + + + right + no + + + + + up + no + + + + + down + no + + + + + left + no + + + + + right + no + + + + + up + no + + + + + down + no + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + + + + + + + + + + + + + client-menu + + + + + + scrot -s + + + + + + + + + + + + + + + + + + + + + + + + yes + yes + + + + + + + + + + + right + + + + + left + + + + + up + + + + + down + + + + + + + true + x-terminal-emulator + + x-terminal-emulator + + + + + + true + Konqueror + + kfmclient openProfile filemanagement + + + + + + scrot + + + + + 1 + + 500 + + 400 + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + + + + + no + + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + top + + + + + + + left + + + + + + + right + + + + + + + bottom + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vertical + + + + + horizontal + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + + + + + + + + client-list-combined-menu + + + + + root-menu + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + /var/lib/openbox/debian-menu.xml + menu.xml + 200 + + no + + 100 + + 400 + + yes + + yes + + + + + +
diff --git a/.config/openbox/todoman.sh b/.config/openbox/todoman.sh new file mode 100755 index 0000000..636c97c --- /dev/null +++ b/.config/openbox/todoman.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +echo "" +echo "" +echo "x-terminal-emulator -e todoman new $id" +echo "" +echo "" + +tasks=$(todoman --porcelain | jq ".[]" -c) +while read -r task; do + summary=$(echo $task | jq ".summary" -r) + description=$(echo $task | jq ".description" -r) + id=$(echo $task | jq ".id" -r) + echo "" + echo "" + echo "" + echo "" + echo "x-terminal-emulator -e todoman edit $id" + echo "" + echo "" + echo "todoman done $id" + echo "" + echo "" +done <<< $tasks + +echo "" diff --git a/.config/openbox/wallpaper.sh b/.config/openbox/wallpaper.sh new file mode 100755 index 0000000..b9535c6 --- /dev/null +++ b/.config/openbox/wallpaper.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +echo "" +for i in $HOME/.wallpapers/*; do + BASE="$(basename "$i")" + NAME_ONLY="${BASE%.*}" + echo "" + echo "feh --bg-scale $HOME/.wallpapers/$BASE" + echo "" +done +echo "" -- cgit v1.2.3