diff --git a/.zshrc b/.zshrc index 02f6f68..2f21b61 100755 --- a/.zshrc +++ b/.zshrc @@ -186,6 +186,7 @@ alias tg="treegrep" alias v="nvim" alias dbe="distrobox enter" +alias dbrm="distrobox rm" function dbc() { diff --git a/Setup-shell-4-containers/alpine.sh b/Setup-shell-4-containers/alpine.sh new file mode 100755 index 0000000..ca3df7a --- /dev/null +++ b/Setup-shell-4-containers/alpine.sh @@ -0,0 +1,4 @@ +#!/bin/zsh +sudo apk add fzf git fastfetch +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" diff --git a/Setup-shell-4-containers/arch.sh b/Setup-shell-4-containers/arch.sh new file mode 100755 index 0000000..72bb0c8 --- /dev/null +++ b/Setup-shell-4-containers/arch.sh @@ -0,0 +1,4 @@ +#!/bin/zsh +sudo pacman -S fzf git fastfetch +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" diff --git a/Setup-shell-4-containers/debian.sh b/Setup-shell-4-containers/debian.sh new file mode 100755 index 0000000..362306e --- /dev/null +++ b/Setup-shell-4-containers/debian.sh @@ -0,0 +1,6 @@ +#!/bin/zsh +sudo apt install fzf git +wget https://github.com/fastfetch-cli/fastfetch/releases/download/2.39.1/fastfetch-linux-amd64.deb +sudo apt install ./fastfetch-linux-amd64.deb +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" diff --git a/Setup-shell-4-containers/fastfetch-linux-amd64.deb b/Setup-shell-4-containers/fastfetch-linux-amd64.deb new file mode 100644 index 0000000..8b6c679 Binary files /dev/null and b/Setup-shell-4-containers/fastfetch-linux-amd64.deb differ diff --git a/Setup-shell-4-containers/fedora.sh b/Setup-shell-4-containers/fedora.sh new file mode 100755 index 0000000..15c9c2d --- /dev/null +++ b/Setup-shell-4-containers/fedora.sh @@ -0,0 +1,6 @@ +#!/bin/zsh +sudo dnf install fzf git fastfetch +wget https://github.com/fastfetch-cli/fastfetch/releases/download/2.39.1/fastfetch-linux-amd64.rpm +sudo dnf install ./fastfetch-linux-amd64.rpm +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" diff --git a/Setup-shell-4-containers/other.sh b/Setup-shell-4-containers/other.sh new file mode 100755 index 0000000..42cc620 --- /dev/null +++ b/Setup-shell-4-containers/other.sh @@ -0,0 +1,2 @@ +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" diff --git a/Setup-shell-4-containers/suse.sh b/Setup-shell-4-containers/suse.sh new file mode 100755 index 0000000..f966cde --- /dev/null +++ b/Setup-shell-4-containers/suse.sh @@ -0,0 +1,4 @@ +#!/bin/zsh +sudo zypper install fzf git fastfetch +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" diff --git a/Setup-shell-4-containers/ubuntu.sh b/Setup-shell-4-containers/ubuntu.sh new file mode 100755 index 0000000..6c0b17c --- /dev/null +++ b/Setup-shell-4-containers/ubuntu.sh @@ -0,0 +1,5 @@ +sudo apt install fzf git +wget https://github.com/fastfetch-cli/fastfetch/releases/download/2.39.1/fastfetch-linux-amd64.deb +sudo apt install ./fastfetch-linux-amd64.deb +curl -sS https://starship.rs/install.sh | sh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"