You are not logged in.

#1 2026-05-05 13:37:23

thomas29needles
New Member
Registered: 2026-05-05
Posts: 2

[SOLVED] Post-Install Script location

I decided to give the Carbon version a shot, but I feel like something is missing from my installation. When I first booted into a fresh system it greeted me with a terminal window with BunsenLabs specific text and prompt that some questions will be asked to fine tune the installation. However, my system decided that this is the best time to freeze and I had to do a hard reset. On next boot, the post-install script is no longer running automatically. How to run it manually, i.e., where to look for it?

Offline

#2 2026-05-05 13:44:49

WolfeN
Member
Registered: 2021-04-10
Posts: 40

Re: [SOLVED] Post-Install Script location

You should be able to just type "bl-welcome" in terminal and it will run the welcome script.

Offline

#3 2026-05-05 14:55:22

thomas29needles
New Member
Registered: 2026-05-05
Posts: 2

Re: [SOLVED] Post-Install Script location

WolfeN wrote:

You should be able to just type "bl-welcome" in terminal and it will run the welcome script.

TYSM, running smoothly.

Offline

#4 2026-05-06 06:18:56

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

Re: [SOLVED] Post-Install Script location

The file 'bl-welcome' is in the hidden ~/.config/bunsen folder in your home folder (Ctrl+h in Thunar to show/hide hidden files, or from Thunar's main menu under "View"). When ran and completed it also creates bl-welcome-understood. bl-setup can be run to recreate the default BL configs, IIRC. Running 'bl-welcome' in a terminal is described in the first paragraph...  'If you do not want to run this script now, you can run it at a later date with the command "bl-welcome".'


Marking this thread [SOLVED]. Thanks for being a forum member!


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

Offline

#5 2026-05-06 08:11:23

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 13,299
Website

Re: [SOLVED] Post-Install Script location

hhh wrote:

The file 'bl-welcome' is in the hidden ~/.config/bunsen folder in your home folder (Ctrl+h in Thunar to show/hide hidden files, or from Thunar's main menu under "View"). When ran and completed it also creates bl-welcome-understood.

Slight correction here:
~/.config/bunsen/bl-welcome is created the first time bl-welcome is auto-run (even if  exited part-way through), so the auto-run only happens once. 
~/.config/bunsen/bl-welcome-understood is created when $user responds "OK" to the Awful Warning about non-Debian repos etc so the message doesn't get repeated every time.


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

#6 2026-05-06 08:46:38

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

Re: [SOLVED] Post-Install Script location

@johnraff, more than a slight correction! smile

To answer the original thread title then, and correct me if I'm wrong, the file location for the "Hello!" script is /usr/bin/bl-welcome


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

Offline

#7 2026-05-07 01:27:27

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 13,299
Website

Re: [SOLVED] Post-Install Script location

^correct!

@thomas you can find the location of any command with one of these:
type <command>
command -v <command>
which <command>

("which" is the traditional choice, but depending on the system, it can be wrong.)


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

#8 2026-05-07 15:59:37

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

Re: [SOLVED] Post-Install Script location

^ lol, I didn't know this, I used catfish! Great post.


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

Offline

#9 2026-05-08 06:00:05

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 13,299
Website

Re: [SOLVED] Post-Install Script location

^Most of the time it turns out to be /usr/bin/<command> but the above methods find it anywhere in your $PATH.


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

#10 2026-05-09 18:18:20

marens
Member
From: World without M$
Registered: 2023-02-02
Posts: 1,247

Re: [SOLVED] Post-Install Script location

johnraff wrote:

^correct!

@thomas you can find the location of any command with one of these:
type <command>
command -v <command>
which <command>

("which" is the traditional choice, but depending on the system, it can be wrong.)

Thanks.
Everything works here.

$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

$ type sacad
sacad is /usr/local/bin/sacad

$ command -v sacad
/usr/local/bin/sacad

$ which sacad
/usr/local/bin/sacad

I mainly use whereis:

$ whereis sacad
sacad: /usr/local/bin/sacad

If people would know how little brain is ruling the world, they would die of fear.

Offline

#11 2026-05-09 18:20:21

marens
Member
From: World without M$
Registered: 2023-02-02
Posts: 1,247

Re: [SOLVED] Post-Install Script location

hhh wrote:

... I used catfish! ...

A very useful tool.
I always have catfish installed.

I've seen your screenshots and I know you sometimes have the Nautilus file manager.
This is a custom action in ~/.local/share/nautilus/scripts:

Catfish Search Here

#!/bin/bash

# Set IFS so that it won't consider spaces as entry separators.  Without this, spaces in file/folder names can make the loop go wacky.
IFS=$'\n'

# See if the Nautilus environment variable is empty
if [ -z $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS ]; then
    # If it's blank, set it equal to $1
    NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=$1
fi

# Loop through the list (from either Nautilus or the command line)
for ARCHIVE_FULLPATH in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do
    NEWDIRNAME=${ARCHIVE_FULLPATH%.*}
    FILENAME=${ARCHIVE_FULLPATH##*/}
    NAME=${ARCHIVE_FULLPATH##*/.*}

    /usr/bin/catfish --path="$ARCHIVE_FULLPATH"
done

Just right click on the folder you are browsing > Scripts > Catfish Search Here.


If people would know how little brain is ruling the world, they would die of fear.

Offline

#12 2026-05-09 20:58:49

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

Re: [SOLVED] Post-Install Script location

^ Thanks for the tip!


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

Offline

Board footer

Powered by FluxBB