8 Commits

Author SHA1 Message Date
JaKooLit
d3a04c7033 switched to Hyprland-git 2023-10-29 09:06:24 +09:00
JaKooLit
1c2ba10c5b updated readme 2023-10-27 22:51:21 +09:00
JaKooLit
ea77d9c80f added .zshrc 2023-10-27 09:38:08 +09:00
JaKooLit
bbdde1f233 updated dotfiles 2023-10-26 21:09:56 +09:00
JaKooLit
1432003f65 update dotfiles.sh script 2023-10-26 20:49:43 +09:00
JaKooLit
5d2250bb4d update 2023-10-26 15:59:06 +09:00
JaKooLit
9d0fc9770c updated screenshots 2023-10-26 15:57:16 +09:00
JaKooLit
d7ca57ac9d Updated-Screenshots 2023-10-26 15:53:36 +09:00
4 changed files with 44 additions and 6 deletions

View File

@@ -11,8 +11,9 @@
### Basically a copy of my Hyprland-v4 Hyprland-install script [`Link`](https://github.com/JaKooLit/Hyprland-v4) ### Basically a copy of my Hyprland-v4 Hyprland-install script [`Link`](https://github.com/JaKooLit/Hyprland-v4)
<p align="center"> <p align="center">
<img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Arch-Hyprland/dual-panel-light-dark-switch.png" /> <img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Arch-Hyprland/dual-panel-dark_light-switch.png" /> <img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Hyprland-ScreenShots/Arch/dual-panel-light-dark-switch.png" /> <img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Hyprland-ScreenShots/Arch/dual-panel-dark_light-switch.png" />
<img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Arch-Hyprland/gnome-style.png" /> <img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Arch-Hyprland/Plasma-Style.png" /> /> <img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Hyprland-ScreenShots/Arch/gnome-style.png" /> <img align="center" width="49%" src="https://raw.githubusercontent.com/JaKooLit/screenshots/main/Hyprland-ScreenShots/Arch/Plasma-Style.png" /> />
### 📽️ youtube video showcase: [`Youtube Link`](https://youtu.be/otda1nXJ5Dg?si=Wbb8eg-u3Y-tDnDQ) ### 📽️ youtube video showcase: [`Youtube Link`](https://youtu.be/otda1nXJ5Dg?si=Wbb8eg-u3Y-tDnDQ)
@@ -20,6 +21,14 @@
### ✨ A video walk through my dotfiles[`Link`](https://youtu.be/fO-RBHvVEcc?si=ijqxxnq_DLiyO8xb) ### ✨ A video walk through my dotfiles[`Link`](https://youtu.be/fO-RBHvVEcc?si=ijqxxnq_DLiyO8xb)
## 🪧🪧🪧 ANNOUNCEMENT 🪧🪧🪧
- I have moved to a centralized Hyprland Dots/Configuration. [`Hyprland-Dots`](https://github.com/JaKooLit/Hyprland-Dots) . During installation, if you opt to copy installation, it will be downloaded from that centralized repo.
- after initial boot-up after install, you will experience a NO wallpaper. This is due to changes I made on the install scripts to correct that, you can press the light/dark button or choose wallpaper (SUPER CTRL W), and that wallpaper will be loaded after reboot or login.
- more info on announcement [`Link`](https://youtu.be/upDl1ns05eg)
If you want to use swaybg as wallpaper provider, you can edit ~/.config/hypr/configs/Execs.conf and uncomment the swaybg part
### 🆕 What's new? ### 🆕 What's new?
- Basically just a clone of my Hyprland-v4. Just renamed and cleaned up codes. - Basically just a clone of my Hyprland-v4. Just renamed and cleaned up codes.

18
assets/.zshrc Normal file
View File

@@ -0,0 +1,18 @@
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="mikeh"
plugins=(
git
archlinux
zsh-autosuggestions
zsh-syntax-highlighting
)
source $ZSH/oh-my-zsh.sh

View File

@@ -15,11 +15,22 @@ LOG="install-$(date +'%d-%H%M%S')_dots.log"
printf "${NOTE} Downloading Hyprland dots...\n" printf "${NOTE} Downloading Hyprland dots...\n"
if git clone https://github.com/JaKooLit/Hyprland-Dots.git; then if [ -d Hyprland-Dots ]; then
cd Hyprland-Dots || exit 1 cd Hyprland-Dots
git stash
git pull
git stash apply
chmod +x copy.sh chmod +x copy.sh
./copy.sh 2>&1 | tee -a "$LOG" ./copy.sh 2>&1 | tee -a "$LOG"
else else
echo -e "${ERROR} Cant download Hyprland-Dots" 2>&1 | tee -a "$LOG" if git clone https://github.com/JaKooLit/Hyprland-Dots.git; then
cd Hyprland-Dots || exit 1
chmod +x copy.sh
./copy.sh 2>&1 | tee -a "$LOG"
else
echo -e "${ERROR} Can't download Hyprland-Dots" 2>&1 | tee -a "$LOG"
fi
fi fi

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
hypr=( hypr=(
hyprland hyprland-git
) )
# Set some colors for output messages # Set some colors for output messages