Skip to main content
Version: Next

⚙️ Configuration

All configuration options are stored in the config.toml file, located at:

~/.config/ashell
info

Ashell does not create this file automatically.

Ashell watches this file for changes and will apply updates immediately—so you can tweak the configuration while Ashell is running.

See more about the TOML format.

Command-line parameters

You can pass a configuration file to Ashell using the --config-path parameter:

ashell --config-path /path/to/config.toml

This allows you to use a different configuration file instead of the default one.

Ashell will still watch this file for changes and apply updates immediately.

IPC messaging

Ashell exposes a Unix socket for controlling a running instance. The same binary acts as a client when invoked with the msg subcommand:

ashell msg <command>

Available commands:

CommandDescription
toggle-visibilityToggle the bar on/off
volume-upIncrease sink volume by 5%
volume-downDecrease sink volume by 5%
volume-toggle-muteToggle sink mute
microphone-upIncrease source volume by 5%
microphone-downDecrease source volume by 5%
microphone-toggle-muteToggle source mute
brightness-upIncrease screen brightness by 5%
brightness-downDecrease screen brightness by 5%
toggle-airplane-modeToggle airplane mode
toggle-idle-inhibitorToggle idle inhibitor

Volume, microphone, brightness, airplane and idle inhibitor commands show an OSD (On-Screen Display) overlay by default. Add --no-osd to suppress it:

ashell msg volume-up --no-osd

The socket is created at $XDG_RUNTIME_DIR/ashell.sock.