diff options
author | Bradley Taunt <bt@btxx.org> | 2024-10-22 13:23:35 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-10-22 13:23:35 -0400 |
commit | 560d4ee25ab16d4dc38f7cbced3aca93cc6449d4 (patch) | |
tree | 92737c62b3b9845bf4a5a8d5f291aa339b518004 | |
parent | 3fd00487cdf5cdb198aa9302a8ee753180ec7cc3 (diff) |
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | dependencies.txt | 1 | ||||
-rwxr-xr-x | install.sh | 8 | ||||
-rw-r--r-- | kitty.conf | 3 |
4 files changed, 8 insertions, 9 deletions
@@ -4,14 +4,15 @@ Lightweight Desktop installer for Alpine Linux based on the suckless philosophy. ![Screenshot of dwm running on Alpine Linux](https://git.btxx.org/screenshots/alpine-suck.png) -Includes my own custom set of suckless tools (dwm, slstatus, dmenu, etc.). Ships with `ohmyzsh` and my personal `vim` configs. +Includes my own custom set of suckless tools (dwm, slstatus, dmenu, etc.). Ships with my personal `vim` and `kitty` configs. ## What You Get The Open Suck installer gives you the absolute barebones desktop experience: - `dwm` for window management -- `ranger` for your file browser +- `kitty` for default terminal emulator +- `lf` for your file browser - `firefox` as your core web browser - `aerc` for your terminal-based mail client - `slock` for screen locking diff --git a/dependencies.txt b/dependencies.txt index 1273522..b4f42f8 100644 --- a/dependencies.txt +++ b/dependencies.txt @@ -43,6 +43,7 @@ font-jetbrains-mono # utilities aerc +kitty wget curl zsh @@ -12,6 +12,7 @@ cp mimeapps.list /usr/share/applications/ cp .xinitrc /home/$ALPINE_USER/.xinitrc cp .vimrc /home/$ALPINE_USER/.vimrc cp .zshrc /home/$ALPINE_USER/.zshrc +cp kitty.conf /home/$ALPINE_USER/.config/kitty/kitty.conf mkdir /home/$ALPINE_USER/.suckless cd /home/$ALPINE_USER/.suckless @@ -37,13 +38,6 @@ rm -rf config.h make clean install cd .. -git clone https://git.btxx.org/st -cd st -echo "Installing st" -rm -rf config.h -make clean install -cd .. - git clone https://git.btxx.org/surf cd surf echo "Installing surf" diff --git a/kitty.conf b/kitty.conf new file mode 100644 index 0000000..259420d --- /dev/null +++ b/kitty.conf @@ -0,0 +1,3 @@ +remember_window_size yes +initial_window_width 640 +initial_window_height 400
\ No newline at end of file |