I made the icy-nord and icy-nord-darker themes.

change suggestions

issues

update notifications

@promitheas:matrix.org

  • 16 Posts
  • 51 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle
  • Ill steal some suggestions I liked from other commenters and add my own.

    • Draw a picture
    • Write a letter to someone
    • Find home on the map and calculate distances to school, grandparents, friends, etc
    • Make a simple song
    • Design something simple using CAD software (you’d need to find something really simple to learn/use. Someone suggested a program that I assume allows you to design minecraft buildings external to minecraft)

    And most importantly for me:

    • Research one or several topics. Youd need to do the research yourself beforehand, as well as pick topics you know align roughly with your child’s areas of interest, but if they gain the skill of looking up information for themselves and finding the answer, pretty much anything is within their grasp IMO. Maybe set this as the first one so they can apply it for whatever further challenges you set them (extreme example but e.g. “How to create dog in blender” if you set them the task of using blender to design something). On that note, maybe set 2 distinct types of research topics - such as technical tasks and information tasks. What I mean is: “how do i install x, y, z program and use it” would be a technical task in my opinion, whereas something like “why are farmers legally forbidden from replanting seeds from their crops” would be an information task.

    Best of luck!



  • I mean, i also only post/comment on lemmy to elicit responses, am I a troll too? Thats kinda the point of posting/commenting. Hes not doing it for ragebaiting as far as i can tell. I also think it would be attention seeking if that was the entire content of his profile, but its not. He posts in communities about the community topic, and it seems to be adding value to those communities. He just uses a dofferent way of writing and you call him a troll, a well known one too.








  • This seems to be basically what I want to achieve, except I realised it only works on official arch repos and so doesnt sync the DB for the AUR, which I’d like. I started looking into it and a way I can use just yay to sync the local DB with the remote since its just a wrapper for pacman, but I got a bit lost.

    Using yay to sync both official and aur I think also means I need to create only one .timer and one .service files to sync the DBs, instead of having one of each for checkupdates and whatever yay command I use, right?

    Any ideas for what I could use without needing to enter sudo password since it needs to run in the background?

    Thanks

    EDIT: I solved the passwordless issue I think by adding this to my sudoers:

    myuser ALL=(ALL) NOPASSWD: /usr/bin/yay -Sy --noconfirm
    

    I verified by running yay -Sy --noconfirm and it worked without asking for password so I think if I use that in my systemd timer service if will work, but now I would like to check against the local DB everytime I open the terminal.

    EDIT 2: In my .bin/check_last_update.sh script I replaced this line

    num_packages_to_update=$(checkupdates | wc -l)
    

    with this:

    num_packages_to_update=$(yay -Qu | wc -l)
    

    I think it works now, but I’m not sure if the -Qu flags also check for AUR updates.