this post was submitted on 26 Nov 2023
66 points (100.0% liked)

Unixporn

17525 readers
3 users here now

Unixporn

Submit screenshots of all your *NIX desktops, themes, and nifty configurations, or submit anything else that will make themers happy. Maybe a server running on an Amiga, or a Thinkpad signed by Bjarne Stroustrup? Show the world how pretty your computer can be!

Rules

  1. Post On-Topic
  2. No Defaults
  3. Busy Screenshots
  4. Use High-Quality Images
  5. Include a Details Comment
  6. No NSFW
  7. No Racism or use of racist terms

founded 6 years ago
MODERATORS
top 12 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 2 years ago (3 children)

Please lecture me, I'm somewhat new to linux (I use it for some years now, but only Ubuntu, so you know). What's the point of wayland?

I mean, I get that it's an alternative to Xorg, and it merges the server and client, but what does this mean to the end user?

[–] [email protected] 4 points 2 years ago

the main thing i've heard about it is that it's more actively developed than Xorg

[–] [email protected] 3 points 2 years ago (1 children)

i dont get screen tearing in games, videos or browsers on wayland and also seem to be getting less issues with compositing, which was a problem on x11 with i915 drivers for me

[–] [email protected] 1 points 2 years ago (1 children)

uhm... you get screen tearing on x11? Don't you just turn on full composition pipeline or freesync in your graphics driver settings or by directly editing xorg.conf?

[–] [email protected] 2 points 2 years ago

You don't have to do any of this in Wayland.

[–] [email protected] 0 points 2 years ago

there is no reason to use something else as an enduser. Maybe as a backup or testing setup you could install something else, but apart from that...

[–] [email protected] 2 points 2 years ago

dead simple. I like it

[–] [email protected] 1 points 2 years ago (2 children)
[–] [email protected] 3 points 2 years ago* (last edited 2 years ago)

fzf, but i had to wrap it to make it act like a menu

[–] [email protected] 3 points 2 years ago* (last edited 2 years ago) (1 children)

im not comfortable with shell yet, but here's what i did
in sway config i have

for_window [title="example_launcher"] floating enable
set $menu foot -T "example_launcher" -w 240x240 -e sh -c 'dmenu_path | example.sh | xargs swaymsg exec --'

and somewhere in my $PATH i have example.sh which looks like this

#!/usr/bin/sh
#
out=$(fzf -e --print-query "$@")
in=$(echo "$out" | head -1)
res=$(echo "$out" | tail -1 )
if test -n "$res"; then
cmd=$res
else
cmd=$in
fi
exec echo "$cmd"

there are a couple small issues with the set up though, and also u do need dmenu installed

[–] [email protected] 1 points 2 years ago* (last edited 2 years ago) (1 children)

Can you put this in a code-block?

[–] [email protected] 1 points 2 years ago* (last edited 2 years ago)

i originally did but i couldnt put it on split lines and the markdown docs dont mention that at all
tried it again same deal