Cleanup of comments, unused packages etc.

This commit is contained in:
2026-07-23 22:12:48 +02:00
parent fda8049989
commit 28e11e675d
3 changed files with 13 additions and 18 deletions
-6
View File
@@ -20,9 +20,3 @@ A minimal, stable Linux development environment.
* `config/` — Application configuration * `config/` — Application configuration
* `scripts/` — Installation and utility scripts * `scripts/` — Installation and utility scripts
* `install.sh` — Creates symbolic links * `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.
+7 -4
View File
@@ -50,7 +50,8 @@ entry {
} }
/* -- List/grid toggle icons, top-right (matches screenshot) -- */ /* -- List/grid toggle icons, top-right (matches screenshot) -- */
mode-switcher { 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 -- */ /* -- Results -- */
listview { listview {
@@ -59,15 +60,17 @@ listview {
spacing: 6px; spacing: 6px;
scrollbar: false; scrollbar: false;
background-color: transparent; background-color: transparent;
fixed-height: true; /* box height stays locked, doesn't shrink/grow with result count */ /* box height stays locked, doesnt shrink/grow with result count */
dynamic: false; /* don't resize dynamically as you type either */ fixed-height: true;
/* dont resize dynamically as you type either */
dynamic: false;
} }
/* /*
* Rofi tracks row state as a combination of position (normal/alternate, * Rofi tracks row state as a combination of position (normal/alternate,
* i.e. even/odd rows for banding) and status (normal/urgent/active/selected). * i.e. even/odd rows for banding) and status (normal/urgent/active/selected).
* Each combination needs its own selector or a competing @theme import * 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 * (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 { element {
padding: 10px 12px; padding: 10px 12px;
+6 -8
View File
@@ -83,8 +83,8 @@ if [ "$DO_LINKS" = true ]; then
CREATED=0 CREATED=0
SKIPPED=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/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/alacritty" "$HOME/.config/alacritty"
link_file "$DOTFILES_DIR/config/picom" "$HOME/.config/picom" link_file "$DOTFILES_DIR/config/picom" "$HOME/.config/picom"
link_file "$DOTFILES_DIR/config/awesome" "$HOME/.config/awesome" link_file "$DOTFILES_DIR/config/awesome" "$HOME/.config/awesome"
@@ -147,20 +147,18 @@ if [ "$DO_INSTALL" = true ]; then
## INSTALL REQUIRED PACKAGES ## INSTALL REQUIRED PACKAGES
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
REQUIRED_PACKAGES=( REQUIRED_PACKAGES=(
# system
pfetch fuse
# network & download # network & download
wget curl ca-certificates gnupg rsync wget curl ca-certificates gnupg rsync
# core utilities # core utilities
git unzip jq fzf tree direnv make git unzip jq fzf tree direnv make
# modern cli replacements # modern shell and cli tools
fd ripgrep bat delta lazygit fish-shell alacritty fd ripgrep bat
# shell & terminal
fish-shell alacritty
# build & dev tools # build & dev tools
base-devel valgrind tree-sitter-cli go base-devel valgrind tree-sitter-cli go
# system
pfetch fuse
# window manager & desktop # window manager & desktop
picom xdotool wmctrl polybar rofi kanata picom xdotool wmctrl rofi kanata feh
# fonts # fonts
noto-fonts-ttf noto-fonts-emoji noto-fonts-ttf noto-fonts-emoji
) )