1
0

Added starship, pywalfox and some fix

This commit is contained in:
Adrien Bouvais 2025-05-02 14:27:25 +02:00
parent a5947f065d
commit 78e84534b6
4 changed files with 17 additions and 20 deletions

View File

@ -1,7 +1,5 @@
# ~/.bashrc # ~/.bashrc
clear && myfetch -c 8 -C " █"
eval "$(starship init bash)" eval "$(starship init bash)"
[[ $- != *i* ]] && return
alias Settings="cd ~/.config && nvim" alias Settings="cd ~/.config && nvim"
alias Phone="scrcpy --max-fps=60 --no-audio --keyboard=uhid --mouse=uhid" alias Phone="scrcpy --max-fps=60 --no-audio --keyboard=uhid --mouse=uhid"

View File

@ -78,7 +78,7 @@ window {
#entry:selected { #entry:selected {
border: none; border: none;
border-radius: 20px; border-radius: 20px;
background-color: rgba(0, 0, 0, 0.1); background-color: rgba(0, 0, 0, 0.15);
} }
#entry:selected #text { #entry:selected #text {
color: @mauve; color: @mauve;

View File

@ -80,7 +80,7 @@ window {
#entry:selected { #entry:selected {
border: none; border: none;
border-radius: 20px; border-radius: 20px;
background-color: alpha(@background,.2); background-color: rgba(0, 0, 0, 0.15);
} }
#entry:selected #text { #entry:selected #text {
color: @mauve; color: @mauve;

31
install.sh Normal file → Executable file
View File

@ -3,15 +3,24 @@
# Install pacman packages # Install pacman packages
for package in \ for package in \
scrcpy \ scrcpy \
git \
base-devel \
lazygit \ lazygit \
starship \
; do ; do
sudo pacman -S $package sudo pacman -S --noconfirm $package
clear clear
done done
git clone https://aur.archlinux.org/yay.git
cd yay
sudo makepkg -si
cd ~
# Install yay packages # Install yay packages
for package in \ for package in \
python-pywal16 \ python-pywal16 \
python-pywalfox \
swww waybar \ swww waybar \
myfetch \ myfetch \
neovim \ neovim \
@ -30,7 +39,7 @@ for package in \
blueman \ blueman \
bluez \ bluez \
; do ; do
yay -S $package yay -S --noconfirm $package
clear clear
done done
@ -38,22 +47,12 @@ systemctl enable bluetooth
# Install Configs # Install Configs
wal -i ~/Dotfiles/wallpapers/pywallpaper.jpg wal -i ~/Dotfiles/wallpapers/pywallpaper.jpg
pywalfox install
sudo cp -a ~/Dotfiles/.config/hypr/wallpaper.sh ~/.config/hypr/wallpaper.sh sudo cp -rf ~/Dotfiles/.config/* /.config/
sudo cp -a ~/Dotfiles/.config/wofi/config1 ~/.config/wofi/
sudo cp -a ~/Dotfiles/.config/wofi/style1.css ~/.config/wofi/
sudo cp -a ~/Dotfiles/.config/hypr/hyprlock.conf ~/.config/hypr/
sudo cp -a ~/Dotfiles/.config/waybar ~/.config/
sudo cp -a ~/Dotfiles/.config/wofi ~/.config/
sudo cp -a ~/Dotfiles/.config/wlogout ~/.config/
sudo cp -a ~/Dotfiles/.config/wal ~/.config/
sudo cp -a ~/Dotfiles/.config/nvim ~/.config/
sudo cp -a ~/Dotfiles/.config/swayn ~/.config/
sudo cp -a ~/Dotfiles/wallpapers ~/
sudo cp -a ~/Dotfiles/.bashrc ~/
git config --global user.email "adrien.bouvais.pro@gmail.com" git config --global user.email "adrien.bouvais.pro@gmail.com"
git config --global user.name "adrien" git config --global user.name "adrien"
ssh-keygen -t rsa -b 4096 -C "adrien.bouvais.pro@gmail.com" -f ~/.ssh/id_rsa -N "" ssh-keygen -t rsa -b 4096 -C "adrien.bouvais.pro@gmail.com" -f ~/.ssh/id_rsa -N ""
echo "Dont forget to add Pywalfox extension to Firefox then run 'pywalfox update' https://addons.mozilla.org/en-US/firefox/addon/pywalfox/"