firestarter/README.md

56 lines
2.8 KiB
Markdown
Raw Normal View History

2019-05-21 20:03:18 -05:00
# ![firestarter icon](icon.png) Firestarter
2019-04-27 00:01:25 -05:00
## Overview
2019-06-21 16:39:11 -05:00
**Firestarter** is a desktop environment startup script. Its job is to abstract out the startup and configuration of basic X session components. By default, it will attempt to piece together a fully functional desktop environment based on currently available programs and configuration files found in `~/.config/firestarter`.
2019-04-27 00:01:25 -05:00
## Installation
Execute `firestarter` in your `.xinitrc`, either by replacing the file or by `exec`ing it after performing your own basic setup. You do not need the rest of the files in the repository, but a `git clone` and a regular `git pull` *is* an effective way of keeping the script up-to-date.
2019-04-27 00:01:25 -05:00
## Configuration
On first run and when invoked with `firestarter -g`, Firestarter will generate a series of configuration files in `~/.config/firestarter`. These files consist of several lines that look somewhat like the following:
2019-04-27 00:01:25 -05:00
command -v i3
i3
Every odd line is a command that must succeed in order for the following even line to be executed. Once an even command is executed, parsing stops. When Firestarter is invoked with no arguments, every configuration file is parsed this way.
This approach allows for a single file to contain very many alternatives while still being readable and supporting arbitrary launch requirements (such as in the case of Polybar, which requires a `launch.sh` script by default).
2019-04-27 00:01:25 -05:00
By setting a dummy execution line, one can effectively prevent an entire configuration file from being parsed in certain environments. As an example, the following configuration file will only attempt to start an X infobar in an X environment:
2019-04-27 00:01:25 -05:00
[ -z "$DISPLAY" ]
:
command -v polybar
polybar bar
command -v lemonbar
~/.bin/lemonbar.sh | lemonbar
After all these programs have been started, firestarter executes `~/.firestarterrc` if it exists.
2019-06-21 16:39:11 -05:00
# Logging
All STDOUT and STDERR messages from these commands are saved to a logfile in `~/.local/share/firestarter/logs` under the same name as the configuration file. By default, these logfiles are rotated every time you log in.
If you set the variable `FS_NOLOG` to a nonempty value, firestarter will not keep logs.
2019-04-27 00:01:25 -05:00
# Exit Codes
| code | meaning |
| --: | --- |
| 0 | Success |
| 40 | Firestarter is already running |
| 50 | Unrecognized argument |
| 51 | Invalid option for an argument |
| 52 | Failed to create configuration directory |
| 53 | Failed to create logging directory (and logging is enabled) |
| 54 | `HOME` does not exist or is unreadable |
2019-04-27 00:01:25 -05:00
## Contribution
Firestarter by no means contains an exhaustive list of all possible programs. If you know of or have created a program that should be added, *please* open an issue about it. The script should be light but its choices massive.
2019-06-19 07:47:32 -05:00
Bug reports are also more than welcome.