updated prompt

This commit is contained in:
L. Kraven
2024-06-15 00:28:02 -07:00
parent 1870c38888
commit dd2c280d4e
12 changed files with 100 additions and 1869 deletions

1
lk-installers/install-apt-pkgs Executable file
View File

@@ -0,0 +1 @@
sudo apt install tmux neovim vim-nox btop htop neofetch curl wget tldr git zip unzip rar unrar --no-install-recommends

17
lk-installers/install-eza Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Check if Eza is installed
if dpkg-query -Wf'${db:Status-abbrev}' eza; then
sudo apt install -y eza
else
sudo apt update
sudo apt install gpg
sudo mkdir -p /etc/apt/keyrings
wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | sudo gpg --dearmor -o /etc/apt/keyrings/gierens.gpg
echo "deb [signed-by=/etc/apt/keyrings/gierens.gpg] http://deb.gierens.de stable main" | sudo tee /etc/apt/sources.list.d/gierens.list
sudo chmod 644 /etc/apt/keyrings/gierens.gpg /etc/apt/sources.list.d/gierens.list
sudo apt update
sudo apt install -y eza
fi

2
lk-installers/install-ohmyposh Executable file
View File

@@ -0,0 +1,2 @@
curl -s https://ohmyposh.dev/install.sh | bash -s

3
lk-installers/install-thefk Executable file
View File

@@ -0,0 +1,3 @@
sudo apt update
sudo apt install python3-dev python3-pip python3-setuptools
pip3 install thefuck --user --break-system-packages

View File

@@ -0,0 +1 @@
git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm

8
lk-installers/install-tools Executable file
View File

@@ -0,0 +1,8 @@
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.cache/lk-tools/fzf
~/.cache/lk-tools/fzf/install
git clone https://github.com/junegunn/fzf-git.sh.git ~/fzf-git.sh
curl -sS https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | sh
wget -O /tmp/bat.deb https://github.com/sharkdp/bat/releases/download/v0.24.0/bat_0.24.0_amd64.deb
sudo apt install /tmp/bat.deb
wget -O /tmp/fdfind.deb https://github.com/sharkdp/fd/releases/download/v10.1.0/fd_10.1.0_amd64.deb
sudo apt install /tmp/fdfind.deb