update readme. added swaylock-effects

This commit is contained in:
JaKooLit 2023-10-13 10:22:26 +09:00
parent 8b6a5f14a8
commit 103114fd7a
2 changed files with 17 additions and 0 deletions

View File

@ -71,6 +71,16 @@ source ~/.zshrc
- swww [`LINK`](https://github.com/Horus645/swww) - swww [`LINK`](https://github.com/Horus645/swww)
- swaylock-effects [`LINK`](https://github.com/mortie/swaylock-effects) - swaylock-effects [`LINK`](https://github.com/mortie/swaylock-effects)
- a.) to update these package, in your installation folder, you can move these folders, `Hyprland` `nwg-look` `swaylock-effects` `swww` `asusctl` `supergfxctl`, as appropriate or download manually, cd into it, and ran git pull
- b.) for Hyprland, nwg-look, asusctl, supergfxtctl, to update ran sudo make install
- c.) for swww, to update cargo build --release
- d.) for swaylock-effects
``` bash
meson build
ninja -C build
sudo ninja -C build install
```
### ✨ Roadmap: ### ✨ Roadmap:
- [ ] Install zsh and oh-my-zsh without necessary steps above - [ ] Install zsh and oh-my-zsh without necessary steps above
- [ ] possibly adding gruvbox themes, cursors, icons - [ ] possibly adding gruvbox themes, cursors, icons

View File

@ -60,6 +60,7 @@ nvidia=""
nwg="" nwg=""
rog="" rog=""
sddm="" sddm=""
swaylock=""
swww="" swww=""
thunar="" thunar=""
xdph="" xdph=""
@ -130,6 +131,8 @@ ask_yes_no "Do you want to install xdg-desktop-portal-hyprland?" xdph
printf "\n" printf "\n"
ask_yes_no "Do you want to install zsh and oh-my-zsh?" zsh 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
printf "\n"
ask_yes_no "Do you want to install swww?" swww ask_yes_no "Do you want to install swww?" swww
printf "\n" printf "\n"
ask_yes_no "Do you want to install nwg-look?" nwg ask_yes_no "Do you want to install nwg-look?" nwg
@ -182,6 +185,10 @@ if [ "$zsh" == "Y" ]; then
execute_script "zsh.sh" execute_script "zsh.sh"
fi fi
if [ "$swaylock" == "Y" ]; then
execute_script "swaylock-effects.sh"
fi
if [ "$swww" == "Y" ]; then if [ "$swww" == "Y" ]; then
execute_script "swww.sh" execute_script "swww.sh"
fi fi