26 votes

Share your linux desktop/setup

I've put quite a bit of work into my i3 set up recently and I'm curious if the people here are interested in that kind of thing.

I'd be interested in looking through configs to get ideas, and sharing screenshots and such.

Here is what my desktop looks like right now. Let me know what you think.

67 comments

  1. [14]
    crdpa
    Link
    Sure. Here is mine: sway (wayland) I am a fan of bspwm, but there is no equivalent on wayland yet (river is still in alpha stages). So i´ve been using sway with the autotiling python script. Since...

    Sure. Here is mine: sway (wayland)

    I am a fan of bspwm, but there is no equivalent on wayland yet (river is still in alpha stages). So i´ve been using sway with the autotiling python script.

    Since i changed everything (going from Xorg/bspwm to Wayland/sway) i decided to change the music player. I´ve been using cmus for years and now i´m using mpd+ncmpcpp.

    Don´t know if i like it really. I´m not a playlist kind of guy and mpd seems to center around playlists. I prefer to play full albums or shuffle the entire collection. In cmus i spent all the time in the library view, never ever made any playlists.

    The upside is that i can control the player with my smartphone.

    I´m still hunting for a simple dotfile manager to put things on gitlab.

    12 votes
    1. [3]
      Deimos
      Link Parent
      I came across yadm earlier this week. I haven't tried actually using it yet, but I really like the concept behind it as a simple wrapper around git.

      I´m still hunting for a simple dotfile manager to put things on gitlab.

      I came across yadm earlier this week. I haven't tried actually using it yet, but I really like the concept behind it as a simple wrapper around git.

      11 votes
      1. PathOfTheProkopton
        Link Parent
        I just set up yadm on my laptop and used it to carry changes over to my desktop. It worked really well.

        I just set up yadm on my laptop and used it to carry changes over to my desktop. It worked really well.

        4 votes
      2. crdpa
        Link Parent
        Oh that is the one i used in the past! Totally forgot. Thanks.

        Oh that is the one i used in the past! Totally forgot. Thanks.

        3 votes
    2. Toric
      Link Parent
      for dotfile management, I like to use GNU stow

      for dotfile management, I like to use GNU stow

      7 votes
    3. [3]
      DMBuce
      (edited )
      Link Parent
      To shuffle and play your library with mpd, you can do mpc clear; mpc ls | mpc add; mpc shuffle. Not sure about albums but e.g. mpc clear; mpc search album 'dark side of the moon' | mpc add seems...

      To shuffle and play your library with mpd, you can do mpc clear; mpc ls | mpc add; mpc shuffle.

      Not sure about albums but e.g. mpc clear; mpc search album 'dark side of the moon' | mpc add seems to do the right thing.

      Maybe not that useful for you but just in case, I have a script I could share that can load dynamic playlists defined by file paths, file globs, mpc commands, and songs randomly chosen from other playlists. For example to start playing my entire library on shuffle, I'll run mps all with an "all" playlist defined as:

      /*
      
      repeat on
      random off
      shuffle
      

      or as another example, mps wakeup will load a playlist that I use as an alarm clock. Each song in the playlist is chosen randomly from another sub-playlist.

      # something to get me pumped for the day
      1 wakeup-begin
      # something from adult swim
      1 wakeup-swim
      ## something from a show/movie
      #1 wakeup-soundtrack
      # something techno-ish
      1 wakeup-techno
      # something jazzy
      1 wakeup-jazz
      # something that rocks
      1 wakeup-rock
      # something metal
      1 wakeup-metal
      ## something completely random
      #1 all
      # another thing to get me pumped for the day
      1 wakeup-end
      
      random off
      repeat off
      

      Edit in case it's not clear: the dynamic playlists I showed above are a feature of the script I wrote, not mpd.

      5 votes
      1. crdpa
        (edited )
        Link Parent
        Just made something quickly here. choice=$(printf "all\nartists\nalbums\nplaylists" | wofi -d -p "Music:") playlists() { selection=$(mpc lsplaylists | wofi -d -p "Playlist:") [ -n "$selection" ]...

        Just made something quickly here.

        choice=$(printf "all\nartists\nalbums\nplaylists" | wofi -d -p "Music:")
        
        playlists() {
            selection=$(mpc lsplaylists | wofi -d -p "Playlist:")
            [ -n "$selection" ] && mpc -q clear && \
            mpc -q load "$selection" && mpc -q play
        }
        
        artists() {
            selection=$(mpc list artist | wofi -d -p "Artist:")
            [ -n "$selection" ] && mpc -q clear && \
            mpc -q findadd artist "$selection" && mpc -q random off && mpc -q play
        }
        
        albums() {
            selection=$(mpc list album | wofi -d -p "Album:")
            [ -n "$selection" ] && mpc -q clear && \
            mpc -q findadd album "$selection" && mpc -q random off && mpc -q play
        }
        
        all() {
            mpc -q clear
            mpc -q random on
            mpc -q repeat on
            mpc ls | mpc add
            mpc play
        }
        
        case "$choice" in
            all)
                all
                ;;
            playlists)
                playlists
                ;;
            artists)
                artists
                ;;
            albums)
                albums
                ;;
        esac
        
        5 votes
      2. crdpa
        Link Parent
        Thanks for the tips. Now i see that the advantage of mpd is that you can manipulate with scripts. It is right up my alley.

        Thanks for the tips.

        Now i see that the advantage of mpd is that you can manipulate with scripts. It is right up my alley.

        3 votes
    4. [2]
      petrichor
      Link Parent
      I've found great success using git and the single-byte .gitignore (*). Files must be forcefully staged with git stage -f, but once they are, Git keeps track of them without needing to change the...

      I'm still hunting for a simple dotfile manager to put things on gitlab.

      I've found great success using git and the single-byte .gitignore (*). Files must be forcefully staged with git stage -f, but once they are, Git keeps track of them without needing to change the .gitignore.

      I'm not a big fan of playlists either. Have you tried moc? It's dead simple, kind of unmaintained, but I keep coming back to it.

      2 votes
      1. crdpa
        Link Parent
        I used moc a lot in the past. I prefer cmus because of the simple database. I organize my music neatly in folders always in the same pattern "artist/year - album/track number - track title" so moc...

        I used moc a lot in the past. I prefer cmus because of the simple database.

        I organize my music neatly in folders always in the same pattern "artist/year - album/track number - track title" so moc works well too, but i don't think it plays opus format.

        I archive music in flac on my external hdd, but on the main ssd of my laptop i use opus. It is really good.

        My library in flac is 130Gb, in opus it is only 13Gb.

        1 vote
    5. [2]
      PathOfTheProkopton
      Link Parent
      I'm curious about ncmpcpp. I have been playing with cmus a little bit and really like the idea of having my music in the terminal. I put cmus in a tmux session and set up a mode in i3 so I can...

      I'm curious about ncmpcpp. I have been playing with cmus a little bit and really like the idea of having my music in the terminal. I put cmus in a tmux session and set up a mode in i3 so I can control it, I'm sure there is an easier way to do that.

      That way it just plays in the background without using any space in my workspace.

      Have you used cmus, do you think that you could compare it to ncmpcpp?

      1 vote
      1. crdpa
        Link Parent
        I'm back to cmus actually. Mpd+ncmpcpp is cool, but i think it is too overkill for my needs.

        I'm back to cmus actually.

        Mpd+ncmpcpp is cool, but i think it is too overkill for my needs.

  2. [9]
    DMBuce
    (edited )
    Link
    Looking through my i3 config, here's some things I've done. I have my workstations named with Font Awesome icons so that they look like this in the toolbar thingy (also pictured are the i3blocks...

    Looking through my i3 config, here's some things I've done.

    I have my workstations named with Font Awesome icons so that they look like this in the toolbar thingy (also pictured are the i3blocks widgets I use): https://i.imgur.com/5PiyR2j.png

    I have Flameshot bound to PrtScr so that I can easily take screenshots, mark them up with things like the arrow you see in the status bar screenshot above, and upload them to imgur.

    My background is set randomly from a folder when i3 starts up using fbsetbg.

    I use i3's modes as a simple keybind-driven menu system. For example, I have $mod+g bound to a games menu. I seem to recall adding a few items to the default $mod+q menu as well, that looks like this: https://i.imgur.com/oTECUla.png

    I have $mod+m bound to a music menu that lets me select a source of music, shutting down the current music source if necessary, and is driven by some custom scripts in ~/bin called music, mps, pandora, and radio. Those scripts are also bound to my media keys so that the previous, play/pause, and next buttons always do the right thing.

    I bound $mod+x to a macro menu driven by another pile of custom scripts for capturing/replaying/looping/etc. keystrokes using xmacroplay.

    A feature of i3's I use all the time is its scratchpad, which is an invisible anonymous workspace that you can send floating windows to and from. I always keep a floating shell window in it that I can flip to with $mod+period to run a quick command regardless of the workstation I'm on. And in addition to $mod+Return launching a new terminal, I have $mod+Mod1+Return set to launch a floating terminal.

    I have copyq bound to $mod+c, although I don't use that keybind much. Mostly I use copyq to keep the ctrl+c clipboard synced to the middle click clipboard. I've been meaning to look into a way to keep them synced in the reverse direction, if anyone knows a good way to do that I'd love to hear it.

    Let me know if you want to see configs/scripts/etc. for any of the above.

    7 votes
    1. archwizard
      Link Parent
      Dang, those menus look amazing and useful. I think I'm gonna try doing something similar with rofi. I used to use i3, but I never heard about its scratchpad. It's making me think about switching...

      Dang, those menus look amazing and useful. I think I'm gonna try doing something similar with rofi. I used to use i3, but I never heard about its scratchpad. It's making me think about switching back over.

      Great setup!

      4 votes
    2. [6]
      acdw
      Link Parent
      Damn this is cool as hell. Threads like this always make me want to get really into customizing my machine, but I always end up half-assing it. I love these scripts though!

      Damn this is cool as hell. Threads like this always make me want to get really into customizing my machine, but I always end up half-assing it. I love these scripts though!

      3 votes
      1. PathOfTheProkopton
        Link Parent
        Lol. I'm the same way. I always take a second and look things up and then implement them later. I usually make small changes one by one.

        Lol. I'm the same way.

        I always take a second and look things up and then implement them later. I usually make small changes one by one.

        3 votes
      2. [4]
        mxuribe
        Link Parent
        Similar to me...though i often get interrupted by other stuff in life...and then when i can get back to customization work, its half-assed, i can't remember what my next step was going to be, etc....

        Similar to me...though i often get interrupted by other stuff in life...and then when i can get back to customization work, its half-assed, i can't remember what my next step was going to be, etc. Plus, i'm often needing to jump between so many different machines for work, etc. This set up is really nice!

        3 votes
        1. [3]
          acdw
          Link Parent
          Hard same. I'd love to be able to use my home computer at work. But a lot of my time is making sure I can use something at work (Windows) and at home (Linux) and ... bleh

          i can't remember what my next step was going to be, etc. Plus, i'm often needing to jump between so many different machines for work, etc.

          Hard same. I'd love to be able to use my home computer at work. But a lot of my time is making sure I can use something at work (Windows) and at home (Linux) and ... bleh

          1 vote
          1. [2]
            mxuribe
            Link Parent
            Glad to hear that i'm not alone! :-)

            something at work (Windows) and at home (Linux) and ... bleh

            Glad to hear that i'm not alone! :-)

            1 vote
            1. acdw
              Link Parent
              Oh yeah. I've written a dumb batch script to try and install the stuff I want from upstream sources, since I don't have Admin either. I decided against mingw/etc because i like a hard life :p

              Oh yeah. I've written a dumb batch script to try and install the stuff I want from upstream sources, since I don't have Admin either. I decided against mingw/etc because i like a hard life :p

              1 vote
    3. DMBuce
      Link Parent
      So after seeing what @crdpa was doing with wofi, I started messing around with rofi and added a (C)hoose option to my music menu that lets me select either a dynamic playlist, a Pandora station,...

      So after seeing what @crdpa was doing with wofi, I started messing around with rofi and added a (C)hoose option to my music menu that lets me select either a dynamic playlist, a Pandora station, or a radio station, depending on which player is currently active.

      I also set up a unicode menu for selecting emojis, emoticons, and other various characters using rofimoji. Still very much a work in progress but here's a search in the (M)ath menu: https://i.imgur.com/unByTkO.png

      Also:

      Mostly I use copyq to keep the ctrl+c clipboard synced to the middle click
      clipboard. I've been meaning to look into a way to keep them synced in the
      reverse direction

      I got this working with autocutsel now.

      2 votes
  3. [5]
    petrichor
    Link
    Right now, I'm running GNOME 40 on Arch Linux after abandoning XFCE when they switched to client-side decorations. The Activities overview, touchpad gestures, and slew of extensions are killer...

    Right now, I'm running GNOME 40 on Arch Linux after abandoning XFCE when they switched to client-side decorations. The Activities overview, touchpad gestures, and slew of extensions are killer features. There was no difference in power consumption, which surprised me a little bit (GNOME is a JavaScript behemoth). All I miss from XFCE is the file manager.

    This setup is remarkably unremarkable.

    7 votes
    1. petrichor
      Link Parent
      Oh, a highlight of this setup is KDE Connect / GSConnect, which lets me easily move files back and forth between my phone and computer, send texts, and share notifications. Not enough people know...

      Oh, a highlight of this setup is KDE Connect / GSConnect, which lets me easily move files back and forth between my phone and computer, send texts, and share notifications. Not enough people know about it, and it works nearly flawlessly. Very similar to some of Apple's integration features.

      3 votes
    2. [2]
      PopeRigby
      Link Parent
      Couldn't you still use Thunar on GNOME?

      All I miss from XFCE is the file manager.

      Couldn't you still use Thunar on GNOME?

      1 vote
      1. petrichor
        Link Parent
        Yeah, you're right. Looks like it has way fewer dependencies than I thought. Thanks, I'll go get it set up.

        Yeah, you're right. Looks like it has way fewer dependencies than I thought.

        Thanks, I'll go get it set up.

        2 votes
    3. lionirdeadman
      Link Parent
      Most of GNOME Shell is handled by Mutter which is C. The UI is JS (Shell Toolkit) and there's still some stuff there but I wouldn't call it a behemoth though. Although with extensions that...

      (GNOME is a JavaScript behemoth)

      Most of GNOME Shell is handled by Mutter which is C. The UI is JS (Shell Toolkit) and there's still some stuff there but I wouldn't call it a behemoth though. Although with extensions that obviously increases the percentage of JS.

      1 vote
  4. [2]
    archwizard
    Link
    This seems fun! Here's my current setup bspwm(Xorg). I'm fairly happy with it, but I'm planning on starting over once I'm free of school, since everything has become a mess. Like DMBuce, I'm using...

    This seems fun! Here's my current setup bspwm(Xorg). I'm fairly happy with it, but I'm planning on starting over once I'm free of school, since everything has become a mess.

    Like DMBuce, I'm using Flameshot, since being able to easily take screenshots and annotate on them is really handy, especially when I was working on my OSCP.

    The most fun parts, I think, are the music display and the background. I normally listen to Spotify (I used to just have mp3 files, but Spotify is just so convenient) , and the Linux player supports playerctl, so I have a little script that reads the currently playing song and displays it using skroll on Polybar. I don't change background images, since I like having the background fit the colors, and I haven't played with pywal yet to update colors automatically, but I do have a script that uses Image Magick to replace the quote on my desktop every ten minutes with something from the fortune command.

    I'd share a link to a dotfiles repo, and I used to track my dotfiles using Stow, but over time, and as I've switched software, my git repository has become really out of date, but if y'all are interested in anything, I can share any of my configs.

    Looking forward to seeing y'all's setups!
    ~Archwizard

    5 votes
    1. mxuribe
      Link Parent
      The gaps between the windows are really nice in how they expose the underlying (awesome) desktop wallpaper! Kudos!

      The gaps between the windows are really nice in how they expose the underlying (awesome) desktop wallpaper! Kudos!

      2 votes
  5. [6]
    tomf
    Link
    This is easily the most boring one in the thread -- https://i.imgur.com/dzMl6N3.png This shitty Toshiba Chromebook 2 runs GalliumOS (Xubuntu) w/ i3, zsh, surf, etc. Not very exciting. This is my...

    This is easily the most boring one in the thread -- https://i.imgur.com/dzMl6N3.png

    This shitty Toshiba Chromebook 2 runs GalliumOS (Xubuntu) w/ i3, zsh, surf, etc. Not very exciting. This is my 'on the town' laptop. Its got a ~10hr battery, which is really handy. Its a 13" screen @ 1080p and is actually really nice to look at. The keyboard and trackpad are also excellent.

    5 votes
    1. [4]
      archwizard
      Link Parent
      Boy, your setup looks great! I really like the simple background and the small bar. Is that surf showing the tildes website? How does it perform as a browser for you?

      Boy, your setup looks great! I really like the simple background and the small bar.

      Is that surf showing the tildes website? How does it perform as a browser for you?

      3 votes
      1. [3]
        tomf
        Link Parent
        Thanks! Surf is pretty good, actually. I don't use it on my main system, but for this little laptop, it works well for sites like HN, Tildes, etc. It isn't bad with Reddit, but I still use...

        Thanks! Surf is pretty good, actually. I don't use it on my main system, but for this little laptop, it works well for sites like HN, Tildes, etc. It isn't bad with Reddit, but I still use Chromium for the mod tools.

        Here are all of the wallpapers. With MacOS I have them rotate every hour as a way to roughly track time. :)

        2 votes
        1. [2]
          Cycloneblaze
          Link Parent
          I might use those wallpapers for my own desktop, if you wouldn't object! I like the colourful variety.

          I might use those wallpapers for my own desktop, if you wouldn't object! I like the colourful variety.

          3 votes
          1. tomf
            Link Parent
            Do it up! It’s all Dracula.

            Do it up! It’s all Dracula.

            2 votes
  6. gpl
    Link
    Hell yeah I love that stuff. I run arch with i3 as well, and I spent some time about a year ago trying to customize it but didn't get super far. I've been meaning to take a weekend and switch wm...

    Hell yeah I love that stuff. I run arch with i3 as well, and I spent some time about a year ago trying to customize it but didn't get super far. I've been meaning to take a weekend and switch wm and really get things set up as I like but haven't found the time yet. I'd be interested in seeing what you have. I'd offer to share my dot files and such but they as unimpressive as they are disorganized.

    4 votes
  7. [4]
    RNG
    Link
    I use Pop!_OS default with the built-in tiling manager. Aesthetically pleasing, and very helpful for getting stuff done.

    I use Pop!_OS default with the built-in tiling manager. Aesthetically pleasing, and very helpful for getting stuff done.

    4 votes
    1. [3]
      PathOfTheProkopton
      Link Parent
      The screenshots I shared are from Pop_OS too. Its really a great OS. I just really wanted a real twm again.

      The screenshots I shared are from Pop_OS too.

      Its really a great OS. I just really wanted a real twm again.

      1 vote
      1. [2]
        RNG
        Link Parent
        How does your twm compare to the Pop!_OS default implementation?

        How does your twm compare to the Pop!_OS default implementation?

        1. PathOfTheProkopton
          Link Parent
          I haven't tried the pop_os implementation in 8 to 10 months, but I understand there has been a lot of changes since then. I switched because I couldn't use $mod+1 (as an example) to switch to...

          I haven't tried the pop_os implementation in 8 to 10 months, but I understand there has been a lot of changes since then.

          I switched because I couldn't use $mod+1 (as an example) to switch to workspace one at the time. I had to use $mod+ctrl+up/down which I really didn't like. On my current setup I have an icon script that adds icons for the programs running in each workspace to the bar. Compared to the pop os version, (other than an ugly addon) there wasn't a way to see which workspace I was in.

          So at the time it was really lacking, and I'm sure they've improved since then. Although, after taking the time to configure everything the exact way I like I'll be sticking with twms.

  8. [11]
    lionirdeadman
    Link
    Joining late too, I use Fedora Silverblue 34. Audio is handled by Pipewire, Display protocol is Wayland, Shell is zsh. I don't use any GNOME extensions nor modified the GTK Stylesheet. I use...

    Joining late too, I use Fedora Silverblue 34.

    Audio is handled by Pipewire, Display protocol is Wayland, Shell is zsh. I don't use any GNOME extensions nor modified the GTK Stylesheet. I use Flatpaks for most if not all my applications.

    I think that's pretty much everything I'd really note about it.

    Here's a screenshot for it, the fox is Xenia, she was one of the choices proposed for a Linux mascot and I like her quite a bit. The wallpaper was made by my friend.

    3 votes
    1. [5]
      knocklessmonster
      Link Parent
      Do you have the option for anything else? I thought Silverblue was intended to be only flatpaks anyway.

      I use Flatpaks for most if not all my applications.

      Do you have the option for anything else? I thought Silverblue was intended to be only flatpaks anyway.

      2 votes
      1. [4]
        lionirdeadman
        Link Parent
        You do! You can use toolbox or rpm-ostree to install things in a container or on the base system. The order in which you should install things should basically always be : Flatpak > Toolbox >...

        You do! You can use toolbox or rpm-ostree to install things in a container or on the base system.

        The order in which you should install things should basically always be :
        Flatpak > Toolbox > rpm-ostree

        Flatpak should work if it's a graphical application. If it doesn't or it's needed for development, toolbox is preferred because you can get rid of it easily and reproduce it. If that's not possible because it's a system-level thing like say, zsh, adb, lm_sensors or things like that, you use rpm-ostree. It may require a reboot but nowadays you can rpm-ostree ex apply-live to avoid that.

        1 vote
        1. [3]
          knocklessmonster
          Link Parent
          Does ostree create system states like nix does, or am I missing something? That looks pretty cool, and I may put silverblue on a test laptop for fun.

          Does ostree create system states like nix does, or am I missing something? That looks pretty cool, and I may put silverblue on a test laptop for fun.

          1. [2]
            lionirdeadman
            Link Parent
            It has "deployements" which I think are similar to what you're asking. This is my current system : rpm-ostree status State: idle Deployments: ostree://fedora:fedora/34/x86_64/silverblue Version:...

            It has "deployements" which I think are similar to what you're asking.

            This is my current system :

            rpm-ostree status
            State: idle
            Deployments:
              ostree://fedora:fedora/34/x86_64/silverblue
                               Version: 34.20210501.0 (2021-05-01T02:43:16Z)
                            BaseCommit: abbcef71d901c2328098bf7d2480521f361cccf61ef1cb93ac4a9a9508269c2c
                          GPGSignature: Valid signature by 8C5BA6990BDB26E19F2A1A801161AE6945719A39
                                  Diff: 2 added
                   RemovedBasePackages: xorg-x11-drv-fbdev 0.5.0-8.fc34, xorg-x11-drv-evdev 2.10.6-9.fc34, xorg-x11-drv-qxl 0.1.5-19.fc34, xorg-x11-drv-openchrome 0.6.400-1.20210215git5dbad06.fc34, xorg-x11-server-Xorg 1.20.11-1.fc34, xorg-x11-drv-vmware 13.2.1-15.fc34, xorg-x11-drv-wacom 0.40.0-1.fc34, gnome-session-xsession 40.1.1-1.fc34, xorg-x11-drv-vesa 2.4.0-11.fc34, xorg-x11-drv-nouveau 1:1.0.15-11.fc34, xorg-x11-drv-amdgpu 19.1.0-8.fc34, xorg-x11-drv-ati 19.1.0-5.fc34, firefox 88.0-5.fc34, xorg-x11-drv-intel 2.99.917-50.20200205.fc34, xorg-x11-drv-libinput 1.0.1-1.fc34
                  ReplacedBasePackages: flatpak-libs flatpak flatpak-selinux flatpak-session-helper 1.10.2-3.fc34 -> 1.11.1-1.fc34
                       LayeredPackages: abrt adb dconf-editor docker-compose flatpak-builder gnome-abrt gnome-usage lm_sensors power-profiles-daemon zsh zstd
            
            ● ostree://fedora:fedora/34/x86_64/silverblue
                               Version: 34.20210501.0 (2021-05-01T02:43:16Z)
                            BaseCommit: abbcef71d901c2328098bf7d2480521f361cccf61ef1cb93ac4a9a9508269c2c
                          GPGSignature: Valid signature by 8C5BA6990BDB26E19F2A1A801161AE6945719A39
                   RemovedBasePackages: xorg-x11-drv-fbdev 0.5.0-8.fc34, xorg-x11-drv-evdev 2.10.6-9.fc34, xorg-x11-drv-qxl 0.1.5-19.fc34, xorg-x11-drv-openchrome 0.6.400-1.20210215git5dbad06.fc34, xorg-x11-server-Xorg 1.20.11-1.fc34, xorg-x11-drv-vmware 13.2.1-15.fc34, xorg-x11-drv-wacom 0.40.0-1.fc34, gnome-session-xsession 40.1.1-1.fc34, xorg-x11-drv-vesa 2.4.0-11.fc34, xorg-x11-drv-nouveau 1:1.0.15-11.fc34, xorg-x11-drv-amdgpu 19.1.0-8.fc34, xorg-x11-drv-ati 19.1.0-5.fc34, firefox 88.0-5.fc34, xorg-x11-drv-intel 2.99.917-50.20200205.fc34, xorg-x11-drv-libinput 1.0.1-1.fc34
                  ReplacedBasePackages: flatpak-libs flatpak flatpak-selinux flatpak-session-helper 1.10.2-3.fc34 -> 1.11.1-1.fc34
                       LayeredPackages: abrt adb dconf-editor docker-compose flatpak-builder gnome-abrt gnome-usage power-profiles-daemon zsh zstd
            
              ostree://fedora:fedora/34/x86_64/silverblue
                               Version: 34.20210430.0 (2021-04-30T00:39:49Z)
                            BaseCommit: 9b55a57e2ee6844408a199b833ec9ee5cac1b01563583ecc9aee26c139ad55b7
                          GPGSignature: Valid signature by 8C5BA6990BDB26E19F2A1A801161AE6945719A39
                   RemovedBasePackages: xorg-x11-drv-fbdev 0.5.0-8.fc34, xorg-x11-drv-evdev 2.10.6-9.fc34, xorg-x11-drv-qxl 0.1.5-19.fc34, xorg-x11-drv-openchrome 0.6.400-1.20210215git5dbad06.fc34, xorg-x11-server-Xorg 1.20.11-1.fc34, xorg-x11-drv-vmware 13.2.1-15.fc34, xorg-x11-drv-wacom 0.40.0-1.fc34, gnome-session-xsession 40.1.1-1.fc34, xorg-x11-drv-vesa 2.4.0-11.fc34, xorg-x11-drv-nouveau 1:1.0.15-11.fc34, xorg-x11-drv-amdgpu 19.1.0-8.fc34, xorg-x11-drv-ati 19.1.0-5.fc34, firefox 88.0-5.fc34, xorg-x11-drv-intel 2.99.917-50.20200205.fc34, xorg-x11-drv-libinput 1.0.1-1.fc34
                  ReplacedBasePackages: flatpak-libs flatpak flatpak-selinux flatpak-session-helper 1.10.2-3.fc34 -> 1.11.1-1.fc34
                       LayeredPackages: adb dconf-editor docker-compose flatpak-builder gnome-usage power-profiles-daemon zsh zstd
            
              ostree://fedora:fedora/33/x86_64/silverblue
                               Version: 33.20210207.0 (2021-02-07T00:56:44Z)
                            BaseCommit: 14706469057c430ff7484aee7014bc44ceed975c2367c60da5b4927918aaaeab
                          GPGSignature: Valid signature by 963A2BEB02009608FE67EA4249FD77499570FF31
                       LayeredPackages: compsize fish podman-compose
                                Pinned: yes
            
            1 vote
            1. knocklessmonster
              Link Parent
              That looks about like I was expecting, but I don't have the vocabulary for it.

              That looks about like I was expecting, but I don't have the vocabulary for it.

              1 vote
    2. [5]
      Dobbie03
      Link Parent
      How have you found pipewire? I installed the other day and have had a constant barrage of stuttering audio.

      How have you found pipewire? I installed the other day and have had a constant barrage of stuttering audio.

      2 votes
      1. [2]
        lionirdeadman
        Link Parent
        My experience has been pretty good. There was a early bug about a month or two ago where it needed a hack for gnome but that's been fixed a while ago.

        My experience has been pretty good. There was a early bug about a month or two ago where it needed a hack for gnome but that's been fixed a while ago.

        1 vote
        1. Dobbie03
          Link Parent
          Hmmm, maybe I should look into it further.

          Hmmm, maybe I should look into it further.

          1 vote
      2. [2]
        knocklessmonster
        Link Parent
        Which version/distribution? I'm using Bullseye, and it's version, 3.19, worked totally fine for me. I rolled back because of what seemed to be a polkit/udev issue with a specific piece of...

        Which version/distribution? I'm using Bullseye, and it's version, 3.19, worked totally fine for me. I rolled back because of what seemed to be a polkit/udev issue with a specific piece of hardware, but it was nice before that.

        1 vote
        1. Dobbie03
          Link Parent
          3.26 on Arch. I didn't bother looking into it to be honest, I just went back to pulseaudio.

          3.26 on Arch. I didn't bother looking into it to be honest, I just went back to pulseaudio.

          1 vote
  9. [7]
    Dobbie03
    Link
    I love customising my dwm desktop though I have got to a point where it is no longer needing changing. All I change now is the wallpaper.

    I love customising my dwm desktop though I have got to a point where it is no longer needing changing. All I change now is the wallpaper.

    2 votes
    1. [6]
      PathOfTheProkopton
      Link Parent
      Do you mind sharing what you have made so far?

      Do you mind sharing what you have made so far?

      2 votes
      1. [5]
        Dobbie03
        Link Parent
        There is very little to look at visually. I don't use a bar and everything is rather basic looking. My Suckless configs are here. My main, everyday use dwm configs are extended from this original...

        There is very little to look at visually. I don't use a bar and everything is rather basic looking. My Suckless configs are here. My main, everyday use dwm configs are extended from this original config. I have a completely custom version of dwm that uses polybar that I built myself after many days of manually patching dwm, that config can be found in the dwm-polybar folder in my repo linked above.

        Everything else I have "borrowed" and configured to suit myself.

        Here are some screenshots:
        normal desktop, a few terminals with some obligatory unixporn offerings, Qutebrowser and Thunar and finally the desktop with the bars I normally have hidden.

        3 votes
        1. [4]
          PathOfTheProkopton
          Link Parent
          I love the simplicity. I'm new to this so I kind of went over the top with colors. Lol I might graduate to dwm some day.

          I love the simplicity.

          I'm new to this so I kind of went over the top with colors. Lol

          I might graduate to dwm some day.

          2 votes
          1. [3]
            Dobbie03
            Link Parent
            It took me a few years to get on to dwm. Initially, I didn't like having to compile every time I made a change and I took forever to understand how the tags (workspaces) work. Now, I wouldn't go...

            It took me a few years to get on to dwm.

            Initially, I didn't like having to compile every time I made a change and I took forever to understand how the tags (workspaces) work. Now, I wouldn't go back to anything else unless I absolutely had to.

            1. [2]
              PathOfTheProkopton
              Link Parent
              Yeah, I am probably going to jump from wm to wm until I find something that really works for me. I've been considering bspwm.

              Yeah, I am probably going to jump from wm to wm until I find something that really works for me.

              I've been considering bspwm.

              1 vote
              1. Dobbie03
                Link Parent
                Nice, I never really clicked with bspwm. I just stuck with i3 until I got the hang of dwm.

                Nice, I never really clicked with bspwm. I just stuck with i3 until I got the hang of dwm.

  10. hail_hydrogen
    Link
    Late to the party but here is my setup. Boring arch with kde. The first goal was a setup usable either with mouse only (when lazying in bed) and with keyboard only (for doing work). The bar allows...

    Late to the party but here is my setup. Boring arch with kde.
    The first goal was a setup usable either with mouse only (when lazying in bed) and with keyboard only (for doing work).
    The bar allows access with a mouse to all applications and kde also has customizable keybinds for everything.

    The second goal was to save space on this small 1366x768 screen.
    Kde allows to hide the application top bar when applications are maximized so on the right I have controls for the windows (minimize, close etc). This saves space while maintaining usability.

    https://i.ibb.co/6WQBkKF/Screenshot-20210501-212604.png

    2 votes
  11. Wulfsta
    Link
    Yeah, I don’t have time to share right now, but I’ll definitely look over others!

    Yeah, I don’t have time to share right now, but I’ll definitely look over others!

    1 vote
  12. PopeRigby
    Link
    Here's my setup. As you can see, I'm using Sway on Arch Linux (original, I know.) Here are my dotfiles. The thing I'm most proud of is the grabweather script. I wanted to have a small script that...

    Here's my setup. As you can see, I'm using Sway on Arch Linux (original, I know.) Here are my dotfiles. The thing I'm most proud of is the grabweather script. I wanted to have a small script that updates my Waybar with the weather and temperature, but I couldn't find one, so I made my own.

    1 vote
  13. [2]
    Comment deleted by author
    Link
    1. PathOfTheProkopton
      (edited )
      Link Parent
      I just recently switched to manjaro i3. I just copied my configs over from pop_os and it's been really nice. I had so much trouble getting things to work on pop_os but so far I've been really...

      I just recently switched to manjaro i3. I just copied my configs over from pop_os and it's been really nice.

      I had so much trouble getting things to work on pop_os but so far I've been really impressed with manjaro.

  14. knocklessmonster
    Link
    I wasn't going to just rig a screenshot, but was doing some work on my Planck's layout (adding a couple numpad layers) and saw an opportunity to show everything essentially at once vertical 2x1080...

    I wasn't going to just rig a screenshot, but was doing some work on my Planck's layout (adding a couple numpad layers) and saw an opportunity to show everything essentially at once

    vertical 2x1080 warning

    I've had more or less this same sort of setup for a few years, with XFCE and i3 in separate sessions because sometimes I just want a "traditional" interface for some tasks. It's just Arc Dark + Nord theming because it looks reasonably good. I mostly use Spotify these days, and wrote a simple i3blocks+playerctl script to display its output. It's on Debian Bullseye.

  15. [3]
    Deimos
    Link
    Could we just edit this into a "share your linux desktop/setup" thread (or however you want to word it)? I can change the title for you, but you'll have to update the post's text. It's already...

    Could we just edit this into a "share your linux desktop/setup" thread (or however you want to word it)? I can change the title for you, but you'll have to update the post's text.

    It's already starting to move in that direction, and in general there's no need to make "Is anyone interested in X?" posts, you can just post X and see if people participate.

    28 votes
    1. [2]
      PathOfTheProkopton
      Link Parent
      Yeah that's fine. I'll change the post's text whenever that happens and I'll add my screenshots and such.

      Yeah that's fine. I'll change the post's text whenever that happens and I'll add my screenshots and such.

      6 votes
      1. cfabbro
        (edited )
        Link Parent
        Done. And IMO, the topic text probably doesn't even need changing, since it still fits even with the new title, but feel free to anyways if you wish. :)

        Done. And IMO, the topic text probably doesn't even need changing, since it still fits even with the new title, but feel free to anyways if you wish. :)

        3 votes