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
clear && myfetch -c 8 -C " █"
eval "$(starship init bash)"
[[ $- != *i* ]] && return
alias Settings="cd ~/.config && nvim"
alias Phone="scrcpy --max-fps=60 --no-audio --keyboard=uhid --mouse=uhid"

View File

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

View File

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

31
install.sh Normal file → Executable file
View File

@ -3,15 +3,24 @@
# Install pacman packages
for package in \
scrcpy \
git \
base-devel \
lazygit \
starship \
; do
sudo pacman -S $package
sudo pacman -S --noconfirm $package
clear
done
git clone https://aur.archlinux.org/yay.git
cd yay
sudo makepkg -si
cd ~
# Install yay packages
for package in \
python-pywal16 \
python-pywalfox \
swww waybar \
myfetch \
neovim \
@ -30,7 +39,7 @@ for package in \
blueman \
bluez \
; do
yay -S $package
yay -S --noconfirm $package
clear
done
@ -38,22 +47,12 @@ systemctl enable bluetooth
# Install Configs
wal -i ~/Dotfiles/wallpapers/pywallpaper.jpg
pywalfox install
sudo cp -a ~/Dotfiles/.config/hypr/wallpaper.sh ~/.config/hypr/wallpaper.sh
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 ~/
sudo cp -rf ~/Dotfiles/.config/* /.config/
git config --global user.email "adrien.bouvais.pro@gmail.com"
git config --global user.name "adrien"
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/"