this post was submitted on 19 Aug 2023
140 points (97.9% liked)

Unixporn

15128 readers
117 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 5 years ago
MODERATORS
 

EndeavourOS default i3wm setup

terminal: Alacritty

compositor: Picom

top bar: eww

entire configuration here

you are viewing a single comment's thread
view the rest of the comments
[–] superiorfreedom@discuss.tchncs.de 4 points 1 year ago (1 children)

Beautiful neovim, whats the terminal program on the down right?

[–] Bankenstein@feddit.de 6 points 1 year ago (3 children)

Finally someone asked about that!

That's an alias I made (with some help from the Arch Wiki) that lets me search the AUR for a package using fzf and then install it.

alias get="paru -Slq | fzf --preview 'paru -Si {}' --layout=reverse --bind 'enter:execute(paru -S {})+accept'"

(replace paru with your AUR helper of choice if different, requires fzf)

Also, my neovim config is available in the link!

Uff, it looks fucking awesome

Thanks for that one, seems incredibly useful for such a small thing.

[–] hyperreal@lemmy.world 2 points 1 year ago

I love how you basically made a TUI by combining existing tools. Doing something useful without reinventing the wheel.