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
* `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.
+7 -4
View File
@@ -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;
+6 -8
View File
@@ -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
)