Compare commits
8 Commits
Arch-Hyprl
...
Arch-Hyprl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d3a04c7033 | ||
|
|
1c2ba10c5b | ||
|
|
ea77d9c80f | ||
|
|
bbdde1f233 | ||
|
|
1432003f65 | ||
|
|
5d2250bb4d | ||
|
|
9d0fc9770c | ||
|
|
d7ca57ac9d |
13
README.md
13
README.md
@@ -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
18
assets/.zshrc
Normal 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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -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 [ -d Hyprland-Dots ]; then
|
||||||
|
cd Hyprland-Dots
|
||||||
|
git stash
|
||||||
|
git pull
|
||||||
|
git stash apply
|
||||||
|
chmod +x copy.sh
|
||||||
|
./copy.sh 2>&1 | tee -a "$LOG"
|
||||||
|
else
|
||||||
if git clone https://github.com/JaKooLit/Hyprland-Dots.git; then
|
if git clone https://github.com/JaKooLit/Hyprland-Dots.git; 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"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Cant download Hyprland-Dots" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Can't download Hyprland-Dots" 2>&1 | tee -a "$LOG"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user