Courtesy of @meuh, I managed to get Ubuntu to automatically switch between the "light" Window Theme and the "dark" Window Theme (see over here)... But for some reason, systemd does not seem to be starting my timers after a reboot.
If I restart my system and run systemctl --user list-timers
, it tells me that there are no timers... If follow this up with systemctl --user restart dark.timer light.timer
and then run systemctl --user list-timers
again, my timers show up correctly.
I have repeatedly run systemctl --user enable dark.timer light.timer
before I restart my system, but as stated above, systemd seems to "forget" this and will not show these timers under after I have used the systemctl --user restart dark.timer light.timer
command...
I feel confident that the solution is something trivial, but I have no idea what that solution might be, so any help the Community can provide would be appreciated.
--
Output of ls ~/.config/systemd/user/*.target.wants
:
ls: cannot access '/home/gregory/.config/systemd/user/*.target.wants': No such file or directory
ls ~/.config/systemd/user/*.target.wants
to the question, please. – muru May 14 '20 at 05:48WantedBy=default.service
toWantedBy=default.target
and do (as after any change)systemctl --user daemon-reload
, thensystemctl --user reenable dark.timer light.timer
. – meuh May 14 '20 at 08:48Thanks, again @muru !
– Gregory Opera May 15 '20 at 00:13