Minor cleanups: gitignore out/, expect() messages, comment wording

- .gitignore: ignore the /out/ ISO build dir
- bos-settings: use expect() with messages over unwrap() for piped stdio;
  drop a stray blank line
- pacman.conf: reword the SigLevel=Never TODO as a future-improvement note
This commit is contained in:
Breadway 2026-06-17 22:57:58 +08:00
parent 6e85f812e4
commit 9a5af3ea8f
5 changed files with 9 additions and 6 deletions

View file

@ -6,7 +6,6 @@ fn css_path() -> PathBuf {
crate::config::config_dir().join("breadbar/style.css")
}
pub fn build() -> GBox {
let path = css_path();
let existing_css = std::fs::read_to_string(&path).unwrap_or_default();