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.

    • PrivateOnions@lemmy.mlOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      So I attempted to run a crontab and for whatever reason it does not do anything. What I put was * * * * * /usr/bin/sct 2750 after sudo crontab -e just to see if it even runs but it does not do anything. I rewrote and added multiple crontabs but no results. Any help would be appreciated.

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

        OK… So, just to test, edit your crontab and run a basic command:

        */1 * * * * date >> ~/date.log
        

        this will append the current date/time once a minute (*/1) to a file in your home dir. You can check if it works with cat ~/date.log

        If that works, then try again with your command. I see you used the full path to it, that’s a good thing. Also, what does that command do if you run it manually?

      • 133arc585@lemmy.ml
        link
        fedilink
        English
        arrow-up
        2
        arrow-down
        2
        ·
        edit-2
        1 year ago

        For the “schedule expression” (the * * * * * part), try https://crontab.guru/. Some distributions have shortcut expressions like @hourly or @daily so you don’t have to type * */1 * * * etc.

        The crontab generally has a header that shows the columns, but if not, they’re: m h dom mon dow command.

        From * * * * * /usr/bin/sct 2750 I’m guessing you want to run every minute. If that’s the case, as another commented pointed out, try */1 * * * * /usr/bin/sct 2750, meaning every 1 minute.

    • ∟⊔⊤∦∣≶@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.

    • PrivateOnions@lemmy.mlOP
      link
      fedilink
      English
      arrow-up
      10
      arrow-down
      1
      ·
      1 year ago

      Any tutorials or links on how to do so? I am still a noob so I apologize in advance.

      • Nuuskis9@feddit.nl
        link
        fedilink
        English
        arrow-up
        17
        ·
        1 year ago

        There’s no need to be sorry for being noob. I also recognized that from your original post.

        Fast and short bash-scripting course with actually useful tasks:

        https://www.youtube.com/playlist?list=PLT98CRl2KxKGj-VKtApD8-zCqSaN2mD4w

        For cron write ‘man cron’ into your terminal and read the manpage docs on how to use cron. As already suggested ‘crontab -e’ is the command you need, but a quick look in the docs explains you how it actually works.

        I don’t give you direct answers simply because I want you to learn Linux by yourself and enjoy the benefits of it :)

      • IsoKiero@sopuli.xyz
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        1 year ago

        Since you only need to run a single command as a user open terminal and give command ‘crontab -e’. If you haven’t set an editor it’ll ask for one, pick nano.

        The syntax for crontab is like this (man 5 crontab will show it on your system as well):

        field          allowed values
        -----          --------------
        minute         059
        hour           023
        day of month   131
        month          112 (or names, see below)
        day of week    07 (0 or 7 is Sun, or use names)
        command to run with full path
        

        So, in your case put in this line:

        0 10 * * * /usr/bin/sct 2750
        

        I’m not sure if sct is really at that path and I don’t have that installed, so verify that first (run ‘which sct’). Save the file and exit editor (ctrl+o, ctrl+x on nano). That’s it. However, I don’t quarantee results with that, since X with environment variables and all may cause issues, but if that’s the case I’m sure this community can help with that as well.

        • PrivateOnions@lemmy.mlOP
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          I am seriously confused because I follow multiple Youtube videos, and also came to the solution you suggested which is to run “which sct”, and it ended up being /usr/bin/sct like you said but the command just does not run when the time comes. I am not sure what “X with environment variables” means so I would appreciate if you could explain and I can research further

      • LastoftheDinosaurs@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        11
        ·
        edit-2
        1 year ago

        This would be a really good task for ChatGPT. It can write the script for you and teach you how it works.

        You can edit the crontab with the following command crontab -e

        Use sudo if you want to edit the root crontab

        Edit: You guys need to start using AI. It’s not going anywhere, and you’ll see how dumb it really is after like 5 minutes.

        • jaykstah@waveform.social
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          They came to this place to get an answer from a person with firsthand experience, not to be told to ask an AI

          • LastoftheDinosaurs@lemmy.world
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            1 year ago

            I’m going to go out on a limb and assume you’ve never used ChatGPT for anything. It’s much better than talking to a real person. You should try it someday.

            These are some of the things I’ve used it for in the past week:

            • Compiled a custom Linux kernel
            • Wrote comments, examples, and unit tests for my code
            • Improved network security
            • Fixed my Xorg config
            • Wrote a bunch of emails for work stuff
            • Rewrote my resume
            • Made a workout routine based on the equipment I have
            • Put together a playlist of 70s and 80s funk music, excluding well-known artists/songs
            • jaykstah@waveform.social
              link
              fedilink
              English
              arrow-up
              1
              arrow-down
              1
              ·
              edit-2
              1 year ago

              I’m well aware of its capabilities and it can do a lot, undoubtedly. I just imagine that if they’re going to a social media site to ask a question the goal is to have a person give them advice rather than being told to take the question elsewhere.

              But it is what it is, my reply wasn’t meant to be a diss on ChatGPT, it’s a cool tool. Just personal preference at the end of the day. For some things I could see myself using ChatGPT for convenience, for other things where I’m not so hellbent on saving time I find it much more fulfilling to research and gain a better understanding through my own searches or from interacting with others and getting different human perspectives on a topic.

    • IsoKiero@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      27
      arrow-down
      2
      ·
      1 year ago

      Which is a lot more difficult in every aspect than just throwing a single line on crontab and calling it a day.

      • 𝘋𝘪𝘳𝘬@lemmy.ml
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        5
        ·
        1 year ago

        At the same time you get a lot more benefits doing so. You also don’t need to install additional software just to run a background task every X time units.

        And if you need to learn something, just learn the current state if the art.

        • Maestro@kbin.social
          link
          fedilink
          arrow-up
          5
          arrow-down
          2
          ·
          1 year ago

          I don’t know any distro that ships without cron installed out of the box. Maybe some bare bones minimal distro but I assume that OP isn’t using that or he would not need to ask this question.

      • Synthead@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        1 year ago

        I don’t agree with this statement, personally. People who aren’t familiar with cron will see magic numbers and magic characters. It’s also possible to have friction getting the environment set up correctly for the program being called by cron.

        systemd timers use exact phrases in its configuration like “daily.” You can also name the timer, start and stop the timer, view logs specifically for that timer, etc. Plus, it just calls a service file, which again is much simpler than other options like System V. You can run multiple commands in order, set an environment, use a user, jail the commands, etc.

        Any of these things done “the old way” have been obscure and difficult. When was the last time you thought about a runlevel? The timer configs aren’t one-liners, but it’s because it’s packed loads of features and it’s human-readable. Plus, anything you do surrounding the cron job is also obscure, in my opinion.

        Plus, cron jobs, if you choose to use them, are performed by systemd compatibility code, anyway.

    • the_sisko@startrek.website
      link
      fedilink
      English
      arrow-up
      19
      arrow-down
      1
      ·
      1 year ago

      Cron may be old but I don’t think it’s “legacy” or invalid. There’s plenty of perfectly good, modern implementations. The interface is well established, and it’s quite simple to schedule something and check it. What’s more, Cron works on new Linux systems, older non-systemd ones, and BSD and others. If all you need is a command run on a schedule, then Cron is a great tool for the job.

      Systemd services and timers require you to read quite a bit more documentation to understand what you’re doing. But of course you get more power and flexibility as a result.

      • 𝘋𝘪𝘳𝘬@lemmy.ml
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        5
        ·
        1 year ago

        Systemd services and timers require you to read quite a bit more documentation to understand what you’re doing. But of course you get more power and flexibility as a result.

        Yes. There is simply no reason not to make it state-of-the-art from the beginning on. You get proper logging, proper error handling, better scheduling options and you most likely don’t even need to set up additional software because systemd (and thus systemd timers) are default in pretty much all common Linux distributions (except some niche ones) since 10+ years.

        • jsveiga@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          7
          arrow-down
          1
          ·
          1 year ago

          “simply no reason”?

          What about ease of use, simplicity, faster to quickly setup, backwards compatibility, and “crobtab is where everyone will look at when looking for a scheduled task”?

          If systemd was implemented right, it would create the systemd files and autoconfigure default tasks by reading the crontab, for backwards compatibility.

          • Ullebe1@lemmy.ml
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            1
            ·
            1 year ago

            What about ease of use, simplicity, faster to quickly setup, backwards compatibility,

            The syntax of systemd timers is MUCH easier to read for newbies (and everyone else, really) as it uses words instead the placement of the characters on the line to convey meaning. If you can’t remember or don’t know the syntax well you can still understand a systemd timer, but that is much hard for the crontab. Granted, crontab uses fewer characters, but if you only set up either once in a blue moon you’ll need the docs to write either for a long time. And is backwards compatibility really an issue with either one? All major desktop and server distros use systemd, and has for a while. Fedora doesn’t even include a Cron by default anymore.

            “crobtab is where everyone will look at when looking for a scheduled task”?

            If it was a distro release from the last decade I’d definitely start by checking the systemd timers, rather than the crontab.

            If systemd was implemented right, it would create the systemd files and autoconfigure default tasks by reading the crontab, for backwards compatibility.

            You can to totally do this, using this systemd generator.

            • the_sisko@startrek.website
              link
              fedilink
              English
              arrow-up
              2
              ·
              edit-2
              1 year ago

              If you can’t remember or don’t know the syntax well you can still understand a systemd timer, but that is much hard for the crontab.

              I will agree that it is easier to read a timer than a Cron entry, especially if you’ve seen neither of them before.

              Granted, crontab uses fewer characters, but if you only set up either once in a blue moon you’ll need the docs to write either for a long time.

              This is where I disagree. I very rarely setup a Cron job, but when I do, I don’t need to look anywhere for docs. I run crontab -e and the first line of the editor contains a comment which annotates each column of the Cron entry (minute, hour, dom, mon, dow). All that’s left is to put in the matching expressions, and paste my command.

              Compare that to creating a new timer, where I need to Google a template .service and .timer file, and then figure out what to put in what fields from the docs. That’s probably available in the manual pages, but I don’t know which one. It’s just not worth it unless I need the extra power from systemd.

              This is from somebody who has several systemd timers and also a few Cron jobs. I’m not a hater, just a person choosing the best and easiest choice for the job.

    • jsveiga@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      13
      arrow-down
      2
      ·
      1 year ago

      Honest question: Why is that the only valid question, if crontab works and is much, much simpler to use?

      • LastoftheDinosaurs@lemmy.world
        link
        fedilink
        English
        arrow-up
        8
        arrow-down
        5
        ·
        edit-2
        1 year ago

        He might be a new linux user. There are 10 ways to do every task, and all are vaild if they work for you.

        I don’t even use systemd, so I guess Gentoo isn’t modern. He even mentions userspace, like OP is going to edit his kernel or something.

        Enjoy the helpdesk, @Dirk

    • addie@feddit.uk
      link
      fedilink
      English
      arrow-up
      10
      arrow-down
      1
      ·
      1 year ago

      You seem to have fallen foul of all the SystemD haters in the voting, when this is the best answer. OP’s question was about doing one thing on a timer and a very similar thing on login; SystemD can achieve both of these in one place with proper logging and status displays, whereas Cron cannot.

      Most of the things that you’d want to run on a timer have additional dependencies (I’d like to snapshot the database if the database is running; I’d like to backup up my files to a remote server if the network is up) which as easy to express in SystemD files as anything else it can do. Might as well learn to use the most versatile and powerful tool if you’re going to learn anything. Admittedly, I don’t like its syntax, but it achieves this kind of thing perfectly.

  • ѕєχυαℓ ρσℓутσρє@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    While cron will do the job perfectly, if you want to be a bit more fancy and tie it to sunrise/sunset times, you can do that using at and sunwait. I have a similar setup, but it changes my monitor’s brightness.