From 78e84534b6d8800a258d1e0aaa2d78745be78f40 Mon Sep 17 00:00:00 2001 From: adrien Date: Fri, 2 May 2025 14:27:25 +0200 Subject: [PATCH] Added starship, pywalfox and some fix --- .bashrc | 2 -- .config/wofi/style-projects.css | 2 +- .config/wofi/style-wallpaper.css | 2 +- install.sh | 31 +++++++++++++++---------------- 4 files changed, 17 insertions(+), 20 deletions(-) mode change 100644 => 100755 install.sh diff --git a/.bashrc b/.bashrc index 17f7e6b..5842e71 100755 --- a/.bashrc +++ b/.bashrc @@ -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" diff --git a/.config/wofi/style-projects.css b/.config/wofi/style-projects.css index f60729c..75267a4 100644 --- a/.config/wofi/style-projects.css +++ b/.config/wofi/style-projects.css @@ -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; diff --git a/.config/wofi/style-wallpaper.css b/.config/wofi/style-wallpaper.css index 439b832..6eceece 100755 --- a/.config/wofi/style-wallpaper.css +++ b/.config/wofi/style-wallpaper.css @@ -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; diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 2dc7e18..7c2f4bd --- a/install.sh +++ b/install.sh @@ -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/"