this post was submitted on 11 Aug 2025
664 points (98.1% liked)

linuxmemes

27170 readers
1950 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    (page 2) 50 comments
    sorted by: hot top controversial new old
    [–] Ascend910@lemmy.ml 4 points 3 weeks ago* (last edited 3 weeks ago) (1 children)
    1. Browser, other main stuff
    2. Games, games never leaves 2
    3. Terminal, ide, file manager
    4. Blender, libre office, teams, cad, lmms, davenci resolve
    5. Virtual box, vmware, virtmanager
    6. Moonlight, parsec, vnc, rdp.
      7-9 when I run out of space in my other desktops
    7. Music player, obs, uget, qbittorrent, xclicker, discord
    [–] ikidd@lemmy.world 4 points 3 weeks ago
    1. where I put all the shit I'm currently working on and totally forget about it.
    [–] Zen_Shinobi@lemmy.world 4 points 3 weeks ago

    I sometimes use virtual desktops if I have a lot of stuff going on at once. Though, with a duel monitor set up, I hardly need it. My commands are a simple Ctrl+Alt+Left/Right Arrow Keys

    [–] tal@lemmy.today 4 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

    Tier 1: Linux virtual consoles. Switch among these with Alt-F1 through Alt-F8. Control-Alt instead of Alt if in Wayland. I have seven with a text terminal and Wayland on the eighth. This tier supports showing only one virtual console at once.

    Tier 2: Inside the Wayland virtual terminal, Sway managing virtual desktops. I use nonstandard keybindings here: Super-1 and -2 to cycle left and right, and Super-Q n to go to the n-th desktop. Beyond the first ten desktops, I can use Super-R to rename a desktop to a "named" desktop. For cycling purposes, these come after the first ten. This tier supports showing only one desktop at once.

    Tier 3: Inside a Sway virtual desktop, windows managed by Sway. This tier supports splitting, showing multiple windows at once. I use nonstandard emacs-style keybindings, Super-F/B/N/P to move among those. These are often running a virtual terminal program, foot. I don't use a multiplexing terminal with multiple "tabs", because I favor a more minimalist setup with fewer tiers.

    Tier 4: Inside a Sway-managed window, mosh. This tier isn't always present; I only use this tier if I'm using a remote system. Mosh has its own concept of sessions. These can be used in conjunction with Tmux's sessions


    mosh's system is designed to smooth over connectivity issues. Lose network connectivity and mosh will display a message. Hibernate a laptop for a month with a mosh connection open to another machine, open the lid, and mosh will transparently re-establish its connections as if there had been no interruption. I mostly use mosh to reduce perceived latency, but the connectivity stuff is neat. Not much interaction with this tier, short of force-exiting with Control-^ . and this tier only supports showing one session in a terminal at once.

    Tier 5: Inside a mosh session, tmux sessions. Tmux has its own set of sessions, which one can attach to with tmux attach. This tier only supports showing one session at once.

    Tier 6: Inside a tmux session, tmux windows. I use a nonstandard prefix key for tmux (and GNU screen) to reduce friction with emacs


    Control-O. I use emacs-style keybindings to cycle among windows


    Control-O Control-N/Control-P. This tier does support splitting to show multiple tmux windows at once, though I don't use that functionality.

    Tier 7: Inside a tmux window, I run a bash shell process. Bash supports job control. Control-Z to suspend the current job and return to bash, jobs to list jobs, fg %n to activate the nth job.

    Tier 8: Inside a bash job, I might be running emacs, and that has emacs frames. If you're using graphical emacs, each frame corresponds to a window in your windowing environment. In terminal emacs, each is basically another invisible layer that you can switch among. C-x 5 2 to create a new frame, C-x 5 o to cycle, C-x 5 0 to destroy. This tier does not support showing multiple frames at once.

    Tier 9: Emacs buffers. Each "buffer" might be a text file, a email client with mu4e, an LLM chat session with ellama, a "spreadsheet" with an org-mode table, whatever. One can show multiple emacs windows and assign a buffer to each emacs window (emacs has its own concept of windows, which kinda correspond to "panes" in most programs). Emacs has many systems for switching among these, but I mostly use one of two fairly vanilla add-on packages, either C-x b for ido-switch-buffer to switch among buffers using tab-completing names, or C-x C-b to use ibuffer, which provides menu-based selection.

    Tier 10: Usually not something I use in conjunction with emacs, but if one is running a bash instance in an emacs shell-mode buffer (M-x shell), then bash's job control comes into the picture. Emacs shell-mode requires one to prefix each bash control key sequence with C-c, so C-c C-z to suspend the current job, and return to shell, jobs to list current jobs, and fg %n to activate the n-th job. Can only show one job at once.

    EDIT: You could maybe make an argument that there's another tier between Tier 7 and Tier 8, because I use an emacs feature called desktop.el that persists an emacs session, including its frames and windows and open buffers and all across invocations of emacs for a given project. But I rarely use this, so it's not normally in the stack. If it's there, you can only have one active at once, no "split desktop.el" functionality.

    EDIT2: I take it back. I had workspace renaming set up in i3, but never pulled that configuration over when I switched to sway. So just the basic 10 workspaces.

    [–] riskable@programming.dev 2 points 3 weeks ago

    Crank that knob up to 11: Using multiple computers simultaneously to manage all your shitβ€”with some having special hardware dedicated to the task!

    [–] Zink@programming.dev 4 points 3 weeks ago

    I am one of the people that never uses them, and I think I finally realized why: ADHD.

    I usually turn them off, and if there's a part of the GUI dedicated to them, I disable that too. I thought it was to save screen space, but honestly I think it's more so that I won't lose windows to virtual desktops I forgot existed.

    I think the tendency to forget things and to occasionally space out and forget what I'm doing has led me to value persistent visual artifacts of whatever I'm doing. That means a visible taskbar with the clock, system tray icons, and application icons, plus terminal windows even if they are idle. Somehow, scanning back and forth across 4 monitors -- even if virtual desktop people reading this can do it much faster their way -- just works better for me.

    This touches on something that's actually much deeper that I have been doing for myself:

    Sometimes if you do things in a way that plays nicely with your personal neurospice cocktail rather than the more efficient way you "know" that you "should" be doing them, it just makes your life better and that is the whole damn point for why we are working on the computer in the first place.

    I can absolutely see myself buzzing around virtual desktops with keyboard commands. I have experimented with desktop setups in the past. I remember for a while in college I was running some kind of 3D desktop program where I had a virtual space where I could move windows and icons around. You could hang images floating in the air like paintings. And this is on 25 year old hardware! I think my GPU was a Geforce 2 GTS. Giga-texel shader baby!

    [–] sircac@lemmy.world 3 points 3 weeks ago (3 children)

    I got a 3x3 grid and now I swim accross them so naturally, visually and intuitively that I cannot stand anything else, 1 for spotify/system properties, 2 for firefox, 3 for thunderbird, the rest thematic for ocassional folder and dedicated programs, any one (two for diagonals) shortcut away from any other (win_key+arrows, with ctrl and shift combinations for window movement/fitting)... I will never comply back to anything else

    [–] ShouldIHaveFun@sh.itjust.works 3 points 3 weeks ago (1 children)

    I use Super Key + A and S instead of the arrow keys to be able to do it with one hand.

    load more comments (1 replies)
    load more comments (2 replies)
    [–] magikmw@piefed.social 3 points 3 weeks ago

    For me it's:

    1. Workstuff
    2. Games
    3. Main browser for mail, etc.
    4. All the messenger apps

    Music player lives in yakuake dropdown terminal.

    [–] DonutsRMeh@lemmy.world 3 points 3 weeks ago (1 children)

    I don't even remember them. And KDE also has this activity whatever thingy that I don't know what the hell it does.

    [–] Lightfire228@pawb.social 3 points 3 weeks ago (3 children)

    Activities let you change the desktop layout, panels, wallpapers, etc.

    Virtual desktops keep the desktop settings

    load more comments (3 replies)
    [–] AceFuzzLord@lemmy.zip 3 points 3 weeks ago

    This post made me look into virtual desktops on my laptop and I can easily double the current amount of desktops from 2-4 under settings.

    Biggest problem with that is that I almost never use more than my first virtual desktop unless I'm working on multiple things and need to switch to not get caught working on one of them over the other.

    [–] Jankatarch@lemmy.world 3 points 3 weeks ago* (last edited 3 weeks ago)

    Desktop 7 needs to pull themselves by the bootstraps and get a job. Useless.

    [–] gerryflap@feddit.nl 3 points 3 weeks ago

    At work I tend to have like 3 workspaces just for stuff I need to be doing. Different projects. My second monitor tends to be reserved for the documentation etc that I need for that project. Then there are multiple workspaces with terminals for ssh, screenshares, and other terminal hackeroni. And one for messages etc.

    I prefer to use i3 or away for this but unfortunately not every workplace lets you have that

    [–] sanderium@lemmy.zip 3 points 3 weeks ago (1 children)

    friendship ended with workspaces/virtual-deskltops, now tags are my best friend

    [–] serenissi@lemmy.world 4 points 3 weeks ago (3 children)
    load more comments (3 replies)
    [–] iveseenthat@reddthat.com 3 points 3 weeks ago (5 children)

    You sick! Media players go on workspace 10!

    load more comments (5 replies)

    I have 3 screens:

    1. Main screen for whatever i'm doing incl Browser
    2. Gaming screen wiith Steam and Heroic Launcher
    3. Comms - Signal, emaiil, discord, everything KDE Connect
    4. random shit not fitting anywere
    5. Piracy town: qbittorent, jdownloader, Browser with MANY sources

    The second one has many many status widgets, Dolphin, fSearch and a Firefox window that's my media player, always in the background without any title bars or borders running the deezer webpage as WPA

    The third one is connected with a 10m HDMI cable and is not running often, is just used to watch movies :-)

    [–] KazuchijouNo@lemy.lol 2 points 3 weeks ago

    Desktop 1 is for my music, browser, socials, maybe a yt video.

    Desktop 2 is my work windows VM with spreadsheets and stuff

    load more comments
    view more: β€Ή prev next β€Ί