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

help-circle


  • infeeeee@lemm.eetolinuxmemes@lemmy.worldIt is called 🍷
    link
    fedilink
    arrow-up
    23
    ·
    edit-2
    11 days ago

    No, it’s just remote. Remote desktop is now also called Windows, also the operating system you are connecting to is called Windows.

    Gnome has relatively good rdp support, so with this you could use Windows (the app) on Windows (the os) to connect to you Linux machine running Gnome.

    It seems deliberately confusing naming is working as expected, Microsoft marketing team should get extra raise.






  • infeeeee@lemm.eetoAndroid@lemmy.worldFond memories
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    13 days 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