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