Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CB
calm.like.a.bomb @ clmbmb @lemmy.dbzer0.com
Posts
8
Comments
372
Joined
2 yr. ago

  • I think you remember something that is 15 years old. Samsungs are very good now and even though I don't use the default launcher (OneUI), when I used it it didn't seem clunky or anything. And yes, they put a lot of junk apps by default, but you can uninstall most of them right off the bat and never care.

  • In case you’re not being sarcastic

    He's not being sarcastic. I was ready to post something in the same vein because people should make a bit of an effort to put a simple description when they post a link.

    I played Descent in my days and I know about it, but even so I had no idea what the link was about.

  • You have no idea what that would do in Linux. First read some documentation, then decide if you really need it. I guess you can see by the number of people trying to put you on the right path that what you want is not a good idea.

  • I can't see anywhere that a [Timer] section can be added to a service unit. I tried it and it doesn't work:

    Apr 11 13:16:15 computer systemd[2593025]: /home/clmbmb/.config/systemd/user/test.service:10: Unknown section 'Timer'. Ignoring.

    The service/script ran as it should, but the Timer section is ignored, as you can see.

  • Just in case, you are sure that you didn’t just accidentially kill or killall rclone or bash?

    No. The process runs at night. Only if my dog started learning Linux and tested something! That makes me wonder...

  • No, my script doesn't fork and I don't think rclone does that either.

    Here's the script (pretty simple):

     
        
    #!/bin/bash
    
    repos=(fotorepo multirepo persorepo appconfigs)
    
    if pidof -x rclone >/dev/null; then
      echo "Process already running"
      exit 1
    fi
    
    for repo in "${repos[@]}"; do
        inidate=$(date +'%Y%m%d_%H%M%S')
        /usr/bin/rclone -v --log-file=/backup/borg/logs/${repo}_b2sync_${inidate}.log sync /backup/borg/${repo} b2:${repo}
        if [[ $? -eq 0 ]]; then
          MSGDATE=$(date +'%d/%m/%y %T')
          mesaj="[${MSGDATE}] Upload for ${repo} was successful."
          curl -H "Title: B2 Upload" -H "Tags: arrow_double_up" -d "${mesaj}" "${URL}"
          #sendmsg "[${MSGDATE}] Upload for <b>${repo}</b> was <b><u>successful</u></b>."
        else
          MSGDATE=$(date +'%d/%m/%y %T')
          mesaj="[${MSGDATE}] Upload for ${repo} has failed. Check the logs."
          curl -H "Title: B2 Upload" -H "Tags: warning" -H "prio:high" -d "${mesaj}" "${URL}"
          #sendmsg "[${MSGDATE}] Upload for <b>${repo}</b> has <b><u>failed</u></b>. Check the logs."
        fi
        enddate=$(date +'%Y%m%d_%H%M%S')
        mv /backup/borg/logs/${repo}_b2sync_${inidate}.log /backup/borg/logs/${repo}_b2sync_${enddate}.log
    done
    
      
  • [1] siyuan is markdown too but but it’s stored in a database, not your filesystem.

    This is a hard pass for me, then. At the moment I'm using Silverbullet, which uses plain markdown files which I can also edit with my preffered editor in CLI.