mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
Prepare for V2
This commit is contained in:
parent
3d3cd908c2
commit
d4530aa8a4
@ -15,22 +15,24 @@ Extra=(
|
|||||||
hypr_package=(
|
hypr_package=(
|
||||||
curl
|
curl
|
||||||
dunst
|
dunst
|
||||||
foot
|
|
||||||
grim
|
grim
|
||||||
gvfs
|
gvfs
|
||||||
gvfs-backends
|
gvfs-backends
|
||||||
|
kitty
|
||||||
|
nano
|
||||||
network-manager-gnome
|
network-manager-gnome
|
||||||
pavucontrol
|
pavucontrol
|
||||||
playerctl
|
playerctl
|
||||||
polkit-kde-agent-1
|
polkit-kde-agent-1
|
||||||
python3-requests
|
python3-requests
|
||||||
|
python3-pip
|
||||||
qt5ct
|
qt5ct
|
||||||
|
rofi
|
||||||
slurp
|
slurp
|
||||||
waybar
|
waybar
|
||||||
wget
|
wget
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
wlogout
|
wlogout
|
||||||
wofi
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# the following packages can be deleted. however, dotfiles may not work properly
|
# the following packages can be deleted. however, dotfiles may not work properly
|
||||||
@ -43,7 +45,6 @@ hypr_package_2=(
|
|||||||
mpv
|
mpv
|
||||||
nvtop
|
nvtop
|
||||||
pamixer
|
pamixer
|
||||||
swaybg
|
|
||||||
swayidle
|
swayidle
|
||||||
viewnior
|
viewnior
|
||||||
vim
|
vim
|
||||||
@ -111,4 +112,10 @@ go install go.senan.xyz/cliphist@latest 2>&1 | tee -a "$LOG"
|
|||||||
|
|
||||||
# copy cliphist into /usr/local/bin for some reason it is installing in ~/go/bin
|
# copy cliphist into /usr/local/bin for some reason it is installing in ~/go/bin
|
||||||
sudo cp -r "$HOME/go/bin/cliphist" "/usr/local/bin/" 2>&1 | tee -a "$LOG"
|
sudo cp -r "$HOME/go/bin/cliphist" "/usr/local/bin/" 2>&1 | tee -a "$LOG"
|
||||||
|
|
||||||
|
## Installing pywal colors
|
||||||
|
printf "\n%s - Installing Pywal.... \n" "${NOTE}"
|
||||||
|
|
||||||
|
sudo pip3 install pywal 2>&1 | tee -a "$LOG"
|
||||||
|
|
||||||
clear
|
clear
|
||||||
|
|||||||
@ -23,7 +23,7 @@ if [ -d Hyprland-Dots ]; then
|
|||||||
chmod +x copy.sh
|
chmod +x copy.sh
|
||||||
./copy.sh 2>&1 | tee -a "$LOG"
|
./copy.sh 2>&1 | tee -a "$LOG"
|
||||||
else
|
else
|
||||||
if git clone https://github.com/JaKooLit/Hyprland-Dots.git; then
|
if git clone --branch Betav0.4 https://github.com/JaKooLit/Hyprland-Dots; then
|
||||||
cd Hyprland-Dots || exit 1
|
cd Hyprland-Dots || exit 1
|
||||||
chmod +x copy.sh
|
chmod +x copy.sh
|
||||||
./copy.sh 2>&1 | tee -a "$LOG"
|
./copy.sh 2>&1 | tee -a "$LOG"
|
||||||
@ -31,3 +31,4 @@ else
|
|||||||
echo -e "${ERROR} Can't download Hyprland-Dots" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Can't download Hyprland-Dots" 2>&1 | tee -a "$LOG"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@ -61,7 +61,6 @@ nwg=""
|
|||||||
rog=""
|
rog=""
|
||||||
sddm=""
|
sddm=""
|
||||||
swaylock=""
|
swaylock=""
|
||||||
swww=""
|
|
||||||
thunar=""
|
thunar=""
|
||||||
xdph=""
|
xdph=""
|
||||||
zsh=""
|
zsh=""
|
||||||
@ -133,8 +132,6 @@ ask_yes_no "Do you want to install zsh and oh-my-zsh?" zsh
|
|||||||
printf "\n"
|
printf "\n"
|
||||||
ask_yes_no "Do you want to install swaylock-effects?" swaylock
|
ask_yes_no "Do you want to install swaylock-effects?" swaylock
|
||||||
printf "\n"
|
printf "\n"
|
||||||
ask_yes_no "Do you want to install swww?" swww
|
|
||||||
printf "\n"
|
|
||||||
ask_yes_no "Do you want to install nwg-look?" nwg
|
ask_yes_no "Do you want to install nwg-look?" nwg
|
||||||
printf "\n"
|
printf "\n"
|
||||||
ask_yes_no "Do you want to copy dotfiles?" dots
|
ask_yes_no "Do you want to copy dotfiles?" dots
|
||||||
@ -149,6 +146,7 @@ execute_script "00-dependencies.sh"
|
|||||||
execute_script "00-hypr-pkgs.sh"
|
execute_script "00-hypr-pkgs.sh"
|
||||||
execute_script "fonts.sh"
|
execute_script "fonts.sh"
|
||||||
execute_script "swappy.sh"
|
execute_script "swappy.sh"
|
||||||
|
execute_script "swww.sh"
|
||||||
|
|
||||||
if [ "$nvidia" == "Y" ]; then
|
if [ "$nvidia" == "Y" ]; then
|
||||||
execute_script "nvidia.sh"
|
execute_script "nvidia.sh"
|
||||||
@ -190,10 +188,6 @@ if [ "$swaylock" == "Y" ]; then
|
|||||||
execute_script "swaylock-effects.sh"
|
execute_script "swaylock-effects.sh"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$swww" == "Y" ]; then
|
|
||||||
execute_script "swww.sh"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$nwg" == "Y" ]; then
|
if [ "$nwg" == "Y" ]; then
|
||||||
execute_script "nwg-look.sh"
|
execute_script "nwg-look.sh"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user