I am on Mint XFCE and Redshift is just so inconsistent and I have tried its forks, also inconsistent. So instead I have been using sct in the terminal to adjust the temperature, and have set a command that resets it back to normal every time that I log on. However, I was wondering if there is a way to make it so that “sct 2750” runs every day at 10 pm or during a specific period of time.

  • ∟⊔⊤∦∣≶@lemmy.nz
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    19
    ·
    1 year ago

    Crontab is deprecated,theres a better way now. Dont ask me though because im working on servers that havent had an upgrade in 10+ years

    • Domi@lemmy.secnd.me
      link
      fedilink
      English
      arrow-up
      21
      ·
      1 year ago

      My servers are up to date and there is not a single Linux distro that has removed cron or marked it for removal yet. Probably will stay that way for a long time.

      • pchem@feddit.de
        link
        fedilink
        English
        arrow-up
        10
        arrow-down
        2
        ·
        1 year ago

        Yes, it’s usually still available, but systemd timers are the more “modern” way, which is why distros like Arch use them by default:

        There are many cron implementations, but none of them are installed by default as the base system uses systemd/Timers instead

        https://wiki.archlinux.org/title/Cron

        • amyipdev@lib.lgbt
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 year ago

          that’s because we’ve understood there’s a line between what is reasonable for most users to implement - cron - and what is more reasonable for the OS to implement - systemd timers.

          you don’t want a user who doesn’t know what they’re doing to accidentally brick a key OS timer (for instance, when they’re setting up their own), so systemd helps to segregate while still allowing experienced users to easily stop timers.

          meanwhile, for users, cron is much easier to work with…

    • calm.like.a.bomb@lemmy.ml
      link
      fedilink
      English
      arrow-up
      17
      ·
      1 year ago

      You mean running systemd timers? Yes, they are great, but for a beginner I think understanding crontabs is still better.

      Also, who said crontabs are deprecated? Do you have a source for that?

      • ∟⊔⊤∦∣≶@lemmy.nz
        link
        fedilink
        English
        arrow-up
        2
        arrow-down
        9
        ·
        1 year ago

        Idk i remember reading that theres a new way. Maybe it isnt deprecated? Yes systemd timers is the new way

        • amyipdev@lib.lgbt
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 year ago

          systemd timers are not actually universal. not everyone uses systemd, some use sysvinit, openrc, etc. systemd timers are also much more difficult to set up.

          cron is not “deprecated” and is still widely used industrially and locally.