#!/bin/sh #WMFS status.sh example file #Will be executed if put in ~/.config/wmfs/ #Timing adjustable in wmfsrc (misc -> status_timing) statustext() { conky -c $HOME/.conkyrc-wmfs | while true; read line; do wmfs -c status "topbar $line"; done } while true; do statustext; sleep 2; done