You are not logged in.

#41 2025-10-09 20:48:17

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

Re: Carbon alpha iso available for testing

johnraff wrote:

^That looks quite nice in fact.
And the inline systray makes sense there, where there's more horizontal space and less vertical.

I'll have to look up how to export the config, I forgot. Some profile manager, if I recall correctly.

-edit- Thank goodness, I still have half my mind left...

https://packages.debian.org/trixie/xfce4-panel-profiles

Last edited by hhh (2025-10-09 20:53:42)


I don't care what you do at home. Would you care to explain?

Offline

#42 2025-10-11 01:30:11

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

Re: Carbon alpha iso available for testing

^Yeah I think xfce4-panel-profiles is in the "full" install list, so we can ship vert and horiz variants easily.


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

#43 2025-10-11 09:50:05

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

Re: Carbon alpha iso available for testing

unklar wrote:
johnraff wrote:

You clicked the file, and nothing happened at all? There's something wrong there...

No.
A prompt appeared asking me to select which application should open the file.

Before doing a fresh iso build, or even a fresh install (both time-consuming) I had another thought. Maybe it would help to know what your system thought about that "text" file.

If it's still available, could you post the output of:

file <path to the text file>
# and
file --mime <path to the text file>

Thanks!


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

#44 2025-10-11 10:08:55

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

Re: Carbon alpha iso available for testing

johnraff wrote:
unklar wrote:
johnraff wrote:

You clicked the file, and nothing happened at all? There's something wrong there...

No.
A prompt appeared asking me to select which application should open the file.

Before doing a fresh iso build, or even a fresh install (both time-consuming) I had another thought. Maybe it would help to know what your system thought about that "text" file.

If it's still available, could you post the output of:

file <path to the text file>
# and
file --mime <path to the text file>

Thanks!

I'll check...

Edit: Unfortunately, no.

Last edited by unklar (2025-10-11 10:52:04)

Offline

#45 2025-10-12 04:26:03

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

Re: Carbon alpha iso available for testing

^Oh dear. Then I don't think there's any way of getting to the bottom of it. Until a similar issue comes up...


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

#46 2025-10-12 08:02:27

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

Re: Carbon alpha iso available for testing

johnraff wrote:

^Oh dear. Then I don't think there's any way of getting to the bottom of it. Until a similar issue comes up...

I did a second installation on the same computer.
The result:

file ~/Documents/derTEST
/home/unklar/Documents/derTEST: empty
file --mime ~/Documents/derTEST
/home/unklar/Documents/derTEST: inode/x-empty; charset=binary
file ~/Documents/derTEST.txt
/home/unklar/Documents/derTEST.txt: empty
file --mime ~/Documents/derTEST.txt
/home/unklar/Documents/derTEST.txt: inode/x-empty; charset=binary

The files are still empty. Hopefully this helps you.  smile

40b75fbt.png

Edit:
derTEST
was created by right-clicking in Thunar.

derTEST.txt
was created with ‘touch...’ in the terminal.

Last edited by unklar (2025-10-12 08:05:10)

Offline

#47 2025-10-13 01:09:11

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

Re: Carbon alpha iso available for testing

I just installed on my old, quite capable dell laptop. All good smile

One minor nitpick is that we could do without the PAE check in the welcome script as (unfortunately) we are 64bit only now.


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

Offline

#48 2025-10-13 01:23:50

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

Re: Carbon alpha iso available for testing

unklar wrote:
file ~/Documents/derTEST
/home/unklar/Documents/derTEST: empty
file --mime ~/Documents/derTEST
/home/unklar/Documents/derTEST: inode/x-empty; charset=binary
file ~/Documents/derTEST.txt
/home/unklar/Documents/derTEST.txt: empty
file --mime ~/Documents/derTEST.txt
/home/unklar/Documents/derTEST.txt: inode/x-empty; charset=binary

Thanks - I think that clears it up. There is no issue. Linux systems ignore filename extensions like .txt (although some applications do take them into account) and determine the file type by looking at its contents. So an empty file cannot be detected as a text file - or an audio file or anything - whatever its name is. If you click on a file in Thunar then the mime-type (in this case inode/x-empty; charset=binary) is checked against ~/.config/mimeapps.list and because there is no application registered it asks you what to do. I think that's the correct behaviour.

If you already have a text editor open then you can ask it to open eg /home/unklar/Documents/derTEST and it will treat it as a text file. If the file doesn't exist it will probably create it. But if you don't save any content, I think the file will remain an empty inode.


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

#49 2025-10-13 01:26:02

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

Re: Carbon alpha iso available for testing

micko01 wrote:

One minor nitpick is that we could do without the PAE check in the welcome script as (unfortunately) we are 64bit only now.

Good point. All 64bit processors will be regarded as PAE-supporting by the script and the message is meaningless. It does no harm, but I'll take the test out of bl-welcome.


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

#50 2025-10-13 09:29:28

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

Re: Carbon alpha iso available for testing

johnraff wrote:
unklar wrote:
file ~/Documents/derTEST
/home/unklar/Documents/derTEST: empty
file --mime ~/Documents/derTEST
/home/unklar/Documents/derTEST: inode/x-empty; charset=binary
file ~/Documents/derTEST.txt
/home/unklar/Documents/derTEST.txt: empty
file --mime ~/Documents/derTEST.txt
/home/unklar/Documents/derTEST.txt: inode/x-empty; charset=binary

Thanks - I think that clears it up. There is no issue. Linux systems ignore filename extensions like .txt (although some applications do take them into account) and determine the file type by looking at its contents. So an empty file cannot be detected as a text file - or an audio file or anything - whatever its name is. If you click on a file in Thunar then the mime-type (in this case inode/x-empty; charset=binary) is checked against ~/.config/mimeapps.list and because there is no application registered it asks you what to do. I think that's the correct behaviour.

If you already have a text editor open then you can ask it to open eg /home/unklar/Documents/derTEST and it will treat it as a text file. If the file doesn't exist it will probably create it. But if you don't save any content, I think the file will remain an empty inode.

+1
Thanks for clarifying that.  smile

Offline

Board footer

Powered by FluxBB