Script to compile scss and format files

- Format scss, css, & md files
- Compile scss to css
This commit is contained in:
Candifloss 2026-08-23 15:06:22 +05:30
parent bf384bec4b
commit 7f4aee2c21
7 changed files with 105 additions and 80 deletions

126
To_do.md
View File

@ -2,90 +2,90 @@
## 1. Bar ## 1. Bar
- [ ] Time - [ ] Time
- [ ] Date - [ ] Date
### 1.1 WM Things ### 1.1 WM Things
| Item | LeftWM | DWM | | Item | LeftWM | DWM |
|:----------------:|:------:|:-------:| | :------------: | :----: | :-: |
| Window Name | [ ] | [ ] | | Window Name | [ ] | [ ] |
| Workspace List | [ ] | [ ] | | Workspace List | [ ] | [ ] |
### 1.2 Status Icons ### 1.2 Status Icons
| Item | Linux | FreeBSD | | Item | Linux | FreeBSD |
|:----------------:|:-----:|:-------:| | :-------------: | :---: | :-----: |
| Battery / Power | [ ] | [ ] | | Battery / Power | [ ] | [ ] |
| Brightness | [ ] | [ ] | | Brightness | [ ] | [ ] |
| Volume | [ ] | [ ] | | Volume | [ ] | [ ] |
| Wi-Fi | [ ] | [ ] | | Wi-Fi | [ ] | [ ] |
| Wired Network | [ ] | [ ] | | Wired Network | [ ] | [ ] |
| Bluetooth | [ ] | [ ] | | Bluetooth | [ ] | [ ] |
| Keyboard | [ ] | [ ] | | Keyboard | [ ] | [ ] |
| Notifications | [ ] | [ ] | | Notifications | [ ] | [ ] |
| Weather | [ ] | [ ] | | Weather | [ ] | [ ] |
### 1.3 Other Bar Icons / Buttons ### 1.3 Other Bar Icons / Buttons
- [ ] Power / Session - [ ] Power / Session
- [ ] Settings - [ ] Settings
## 2. OSD ## 2. OSD
| Item | Linux | FreeBSD | | Item | Linux | FreeBSD |
|:----------------:|:-----:|:-------:| | :-------------: | :---: | :-----: |
| Battery / Power | [ ] | [ ] | | Battery / Power | [ ] | [ ] |
| Brightness | [ ] | [ ] | | Brightness | [ ] | [ ] |
| Volume | [ ] | [ ] | | Volume | [ ] | [ ] |
| Wi-Fi | [ ] | [ ] | | Wi-Fi | [ ] | [ ] |
| Wired Network | [ ] | [ ] | | Wired Network | [ ] | [ ] |
| Bluetooth | [ ] | [ ] | | Bluetooth | [ ] | [ ] |
| Keyboard | [ ] | [ ] | | Keyboard | [ ] | [ ] |
| Notifications | [ ] | [ ] | | Notifications | [ ] | [ ] |
| Weather | [ ] | [ ] | | Weather | [ ] | [ ] |
## 3. Menus ## 3. Menus
| Item | Linux | FreeBSD | | Item | Linux | FreeBSD |
|:----------------:|:-----:|:-------:| | :-------------: | :---: | :-----: |
| Battery / Power | [ ] | [ ] | | Battery / Power | [ ] | [ ] |
| Display | [ ] | [ ] | | Display | [ ] | [ ] |
| Audio | [ ] | [ ] | | Audio | [ ] | [ ] |
| Time | [ ] | [ ] | | Time | [ ] | [ ] |
| Date | [ ] | [ ] | | Date | [ ] | [ ] |
| Network | [ ] | [ ] | | Network | [ ] | [ ] |
| Keyboard | [ ] | [ ] | | Keyboard | [ ] | [ ] |
| Notifications | [ ] | [ ] | | Notifications | [ ] | [ ] |
| Weather | [ ] | [ ] | | Weather | [ ] | [ ] |
| Power / Session | [ ] | [ ] | | Power / Session | [ ] | [ ] |
## 4. Desktop Widgets ## 4. Desktop Widgets
| Item | Linux | FreeBSD | | Item | Linux | FreeBSD |
|:----------------:|:-----:|:-------:| | :-----: | :---: | :-----: |
| Time | [ ] | [ ] | | Time | [ ] | [ ] |
| Date | [ ] | [ ] | | Date | [ ] | [ ] |
| Weather | [ ] | [ ] | | Weather | [ ] | [ ] |
## 5. Dashboard ## 5. Dashboard
| Item | Linux | FreeBSD | | Item | Linux | FreeBSD |
|:----------------:|:-----:|:-------:| | :-------------: | :---: | :-----: |
| Power / Battery | [ ] | [ ] | | Power / Battery | [ ] | [ ] |
| CPU | [ ] | [ ] | | CPU | [ ] | [ ] |
| GPU | [ ] | [ ] | | GPU | [ ] | [ ] |
| RAM | [ ] | [ ] | | RAM | [ ] | [ ] |
| Disks | [ ] | [ ] | | Disks | [ ] | [ ] |
| User info | [ ] | [ ] | | User info | [ ] | [ ] |
| Package info | [ ] | [ ] | | Package info | [ ] | [ ] |
## 6. Notifications ## 6. Notifications
| Item | Linux | FreeBSD | | Item | Linux | FreeBSD |
|:----------------:|:-----:|:-------:| | :-----: | :---: | :-----: |
| Pop-up | [ ] | [ ] | | Pop-up | [ ] | [ ] |
| Alarm | [ ] | [ ] | | Alarm | [ ] | [ ] |
| History | [ ] | [ ] | | History | [ ] | [ ] |
| Actions | [ ] | [ ] | | Actions | [ ] | [ ] |
| Hints | [ ] | [ ] | | Hints | [ ] | [ ] |

24
fish/extra/build_scss.fish Executable file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env fish
set -l script_path (path resolve (status filename))
set -l script_dir (path dirname "$script_path")
set -l project_root (path normalize "$script_dir/../..")
set -l input "$project_root/scss/ewwii.scss"
set -l output "$project_root/ewwii.css"
cd "$project_root"
echo "Compiling SCSS..."
if not grass "$input" "$output"
echo "grass failed" >&2
exit 1
end
echo "Formatting project..."
if not dprint fmt
echo "dprint failed" >&2
exit 1
end
echo "Done."

View File

@ -0,0 +1 @@