added shell setup scripts
parent
6afe75eb45
commit
e65fa7417b
1
.zshrc
1
.zshrc
|
|
@ -186,6 +186,7 @@ alias tg="treegrep"
|
|||
|
||||
alias v="nvim"
|
||||
alias dbe="distrobox enter"
|
||||
alias dbrm="distrobox rm"
|
||||
|
||||
function dbc()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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)"
|
||||
|
|
@ -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)"
|
||||
|
|
@ -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)"
|
||||
Binary file not shown.
|
|
@ -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)"
|
||||
|
|
@ -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)"
|
||||
|
|
@ -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)"
|
||||
|
|
@ -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)"
|
||||
Loading…
Reference in New Issue