automatic-timezoned 2.0.124

Automatically update system timezone based on location
1
2
3
4
5
6
7
8
// vim: ft=javascript

polkit.addRule(function(action, subject) {
  if (action.id == "org.freedesktop.timedate1.set-timezone"
      && subject.user == "SOME_USER") {
    return polkit.Result.YES;
  }
});