home.social

#window-manager — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #window-manager, aggregated by home.social.

fetched live
  1. "what if you had an extra mouse button to manipulate windows movement" #ux #uxdesign

    from this video: youtu.be/1fZTOjd_bOQ?si=rlMZAr

    well, obviously. That is why, for almost 2 decades now, I always have a mouse with extra buttons and always map the super/win-key to one of the side buttons and always configure my #windowmanager to use the super/win key to manipulate windows.

    But I just realized, many won't ever have considered this trick.

    #gnome #paperwm

  2. Was mache ich da? Ich verbessere weiter meine #Xmonad Konfiguration!

    Für Gaming kann ich nun mit Mod+F das Dock ausblenden. Was sonst noch zu tun ist, ist dass ich mein Esc+Capslock-Swap rückgängig machen muss. Einige Games nutzen Capslock.

    #Linux #windowmanager

  3. My imagination:🙊

    In future,
    any terminal, browser, terminal multiplexers, window managers all will have a common UX pattern like
    1) Vertical or horizontal tabs
    2) tiling, scrollable tiling(like niri)
    etc etc for a similar UX for easier engagement and management.

    Taking the features of one from the other will bring this soon❤️

    #uiux #uxdesign #Browser #terminal #Terminalmultiplexer #windowmanager #tilingwm #tiling

  4. Is there a / that lets me display apps with different GTK themes displayed on which display (eg. external monitor) it's displayed on?

    :boostRequest:

  5. in the raising of QuickShells in #Linux, and if you're a user of them, which of the following would you choose and why? :linux: 🧑‍💻

    #hyprland #niri #tillingWMs #windowmanager #tillingdesktop #quickshell

  6. #OverUnder 05r76 with Zak.

    Zak maintains a small-web space with a focus on tech tinkering, running and gardening.

    Today, he shares his thoughts about #slowmovement, #SSG, #KDE, #Neocities, and #Gouda.

    He also replied to @gregmignard's question.

    #bloggers #bookstodon #books #blog #fediverse #opensource #windowmanager #cheese #writing #bloggers #mastodon

    lazybea.rs/ovr-057

  7. I recently heard about the coming changes to River 0.4.0 and decided to start writing my own window manager for it. I was very excited to get to the stage of seeing a window appear for the first time this morning, and then it turns out 0.4.0 came out today!

    isaacfreund.com/blog/river-win

  8. Erstes Fazit zu #sway

    Wie geil ist das denn bitte? Doch der Reihe nach: sway ist ein #Windowmanager für #Linux - es ist ein weitverbreteter Irrtum, man würde eine komplette Desktop-Umgebung wie Gnome, KDE usw. brauchen. Nein, braucht man nicht.
    sway gehört zur Gattung der Tiling Windomanager, das heißt: Fenster werden grundsätzlich als Kacheln angeordnet, nebeineinander oder übereinander, aber nie überlappend. Die Suche nach dem tollsten Wallpaper erübrigt sich also 😉
    Wie üblich gibt es Workspaces. Das erste Programm, das in einem Workspace gestartet wird, nimmt grundsätzlich jeden verfügbaren Platz ein, man nennt diesen Platz Container. Der ist eben so groß wie der Bildschirm ist.
    Sagen wir so:

    +----------------------+
    |                      |
    |                      |
    |                      |
    |                      |
    |                      |
    |                      |
    +----------------------+

    Nun startet ein zweite Programm in dem Container. Man kann entscheiden, ob der nun verikal oder horizontal gesplittet werden soll, sagen wir vertikal (vertikal heißt: der Container ist vertikal ausgerichtet) Es entsteht dieses Layout:
    +----------------------+
    |                      |
    |                      |
    |                      |
    |----------------------|
    |                      |
    |                      |
    |                      |
    +----------------------+

    Wir haben nun zwei Container. Jetzt können wir ein drittes Programm im unteren Container starten, nun splitten wir horizontal. Kein Problem:
    +----------------------+
    |                      |
    |                      |
    |                      |
    |----------------------|
    |           |          |
    |           |          |
    |           |          |
    +----------------------+

    Selbstverständlich lassen sich die Grenzen in jede Richtung verschieben, nur der äußere Rahmen nicht.
    Das ist nicht immer praktisch, zum Beispiel bei Gimp nicht, wo jedes neue Palettenfenster fest in einer neuen Kachel wäre. Also kann man definieren, daß ein bestimmtes Programm immer im Fenstermodus ("floating") startet, dann kann man das Fenster frei mit Maus oder Tastatur verschieben und verkleinern/vergrößern. Man kann auch im Nachhinein ein tiled Fenster floating machen und wieder zurück.
    Man kann einen kompletten Container tabbed oder stacked machen, so daß die Fenster immer fast im Vollbild laufen, man sieht dann nur noch die Titelleisten der anderen Fenster. Generisches Vollbild geht auch, dann gibts gar keine Titelleisten mehr. Ach ja: Wenn man will (und man will) kann man eine minimalistische Statusleiste haben. Meine sieht so aus momentan:

    Ein Startmenü gibt es nicht, dafür aber eine Tastenkombination für einen App Launcher. Apropos Tastenkombinationen: fast alles wird über eine Tastenkombination bedient, manches geht auch mit der Maus, aber die ist eher eine Notalternative. Da bleibt es nicht aus, daß es viele Tastenkombinationen gibt:

    ❯ grep -P '^\s*bindsym' .config/sway/config
        bindsym $mod+Return exec $term
        bindsym $mod+Shift+q kill
        bindsym $mod+d exec $menu
        bindsym $mod+Shift+c reload
        bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
        bindsym $mod+$left focus left
        bindsym $mod+$down focus down
        bindsym $mod+$up focus up
        bindsym $mod+$right focus right
        bindsym $mod+Left focus left
        bindsym $mod+Down focus down
        bindsym $mod+Up focus up
        bindsym $mod+Right focus right
        bindsym $mod+Shift+$left move left
        bindsym $mod+Shift+$down move down
        bindsym $mod+Shift+$up move up
        bindsym $mod+Shift+$right move right
        bindsym $mod+Shift+Left move left
        bindsym $mod+Shift+Down move down
        bindsym $mod+Shift+Up move up
        bindsym $mod+Shift+Right move right
    bindsym $mod+1 workspace $ws1
    bindsym $mod+2 workspace $ws2
    bindsym $mod+3 workspace $ws3
    bindsym $mod+4 workspace $ws4
    bindsym $mod+5 workspace $ws5
    bindsym $mod+6 workspace $ws6
    bindsym $mod+7 workspace $ws7
    bindsym $mod+8 workspace $ws8
    bindsym $mod+9 workspace $ws9
    bindsym $mod+0 workspace $ws10
    bindsym $mod+Shift+1 move container to workspace $ws1
    bindsym $mod+Shift+2 move container to workspace $ws2
    bindsym $mod+Shift+3 move container to workspace $ws3
    bindsym $mod+Shift+4 move container to workspace $ws4
    bindsym $mod+Shift+5 move container to workspace $ws5
    bindsym $mod+Shift+6 move container to workspace $ws6
    bindsym $mod+Shift+7 move container to workspace $ws7
    bindsym $mod+Shift+8 move container to workspace $ws8
    bindsym $mod+Shift+9 move container to workspace $ws9
    bindsym $mod+Shift+0 move container to workspace $ws10
        bindsym $mod+b splith
        bindsym $mod+v splitv
        bindsym $mod+s layout stacking
        bindsym $mod+w layout tabbed
        bindsym $mod+e layout toggle split
        bindsym $mod+f fullscreen
        bindsym $mod+Shift+space floating toggle
        bindsym $mod+space focus mode_toggle
        bindsym $mod+a focus parent
        bindsym $mod+Shift+minus move scratchpad
        bindsym $mod+minus scratchpad show
        bindsym $left resize shrink width 10px
        bindsym $down resize grow height 10px
        bindsym $up resize shrink height 10px
        bindsym $right resize grow width 10px
        bindsym Left resize shrink width 10px
        bindsym Down resize grow height 10px
        bindsym Up resize shrink height 10px
        bindsym Right resize grow width 10px
        bindsym Return mode "default"
        bindsym Escape mode "default"
    bindsym $mod+r mode "resize"
        bindsym --locked XF86AudioMute exec pactl set-sink-mute \@DEFAULT_SINK@ toggle
        bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume \@DEFAULT_SINK@ -5%
        bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume \@DEFAULT_SINK@ +5%
        bindsym --locked XF86AudioMicMute exec pactl set-source-mute \@DEFAULT_SOURCE@ toggle
        bindsym --locked XF86MonBrightnessDown exec brightnessctl set 5%-
        bindsym --locked XF86MonBrightnessUp exec brightnessctl set 5%+
    bindsym XF86MonBrightnessUp exec brightnessctl set +10%
    bindsym XF86MonBrightnessDown exec brightnessctl set 10%-
    bindsym XF86AudioMute        exec pactl set-sink-mute @DEFAULT_SINK@ toggle
    bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
    bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
    bindsym $mod+Ctrl+Shift+3 exec grim - | wl-copy && paplay /usr/share/sounds/freedesktop/stereo/camera-shutter.oga
    bindsym $mod+Ctrl+Shift+4 exec grim -g "$(slurp)" - | wl-copy && paplay /usr/share/sounds/freedesktop/stereo/camera-shutter.oga
    bindsym $mod+t exec sh -c 'nmcli -t -f NAME,TYPE connection show --active | grep -q "^OVPN:vpn" && nmcli connection down OVPN || nmcli connection up OVPN'
    bindsym $mod+Tab exec ~/.config/sway/window-switcher.sh
    ❯ 

    Ne Menge Holz, das erstmal in die Fingerhirne eingetackert werden muß 😉
    Und etwas sehr praktisches: Das Scratchpad. Das ist unsichtbar, dorthin kann man Anwendungen verschieben, die ständig laufen, aber nicht stören sollen. Bei mir ist das der Sonos-Controller: Den hole ich mir mit einer Tastenkombination auf den Bilschirm, egal, in welchem Workspace ich bin, und genauso schnell verschwindet er auch wieder. Oder die Notizen-App. Eine Art git stash.
    Das ganze Konzept ist sehr durchdacht. Durchdacht insofern, daß man alles, wirklich alles, frei konfigurieren kann. Das ist knorke, das ist fetzig.
    Man mag meinen, nicht für jedermann, weil nerdig..
    Da komme ich ins Philosophieren: Ist das wirklich so? Vielleicht für jemanden, der von Windows weg ist zu Linux, es soll sich aber bitte genau so verhalten wie Windows (ohne dessen Fallstricke, das ist aber ein frommer Wunsch, Linux hat halt andere Fallstricke)
    Was aber wäre, wenn jemand mit so einem tiling Windowmanager groß geworden wäre und nun sich mit Windows auseinandersetzen müßte? Er würde das ganze Konzept nicht verstehen, übrigens auch das von Gnome/KDE… nicht.
    Vor Jahrzehnten ging mal das Gerücht über eine Sekretärin am chemischen Institut der FSU Jena: Die hatte ihre Briefe schon immer in LaTeX geschrieben und bekam nun ein Word mit dem Befehl, ab sofort in Word zu schreiben. Und was machte sie? Schrieb ihre LaTeX-Quellen eben in Word…
    Also: probiert mal sway aus, länger als nur ein paar Tage. Einfach installieren und am Login-Manager sway auswählen.
    Für vi-Opfer: Man kommt raus mit Mod-Shift-e - Mod ist in der Regel Alt 😉 Ein Terminal, damit man überhaupt was machen kann, startet man mit Mod-Enter.

    Nur Mut!

  9. An interesting tiling Window Manager has spawned upon the Open Source plane

    kuskokwim

    Dependencies

    • Python
    • has Vim VimMasterRace bindings
    • Wayland River compositor (>= 0.4).
    • alpha version

    Interesting points
    *   Composable keybindings inspired by vim
    *   Spawned processes can be tracked and restarted, bound to keys, etc.
    *   Many other objects (workspaces, outputs, windows, etc.) can be bound to keys
    *   Preferentially attach workspaces to specific outputs

    #kuskokwim #Wayland #Tiling #window #manager #windowmanager #Linux #BSD #Vim #VimMasterRace #Bram #Molenaar #no #Xorg #modern #technology #programming #Ricci #coding #art

    codeberg.org/ricci/kuskokwim

  10. Honestly, I don’t think Cosmic Desktop is as revolutionary as many people seem to claim. Don’t get me wrong, it’s nice and functional, but still very immature and definitely not revolutionary. In practice, it’s GNOME with tiling. Niri is revolutionary, but it’s a Window Manager, not a Desktop Environment. That’s where Dank Shell comes in: I’ve been using Niri + Dank Shell for two months, and the level of convenience is truly revolutionary.

    #Linux #niri #gnome #windowmanager #cosmic

  11. This excellent video and link to the configs by @justaguylinux has me wanting to install and explore i3wm:

    youtube.com/watch?v=0xrUVjFKD6E

    I have this notion of configuring my Xorg desktop on Alpine Linux to have a single desktop with all windows as tabs, and i3wm has a built-in tab mode.

  12. @passthejoe
    I use a tiling window manager in which I can create and manage terminals easily. Is there some reason I might want to use a terminal multiplexer?
    #linux #terminal #windowmanager

  13. I've removed KDE from my main system. There's much to like about it, but I haven't used it for months. Now I vacillate between Hyprland and Niri.
    No more graphical text editors! Just nvim.
    I haven't removed my graphical file manager yet. That will be next to go; I'm using Ranger more and more.
    #linux #terminal #windowmanager #minimalism

  14. @dennyhenke I was just looking for a #WindowManager that could use those themes, but I fear there aren't any, even in the #GNUStep camp which should be the nearer to those sensibilities (I used unar theunarchiver.com/command-line to unpack those SIT files from @macthemes

  15. Would it be too much if I started reacting to seeing #Windows interfaces by pretending I didn't know which #Linux #WindowManager that was? Maybe recommending they switch to #KDE? :kde: :linux:

  16. Also, I think the #WindowManager needs to support #UTF8 natively, so the title bar doesn't show #bakemoji when viewing a page with #Japanese. Not sure why, but on my #Gentoo box, #Fluxbox does not show Japanese in the title bar.

  17. On a completely unrelated note, I think imma try this #Niri #WindowManager I keep hearing about. Gonna throw the Niri version of #PikaOS on my laptop and dive straight into deep end.

    Oh, have I told y'all that The Owlbear is running PikaOS on their gaming computer? And is rather liking it? I know, the Owlbear running #Debian based #Linux. I'm as surprised as anyone.

    (FTR before anyone jumps on me, I have absolutely nothing against Debian, and in fact recognize it as possibility the most important of the major distributions; any and all shots I make at Debian are jokes.)