xrootdatetime: double dipping
This commit is contained in:
parent
ee16a78d1b
commit
c20c63f6ea
1 changed files with 9 additions and 1 deletions
|
@ -46,7 +46,15 @@ in
|
||||||
systemd.user.services.xrootdatetime = {
|
systemd.user.services.xrootdatetime = {
|
||||||
script = ''
|
script = ''
|
||||||
while true; do
|
while true; do
|
||||||
sleep 1 && date +"<-- %A, %B %d -- %H:%M -->" | xargs -I% ${getExe pkgs.xorg.xsetroot} -name %
|
micMuted=$(${getExe pkgs.pamixer} --default-source --get-mute)
|
||||||
|
if [[ "$micMuted" == "true" ]]; then
|
||||||
|
mutedString="Mic Muted "
|
||||||
|
else
|
||||||
|
mutedString=""
|
||||||
|
fi
|
||||||
|
dateTime=$(date +"<-- %A, %B %d -- %H:%M -->")
|
||||||
|
${getExe pkgs.xorg.xsetroot} -name "$mutedString$dateTime"
|
||||||
|
sleep 1
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
wantedBy = [ "graphical-session.target" ];
|
wantedBy = [ "graphical-session.target" ];
|
||||||
|
|
Loading…
Reference in a new issue