This repository has been archived on 2026-01-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dotfiles-old/dwm-start.sh
T
2015-05-31 16:53:21 -06:00

14 lines
188 B
Bash
Executable File

#!/bin/sh
# Script to start dwm in loop
while true; do
$HOME/bin/dwmstatus
sleep 2
done &
while true; do
dwm >/dev/null
# to log stderrors to a file
#dwm 2> /tmp/dwm.log
done