dotfiles

My beautiful configs and dotfiles managed by Nix' home-manager
Log | Files | Refs | README | LICENSE

commit 1366e722a3dd15e35c344a64d1116accd4ad8ce9
parent 2cb210550b986bef898f4ba16fc607a0075dab97
Author: Friedel Schön <[email protected]>
Date:   Fri, 14 Jun 2024 15:23:09 +0200

add .xservice

Diffstat:
A.xservice/9wm/down | 0
A.xservice/9wm/log/run | 2++
A.xservice/9wm/run | 8++++++++
A.xservice/background/down | 0
A.xservice/background/log/run | 2++
A.xservice/background/run | 10++++++++++
A.xservice/blueman-applet/log/run | 2++
A.xservice/blueman-applet/run | 7+++++++
A.xservice/cron/crontab | 1+
A.xservice/cron/down | 0
A.xservice/cron/log.txt | 6++++++
A.xservice/cron/log/run | 2++
A.xservice/cron/run | 8++++++++
A.xservice/cron/xbps-status.sh | 17+++++++++++++++++
A.xservice/dbus/log/run | 2++
A.xservice/dbus/run | 5+++++
A.xservice/dwm/log/run | 2++
A.xservice/dwm/run | 8++++++++
A.xservice/logging | 6++++++
A.xservice/nm-applet/log/run | 2++
A.xservice/nm-applet/run | 7+++++++
A.xservice/pa-applet/log/run | 2++
A.xservice/pa-applet/run | 7+++++++
A.xservice/slstatus-xbps/log/run | 2++
A.xservice/slstatus-xbps/run | 14++++++++++++++
A.xservice/slstatus/log/run | 2++
A.xservice/slstatus/run | 12++++++++++++
A.xservice/stw-service/run | 3+++
A.xservice/stw-xbps/run | 3+++
A.xservice/tiramisu/log/run | 2++
A.xservice/tiramisu/run | 8++++++++
A.xservice/tiramisu/test.txt | 1+
A.xservice/xfce-polkit/log/run | 2++
A.xservice/xfce-polkit/run | 7+++++++
A.xservice/xserver/log/run | 2++
A.xservice/xserver/run | 9+++++++++
36 files changed, 173 insertions(+), 0 deletions(-)

