• 14 Posts
  • 120 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle
  • infeeeee@lemm.eetoAndroid@lemmy.worldFond memories
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    5 hours ago

    Early iOs and Android icons were one of the last offshoot of the style called “Frutiger Aero

    Flat icons don’t necessarily bad and undetailed, it’s just harder to create something more recogniseable with less tools, but I actually like the order, that they look like they are related to each other. Back in the day I created icon packs for the programs I used on pc, so my desktop would look clean and uniform.

    Design styles are in a cycle, just wait some years and they will show up again, I’m sure. There is already some connection with the new style of windows 11.




  • One of them is a laptop, why ssh to the server isn’t an option? Set up tmux on the server so it always connects to the same session, so you can just continue where you left last time. If you need desktop support, rdp in gnome works really well.

    E.g if you connect with this command, and tmux is installed on the server, it will start a new session named “main”. If a session with that name exists it will connect to that:

    ssh -t pi@192.168.1.2 tmux new-session -A -s main

    Add something to .bashrc on the server to always do the same if you work on that phisically:

    if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
    tmux new-session
    fi
    











  • infeeeee@lemm.eetoFediverse@lemmy.worldThreads Enables Fediverse Replies
    link
    fedilink
    English
    arrow-up
    10
    arrow-down
    4
    ·
    edit-2
    20 days ago

    Since I stopped using mainstream socialmedia I can’t follow musicians I’m interested in. Some have a bandcamp page and rss works there, but they just upload their albums there, nothing else. At least I get notified about new releases. I tried to follow facebook and instagram pages via rss-bridge, but it’s not working for years now. My selfhosted bibliogram sometimes work, but it’s unmaintained so it will die at some point if instagram changes something. (I just found there is a maintained fork, yess) My ip usually gets blocked, so I get all posts once a week only in batch.

    So I’m interested, unfortunately none of them enabled fedi integration yet, (afaik it’s a settings for them in threads) so I’m waiting when they will enable it for everyone.

    I don’t want to debate about politics or whatever you are afraid of.





  • I’m not familar with shelly, but they don’t use MQTT autodiscovery? If they use it you should have a corresponding HA entity or device of each switch. Then you can use built in tools or templates in automations, and don’t directly mess with MQTT. That’s much easier and stable.

    If they don’t use autodiscovery you can create HA entites via configuration.yaml manually


  • It’s the most common and most supported 3rd party Android rom:

    Usually you can have 3 kind of rom for an android device:

    • Default from manufactuerer: usually locked down, shitty default apps and preinstalled crapware, updates stop soon. Usually stable.
    • Cooked/unofficial rom from xda or telegram: some script kiddy has the same phone as you and they share the rom they built from source. Hit or miss, sometimes very good, sometimes terrible. Updates stop when script kiddy gets a new phone.
    • Official 3rd party rom, Lineage is the most common, Crdroid, Graphene, eos and other secure and special roms are in this category, but they support far less devices. Updates are automatic, built by a server every month. Someone have to set it up, so you still need someone interested about this in the community, and the manufacturer have to release drivers, firmware. (They should be legally, but noone cares) Usually that’s the best experience you can get on an Android device nowadays