You are not logged in.
Pages: 1
Bark or Sage
Simple question: some people prefer bark, some sage. Maybe it's bikeshedding, but the default wallpaper+theme+icons is the first impression new users get, and also determines some hard-coded widgets like dmenu which don't follow the GTK theme.
My vote? Bark, but only by a narrow margin. I think they both look nice, but Sage is just a little bit chilly or something.
vertical or horizontal panel
I've always preferred horizontal, but @hhh and a lot of others like vertical.
Let's go with the consensus.
Anyway, throw in your preferences!
...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )
Offline
Bark theme, vertical panel.
You must unlearn what you have learned.
-- yoda
Offline
Offline
The default conky with the keystrokes should run a simple lua-background script with alpha adjustments so the text would show better on uneven desktop background images, or the default desktop background should be flat. New users on lap or small screen resolutions will have difficulty reading the conky on bark the way it is. I don't currently have a BL example but here's one from Linux Lite.
https://dbts-analytics.com/prpcll7.html
Preferences bark theme, panel either/or.
TC
Last edited by trinidad (Yesterday 13:41:32)
Offline
Sage + vertical panel
Offline
The default conky with the keystrokes should run a simple lua-background script with alpha adjustments so the text would show better on uneven desktop background images, or the default desktop background should be flat. New users on lap or small screen resolutions will have difficulty reading the conky on bark the way it is. I don't currently have a BL example but here's one from Linux Lite.
https://dbts-analytics.com/prpcll7.htmlPreferences bark theme, panel either/or.
TC
-- End Miscellaneous Section
-- LUA --
lua_load = '$HOME/.conky/lua/draw_bg.lua',
lua_draw_hook_pre = 'draw_bg 5 0 0 0 0 0x000000 0.4',
};
conky.text = [[--[[Background originally by londonali1010 (2009)
ability to set any size for background mrpeachy 2011
ability to set variables for bg in conkyrc dk75
the change is that if you set width and/or height to 0
then it assumes the width and/or height of the conky window
so:
lua_load ~/Conky/LUA/draw_bg.lua
TEXT
${lua conky_draw_bg 20 0 0 0 0 0x000000 0.4}
${lua conky_draw_bg corner_radius x_position y_position width height color alpha}
covers the whole window and will change if you change the minimum_size setting
20 corner_radius
0 x_position
0 y_position
0 width
0 height
0x000000 color
0.4 alpha
]]
require 'cairo'
require 'cairo_xlib'
local cs, cr = nil
function rgb_to_r_g_b(colour,alpha)
return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
end
function conky_draw_bg(r,x,y,w,h,color,alpha)
if conky_window == nil then return end
if cs == nil then cairo_surface_destroy(cs) end
if cr == nil then cairo_destroy(cr) end
local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
local cr = cairo_create(cs)
w=w
h=h
if w=="0" then w=tonumber(conky_window.width) end
if h=="0" then h=tonumber(conky_window.height) end
cairo_set_source_rgba (cr,rgb_to_r_g_b(color,alpha))
--top left mid circle
local xtl=x+r
local ytl=y+r
--top right mid circle
local xtr=(x+r)+((w)-(2*r))
local ytr=y+r
--bottom right mid circle
local xbr=(x+r)+((w)-(2*r))
local ybr=(y+r)+((h)-(2*r))
--bottom right mid circle
local xbl=(x+r)
local ybl=(y+r)+((h)-(2*r))
-----------------------------
cairo_move_to (cr,xtl,ytl-r)
cairo_line_to (cr,xtr,ytr-r)
cairo_arc(cr,xtr,ytr,r,((2*math.pi/4)*3),((2*math.pi/4)*4))
cairo_line_to (cr,xbr+r,ybr)
cairo_arc(cr,xbr,ybr,r,((2*math.pi/4)*4),((2*math.pi/4)*1))
cairo_line_to (cr,xbl,ybl+r)
cairo_arc(cr,xbl,ybl,r,((2*math.pi/4)*1),((2*math.pi/4)*2))
cairo_line_to (cr,xtl-r,ytl)
cairo_arc(cr,xtl,ytl,r,((2*math.pi/4)*2),((2*math.pi/4)*3))
cairo_close_path(cr)
cairo_fill (cr)
------------------------------------------------------------
cairo_surface_destroy(cs)
cairo_destroy(cr)
return ""
endOffline
Sage - Horizontal
Offline
Sage - Vertical
Offline
Sage - Horizontal
With the caveat that I don't care so much about the default so long as it's easy to switch to my preference (the panel in the current alpha is a bit of a bear to get looking my definition of "right").
Offline
Nice to see some Sage love. I prefer it, though I think Bark is usable with a wider variety of wallpapers.
I'm back to blue and orange on my desktop, so my opinion is colorblind.
I don't care what you do at home. Would you care to explain?
Offline
@trinidad and @unklar thanks for your input. There's a separate thread to discuss conky here:
https://forums.bunsenlabs.org/viewtopic.php?id=9577
...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )
Offline
Confirms my preference for the warmer Bark.
But there are a lot of votes for Sage here!
...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )
Offline
Nice to see some Sage love. I prefer it, though I think Bark is usable with a wider variety of wallpapers.
To me, it's mostly about the wallpaper. The difference between the sage and bark GTK themes is rather subtle. Of course you have to put the matching icons in too.
It looks as if the sages might have it.
Anyway, I'll make sure there's a BLOB set for the alternative, so switching will be easy.
...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )
Offline
For me, prefer Sage.
Only because we're heading into the dark months and Bark is too much like what I see outside and Sage looks more cheerful.
{Linux-using people I haven't met are friends yet to be made.}
Offline
Pages: 1