#!/bin/sh

export XDG_CURRENT_DESKTOP=wlroots

clock() {
	while :; do
		time="$(date +%d.%m.%Y\ %H.%M)"
		mem=$(free -h | awk '/^Mem:/ {print $3"/"$2}')
		echo " ^fg(20ccff)MEM^fg() $mem | 📅 $time "
		sleep 60
	done
}

clock | dbus-run-session dwl -s "~/.scripts/wm-config"