Your Android phone runs Linux.
Dun dun dun.
Hint: :q!
Sister communities:
Community rules (click to expand)
1. Follow the site-wide rules
sudo
in Windows.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 fork-bomb your computer.
Your Android phone runs Linux.
Dun dun dun.
Totally depends on the instance. There are definitely furry communities here in Lemmy and they definitely feel lonely. But I have heard of some furry mastodon instances that actually are lively and active. No idea if they actually are since I don't have a clue why I can't access my mastodon account, let alone what instance I signed up on.
But active non-Linux, non-Star Trek meme groups definitely are a thing, despite how small they are.
I love Dwm, what about you ?
This is always the first thing I get set up:
# focus next available workspace on this output
bindsym $mod+q exec --no-startup-id ws=$(i3-msg -t get_workspaces | jq '.[] | select(.focused) | .num') && ofs=$(i3-msg -t get_outputs | jq 'map(select(.active)) | length') && i3-msg workspace $(($ws-$ofs))
bindsym $mod+w exec --no-startup-id ws=$(i3-msg -t get_workspaces | jq '.[] | select(.focused) | .num') && ofs=$(i3-msg -t get_outputs | jq 'map(select(.active)) | length') && i3-msg workspace $(($ws+$ofs))
# move window to next available workspace on this output
bindsym $mod+Shift+q exec --no-startup-id ws=$(i3-msg -t get_workspaces | jq '.[] | select(.focused) | .num') && ofs=$(i3-msg -t get_outputs | jq 'map(select(.active)) | length') && dest=$(($ws-$ofs)) && i3-msg move workspace $dest && i3-msg workspace $dest
bindsym $mod+Shift+w exec --no-startup-id ws=$(i3-msg -t get_workspaces | jq '.[] | select(.focused) | .num') && ofs=$(i3-msg -t get_outputs | jq 'map(select(.active)) | length') && dest=$(($ws+$ofs)) && i3-msg move workspace $dest && i3-msg workspace $dest
Works with sway if you replace i3-msg with swaymsg (and remove --no-startup-id, since it's not needed for Wayland).
Edit: ampersand issues, trying quote instead of code block