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

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

I recently started using Aerospace, a tiling window manager for #macOS. Here’s my config: https://gist.github.com/EReaso/9bef982db1790a2d80f0f4a4b1f8b7a7
#windowmanager #tiling_wm #productivity #mac #freesoftware #software #opensource
in the raising of QuickShells in #Linux, and if you're a user of them, which of the following would you choose and why?
🧑💻
#hyprland #niri #tillingWMs #windowmanager #tillingdesktop #quickshell
#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
Separating the Wayland Compositor and Window Manager
https://isaacfreund.com/blog/river-window-management/
#HackerNews #Wayland #Compositor #WindowManager #Linux #Development #OpenSource #Technology
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!
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:
+----------------------+
| |
| |
| |
| |
| |
| |
+----------------------++----------------------+
| |
| |
| |
|----------------------|
| |
| |
| |
+----------------------++----------------------+
| |
| |
| |
|----------------------|
| | |
| | |
| | |
+----------------------+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
❯ git stash.Mod-Shift-e - Mod ist in der Regel Alt 😉 Ein Terminal, damit man überhaupt was machen kann, startet man mit Mod-Enter.Nur Mut!
An interesting tiling Window Manager has spawned upon the Open Source plane
kuskokwim
Dependencies
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
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.
This excellent video and link to the configs by @justaguylinux has me wanting to install and explore i3wm:
https://www.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.
