this post was submitted on 20 Sep 2024
53 points (100.0% liked)

unixporn

4239 readers
11 users here now

unixporn

Submit screenshots of all your *NIX desktops, themes, and nifty configurations, or submit anything else that will make ricers 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
  3. Busy
  4. Use High-Quality Images
  5. Include a Details Comment
  6. No NSFW

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] jkmooney@lemmy.world 1 points 5 days ago* (last edited 2 days ago) (1 children)

I added a little .css file " .config/gtk-3.0/gtk.css" copied below. (there's actually a couple approaches I took, the one I'm using here is not commented out).

/* Two different approaches given below
   both valid but with slightly different
   behaviour
*/

/* This first approach aggressively radiuses
   everything, even items within the panels
   themselves.
*/

/*.xfce4-panel {
   border-bottom-left-radius: 16px;
   border-bottom-right-radius: 16px;
   border-top-left-radius: 16px;
   border-top-right-radius: 16px;
} */

/* This approach is not as aggresive as above.
   Will need to add some transparent seperators
   on either end for the radius to show.
   (16 px for full radius at my current settings)
*/

.xfce4-panel#XfcePanelWindow {
   border-radius: 16px;
}
@import 'colors.css';
[–] jkmooney@lemmy.world 1 points 4 days ago (1 children)

For some reason, the formatting is not being preserved here in my cut-and-pasted script. If you can't untangle it, let me know.

[–] Cyberfishofant2@lemm.ee 1 points 2 days ago* (last edited 2 days ago) (1 children)

Did you make sure to

put it in ` ` ` codeblocks?
[–] jkmooney@lemmy.world 1 points 2 days ago

Thanks ,

Fixed now :)