diff --git a/README.md b/README.md index cfcd558..897b0ff 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,3 @@ A minimal, stable Linux development environment. * `config/` — Application configuration * `scripts/` — Installation and utility scripts * `install.sh` — Creates symbolic links - -## Versioning - -Releases are tagged. - -The goal is to keep the environment stable. New features should solve real issues rather than my curiosity. diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi index 7e93788..297f1bd 100644 --- a/config/rofi/config.rasi +++ b/config/rofi/config.rasi @@ -50,7 +50,8 @@ entry { } /* -- List/grid toggle icons, top-right (matches screenshot) -- */ mode-switcher { - enabled: false; /* flip to true if you use rofi's built-in mode tabs */ + /* flip to true if you use rofis built-in mode tabs */ + enabled: false; } /* -- Results -- */ listview { @@ -59,15 +60,17 @@ listview { spacing: 6px; scrollbar: false; background-color: transparent; - fixed-height: true; /* box height stays locked, doesn't shrink/grow with result count */ - dynamic: false; /* don't resize dynamically as you type either */ + /* box height stays locked, doesnt shrink/grow with result count */ + fixed-height: true; + /* dont resize dynamically as you type either */ + dynamic: false; } /* * Rofi tracks row state as a combination of position (normal/alternate, * i.e. even/odd rows for banding) and status (normal/urgent/active/selected). * Each combination needs its own selector or a competing @theme import * (if you have one elsewhere in your rofi config) can still win on states - * this file doesn't explicitly cover. Pinning all of them here. + * this file doesnt explicitly cover. Pinning all of them here. */ element { padding: 10px 12px; diff --git a/install.sh b/install.sh index 41aef3e..8b31b20 100755 --- a/install.sh +++ b/install.sh @@ -83,8 +83,8 @@ if [ "$DO_LINKS" = true ]; then CREATED=0 SKIPPED=0 + link_file "$DOTFILES_DIR/config/bash/bashrc" "$HOME/.bashrc" link_file "$DOTFILES_DIR/config/kanata" "$HOME/.config/kanata" - link_file "$DOTFILES_DIR/config/fish" "$HOME/.config/fish" link_file "$DOTFILES_DIR/config/alacritty" "$HOME/.config/alacritty" link_file "$DOTFILES_DIR/config/picom" "$HOME/.config/picom" link_file "$DOTFILES_DIR/config/awesome" "$HOME/.config/awesome" @@ -147,20 +147,18 @@ if [ "$DO_INSTALL" = true ]; then ## INSTALL REQUIRED PACKAGES # ----------------------------------------------------------------------------- REQUIRED_PACKAGES=( + # system + pfetch fuse # network & download wget curl ca-certificates gnupg rsync # core utilities git unzip jq fzf tree direnv make - # modern cli replacements - fd ripgrep bat delta lazygit - # shell & terminal - fish-shell alacritty + # modern shell and cli tools + fish-shell alacritty fd ripgrep bat # build & dev tools base-devel valgrind tree-sitter-cli go - # system - pfetch fuse # window manager & desktop - picom xdotool wmctrl polybar rofi kanata + picom xdotool wmctrl rofi kanata feh # fonts noto-fonts-ttf noto-fonts-emoji )