diff --git a/.xservice/9wm/down b/.xservice/9wm/down diff --git a/.xservice/9wm/log/run b/.xservice/9wm/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/9wm/run b/.xservice/9wm/run @@ -0,0 +1,8 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +cd $HOME +exec 9wm diff --git a/.xservice/background/down b/.xservice/background/down diff --git a/.xservice/background/log/run b/.xservice/background/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/background/run b/.xservice/background/run @@ -0,0 +1,10 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +#$HOME/.fehbg +xsetroot -solid '#ebdbb2' + +exec chpst -b background pause diff --git a/.xservice/blueman-applet/log/run b/.xservice/blueman-applet/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/blueman-applet/run b/.xservice/blueman-applet/run @@ -0,0 +1,7 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +exec blueman-applet diff --git a/.xservice/cron/crontab b/.xservice/cron/crontab @@ -0,0 +1 @@ +*/6 * * * * ./xbps-status.sh diff --git a/.xservice/cron/down b/.xservice/cron/down diff --git a/.xservice/cron/log.txt b/.xservice/cron/log.txt @@ -0,0 +1,6 @@ +run: ./xbps-status.sh pid: 22304 at Sat Apr 13 21:48:00 2024 +complete: pid: 22304 returned: 0 time: Sat Apr 13 21:48:00 2024 +run: ./xbps-status.sh pid: 22671 at Sat Apr 13 21:54:00 2024 +complete: pid: 22671 returned: 0 time: Sat Apr 13 21:54:00 2024 +run: ./xbps-status.sh pid: 23188 at Sat Apr 13 22:00:00 2024 +complete: pid: 23188 returned: 0 time: Sat Apr 13 22:00:00 2024 diff --git a/.xservice/cron/log/run b/.xservice/cron/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/cron/run b/.xservice/cron/run @@ -0,0 +1,8 @@ +#!/bin/sh + +exec 2>&1 + +# execute all jobs once +cut -d' ' -f6- crontab | sh + +exec crond -nf crontab diff --git a/.xservice/cron/xbps-status.sh b/.xservice/cron/xbps-status.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +OUTPUT=/tmp/xbps-updates.txt + +#tr -dc A-Za-z0-9 < /dev/urandom | head -c 5 > $OUTPUT +#exit + +echo "checking updates..." >&2 + +updates=$(xbps-install -Mun | wc -l) + +if [ $updates -ne 0 ]; then + echo $updates > $OUTPUT +else + echo up-to-date > $OUTPUT +fi + diff --git a/.xservice/dbus/log/run b/.xservice/dbus/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/dbus/run b/.xservice/dbus/run @@ -0,0 +1,5 @@ +#!/bin/sh + +exec 2>&1 + +exec dbus-daemon --nofork --session diff --git a/.xservice/dwm/log/run b/.xservice/dwm/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/dwm/run b/.xservice/dwm/run @@ -0,0 +1,8 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +cd $HOME +exec dwm diff --git a/.xservice/logging b/.xservice/logging @@ -0,0 +1,6 @@ +#!/bin/sh + +now=$(date '+%y-%m-%d %H:%M:%S') +name=$(basename $(dirname $PWD)) + +exec sed -e "s/^/[$now] $name: /" >> $XSERVICELOG diff --git a/.xservice/nm-applet/log/run b/.xservice/nm-applet/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/nm-applet/run b/.xservice/nm-applet/run @@ -0,0 +1,7 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +exec nm-applet diff --git a/.xservice/pa-applet/log/run b/.xservice/pa-applet/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/pa-applet/run b/.xservice/pa-applet/run @@ -0,0 +1,7 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +exec pa-applet diff --git a/.xservice/slstatus-xbps/log/run b/.xservice/slstatus-xbps/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/slstatus-xbps/run b/.xservice/slstatus-xbps/run @@ -0,0 +1,14 @@ +#!/bin/bash + +OUTPUT=/tmp/xbps-updates.txt + +while true; do + updates=$(xbps-install -Mun | wc -l) + + if [ $updates -ne 0 ]; then + echo $updates > $OUTPUT + else + echo up-to-date > $OUTPUT + fi + sleep 120 +done diff --git a/.xservice/slstatus/log/run b/.xservice/slstatus/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/slstatus/run b/.xservice/slstatus/run @@ -0,0 +1,12 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +FIFO=/tmp/slstatus.fifo + +[ -p $FIFO ] || rm -f $FIFO +mkfifo $FIFO + +exec slstatus -p $FIFO diff --git a/.xservice/stw-service/run b/.xservice/stw-service/run @@ -0,0 +1,3 @@ +#!/bin/sh + +exec stw -p 1 -b '#ebdbb2' -f '#3c3836' -F 'Source Code Pro:size=9' -B 10 -y 20 sh -c 'echo -- services -- ; psv /var/service/* ~/.xservice/* 2> /dev/null | sort -k2,2 -k1,1' diff --git a/.xservice/stw-xbps/run b/.xservice/stw-xbps/run @@ -0,0 +1,3 @@ +#!/bin/sh + +exec stw -b '#ebdbb2' -f '#3c3836' -F 'Source Code Pro:size=9' -B 10 -p 120 -y 100% -Y -100% sh -c 'echo -- updates -- && xbps-install -Mun | cut -d" " -f1' diff --git a/.xservice/tiramisu/log/run b/.xservice/tiramisu/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/tiramisu/run b/.xservice/tiramisu/run @@ -0,0 +1,8 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 +SVDIR=.. sv check slstatus > /dev/null || exit 1 + +exec tiramisu -o '\\x04#source\\x05#summary: #body\\n' | xargs -i printf '%b' '{}' > /tmp/slstatus.fifo diff --git a/.xservice/tiramisu/test.txt b/.xservice/tiramisu/test.txt @@ -0,0 +1 @@ + diff --git a/.xservice/xfce-polkit/log/run b/.xservice/xfce-polkit/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/xfce-polkit/run b/.xservice/xfce-polkit/run @@ -0,0 +1,7 @@ +#!/bin/sh + +exec 2>&1 + +SVDIR=.. sv check xserver > /dev/null || exit 1 + +exec /usr/libexec/xfce-polkit diff --git a/.xservice/xserver/log/run b/.xservice/xserver/log/run @@ -0,0 +1 @@ +../../logging +\ No newline at end of file diff --git a/.xservice/xserver/run b/.xservice/xserver/run @@ -0,0 +1,9 @@ +#!/bin/sh + +exec 2>&1 + +if [ -z "$XDG_VTNR" ]; then + exec X -nolisten tcp $DISPLAY +else + exec X -nolisten tcp $DISPLAY vt$XDG_VTNR +fi