You are not logged in.

#1 2025-10-27 08:04:58

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,926
Website

Some default settings

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 )

Introduction to the Bunsenlabs Boron Desktop

Offline

#2 2025-10-27 09:49:04

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,740

Re: Some default settings

Bark theme, vertical panel.


You must unlearn what you have learned.
    -- yoda

Online

#3 2025-10-27 12:54:37

sleekmason
zoom
Registered: 2018-05-22
Posts: 1,162
Website

Re: Some default settings

Bark
bark.png

Sage
sage.png

Offline

#4 2025-10-27 13:36:26

trinidad
Member
From: Chicago & Southeast WI
Registered: 2021-04-10
Posts: 38
Website

Re: Some default settings

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 (2025-10-27 13:41:32)

Offline

#5 2025-10-27 13:39:52

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,788

Re: Some default settings

Sage + vertical panel

Offline

#6 2025-10-27 13:54:33

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,788

Re: Some default settings

trinidad wrote:

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

Give it a try.
bCrbC7ft.png

--  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 ""
end

Offline

#7 2025-10-27 16:21:23

greenjeans
Member
Registered: 2025-01-18
Posts: 271
Website

Re: Some default settings

Sage - Horizontal

Offline

#8 2025-10-27 19:42:19

dolly
Miss Mixunderstand
From: /lab701
Registered: 2015-10-03
Posts: 491

Re: Some default settings

Sage - Vertical

Offline

#9 2025-10-27 20:06:34

bendingoutward
New Member
Registered: 2025-09-30
Posts: 4

Re: Some default settings

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

#10 2025-10-27 21:24:55

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,500
Website

Re: Some default settings

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

#11 2025-10-28 00:11:42

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,926
Website

Re: Some default settings

@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 )

Introduction to the Bunsenlabs Boron Desktop

Offline

#12 2025-10-28 00:13:48

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,926
Website

Re: Some default settings

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 )

Introduction to the Bunsenlabs Boron Desktop

Offline

#13 2025-10-28 07:57:48

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,926
Website

Re: Some default settings

hhh wrote:

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 )

Introduction to the Bunsenlabs Boron Desktop

Offline

#14 2025-10-28 18:51:55

trilobite
Member
From: Saskatchewan, Canada
Registered: 2017-06-27
Posts: 166

Re: Some default settings

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

#15 2025-11-04 16:23:58

dbvolvox
Member
From: England
Registered: 2015-09-29
Posts: 112
Website

Re: Some default settings

Sage    Horizontal


volvox.biz a very tedious daily account of life during covid,

Offline

#16 2025-11-05 04:03:26

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,926
Website

Re: Some default settings

hhh wrote:

I've been using a horizontal taskbar for the last year, though.

https://forums.bunsenlabs.org/viewtopic … 14#p145914

Seems about 50/50, so for the Carbon Beta iso (coming soon) let's make the default xfce4-panel horizontal and see what user reaction is like.


...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 )

Introduction to the Bunsenlabs Boron Desktop

Offline

#17 2025-11-05 11:45:43

micko01
void main()
From: Queensland, Australia
Registered: 2024-04-07
Posts: 567
Website

Re: Some default settings

PackRat wrote:

Bark theme, vertical panel.

+1


#!/bin/sh
echo '#include <stdio.h>\nvoid main() { printf("Hi, bunsenlabs\\n"); return; }' > bunsen.c
gcc bunsen.c -o bunsen
./bunsen

Offline

#18 2025-11-05 11:54:10

micko01
void main()
From: Queensland, Australia
Registered: 2024-04-07
Posts: 567
Website

Re: Some default settings

Here's bark/labwc/@hhh's older conky suggestion

D9bXBhKa_t.png


#!/bin/sh
echo '#include <stdio.h>\nvoid main() { printf("Hi, bunsenlabs\\n"); return; }' > bunsen.c
gcc bunsen.c -o bunsen
./bunsen

Offline

#19 2025-11-06 00:41:30

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,926
Website

Re: Some default settings

^Have to admit that looks nice.

---
That xfce4-panel "workspace switcher" for choosing desktops seems to work OK for you on Wayland? For me it was all messed up (fine on X11) and I had to substitute "window menu".

Is that real hardware or a VM?


...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 )

Introduction to the Bunsenlabs Boron Desktop

Offline

#20 2025-11-06 02:56:54

micko01
void main()
From: Queensland, Australia
Registered: 2024-04-07
Posts: 567
Website

Re: Some default settings

`typing on phone,excuse typos ?

Work spaces in xfce4-panel are working.

It's my bare metal install on my main box but still on debian testing/forky. I might leave it like that and do carbon Wayland dev work on my main laptop on a fresh carbon beta install when it drops.


#!/bin/sh
echo '#include <stdio.h>\nvoid main() { printf("Hi, bunsenlabs\\n"); return; }' > bunsen.c
gcc bunsen.c -o bunsen
./bunsen

Offline

Board footer

Powered by FluxBB