diff --git a/README.md b/README.md index 0dbd184..18f0dfb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # dotfiles_ewwii -EWW-II dotfiles to replace EWW \ No newline at end of file +EWW-II dotfiles to replace EWW diff --git a/To_do.md b/To_do.md index 7e8aac4..710b08c 100644 --- a/To_do.md +++ b/To_do.md @@ -1,91 +1,91 @@ -# EWW-II Widgets To-Do - -## 1. Bar +# EWW-II Widgets To-Do - - [ ] Time - - [ ] Date +## 1. Bar -### 1.1 WM Things +- [ ] Time +- [ ] Date - | Item | LeftWM | DWM | - |:----------------:|:------:|:-------:| - | Window Name | [ ] | [ ] | - | Workspace List | [ ] | [ ] | +### 1.1 WM Things -### 1.2 Status Icons +| Item | LeftWM | DWM | +| :------------: | :----: | :-: | +| Window Name | [ ] | [ ] | +| Workspace List | [ ] | [ ] | - | Item | Linux | FreeBSD | - |:----------------:|:-----:|:-------:| - | Battery / Power | [ ] | [ ] | - | Brightness | [ ] | [ ] | - | Volume | [ ] | [ ] | - | Wi-Fi | [ ] | [ ] | - | Wired Network | [ ] | [ ] | - | Bluetooth | [ ] | [ ] | - | Keyboard | [ ] | [ ] | - | Notifications | [ ] | [ ] | - | Weather | [ ] | [ ] | +### 1.2 Status Icons -### 1.3 Other Bar Icons / Buttons +| Item | Linux | FreeBSD | +| :-------------: | :---: | :-----: | +| Battery / Power | [ ] | [ ] | +| Brightness | [ ] | [ ] | +| Volume | [ ] | [ ] | +| Wi-Fi | [ ] | [ ] | +| Wired Network | [ ] | [ ] | +| Bluetooth | [ ] | [ ] | +| Keyboard | [ ] | [ ] | +| Notifications | [ ] | [ ] | +| Weather | [ ] | [ ] | - - [ ] Power / Session - - [ ] Settings +### 1.3 Other Bar Icons / Buttons -## 2. OSD +- [ ] Power / Session +- [ ] Settings - | Item | Linux | FreeBSD | - |:----------------:|:-----:|:-------:| - | Battery / Power | [ ] | [ ] | - | Brightness | [ ] | [ ] | - | Volume | [ ] | [ ] | - | Wi-Fi | [ ] | [ ] | - | Wired Network | [ ] | [ ] | - | Bluetooth | [ ] | [ ] | - | Keyboard | [ ] | [ ] | - | Notifications | [ ] | [ ] | - | Weather | [ ] | [ ] | +## 2. OSD -## 3. Menus +| Item | Linux | FreeBSD | +| :-------------: | :---: | :-----: | +| Battery / Power | [ ] | [ ] | +| Brightness | [ ] | [ ] | +| Volume | [ ] | [ ] | +| Wi-Fi | [ ] | [ ] | +| Wired Network | [ ] | [ ] | +| Bluetooth | [ ] | [ ] | +| Keyboard | [ ] | [ ] | +| Notifications | [ ] | [ ] | +| Weather | [ ] | [ ] | - | Item | Linux | FreeBSD | - |:----------------:|:-----:|:-------:| - | Battery / Power | [ ] | [ ] | - | Display | [ ] | [ ] | - | Audio | [ ] | [ ] | - | Time | [ ] | [ ] | - | Date | [ ] | [ ] | - | Network | [ ] | [ ] | - | Keyboard | [ ] | [ ] | - | Notifications | [ ] | [ ] | - | Weather | [ ] | [ ] | - | Power / Session | [ ] | [ ] | +## 3. Menus -## 4. Desktop Widgets +| Item | Linux | FreeBSD | +| :-------------: | :---: | :-----: | +| Battery / Power | [ ] | [ ] | +| Display | [ ] | [ ] | +| Audio | [ ] | [ ] | +| Time | [ ] | [ ] | +| Date | [ ] | [ ] | +| Network | [ ] | [ ] | +| Keyboard | [ ] | [ ] | +| Notifications | [ ] | [ ] | +| Weather | [ ] | [ ] | +| Power / Session | [ ] | [ ] | - | Item | Linux | FreeBSD | - |:----------------:|:-----:|:-------:| - | Time | [ ] | [ ] | - | Date | [ ] | [ ] | - | Weather | [ ] | [ ] | +## 4. Desktop Widgets -## 5. Dashboard +| Item | Linux | FreeBSD | +| :-----: | :---: | :-----: | +| Time | [ ] | [ ] | +| Date | [ ] | [ ] | +| Weather | [ ] | [ ] | - | Item | Linux | FreeBSD | - |:----------------:|:-----:|:-------:| - | Power / Battery | [ ] | [ ] | - | CPU | [ ] | [ ] | - | GPU | [ ] | [ ] | - | RAM | [ ] | [ ] | - | Disks | [ ] | [ ] | - | User info | [ ] | [ ] | - | Package info | [ ] | [ ] | +## 5. Dashboard -## 6. Notifications +| Item | Linux | FreeBSD | +| :-------------: | :---: | :-----: | +| Power / Battery | [ ] | [ ] | +| CPU | [ ] | [ ] | +| GPU | [ ] | [ ] | +| RAM | [ ] | [ ] | +| Disks | [ ] | [ ] | +| User info | [ ] | [ ] | +| Package info | [ ] | [ ] | - | Item | Linux | FreeBSD | - |:----------------:|:-----:|:-------:| - | Pop-up | [ ] | [ ] | - | Alarm | [ ] | [ ] | - | History | [ ] | [ ] | - | Actions | [ ] | [ ] | - | Hints | [ ] | [ ] | +## 6. Notifications + +| Item | Linux | FreeBSD | +| :-----: | :---: | :-----: | +| Pop-up | [ ] | [ ] | +| Alarm | [ ] | [ ] | +| History | [ ] | [ ] | +| Actions | [ ] | [ ] | +| Hints | [ ] | [ ] | diff --git a/ewwii.css b/ewwii.css index fcef916..f5b1be6 100644 --- a/ewwii.css +++ b/ewwii.css @@ -1,4 +1,4 @@ * { - all: unset; - box-sizing: border-box; + all: unset; + box-sizing: border-box; } diff --git a/fish/extra/build_scss.fish b/fish/extra/build_scss.fish new file mode 100755 index 0000000..126e01c --- /dev/null +++ b/fish/extra/build_scss.fish @@ -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." diff --git a/scss/colors/_glass.scss b/scss/colors/_glass.scss index e69de29..8b13789 100644 --- a/scss/colors/_glass.scss +++ b/scss/colors/_glass.scss @@ -0,0 +1 @@ + diff --git a/scss/common/_reset.scss b/scss/common/_reset.scss index 53c48f3..f5b1be6 100644 --- a/scss/common/_reset.scss +++ b/scss/common/_reset.scss @@ -1,4 +1,4 @@ * { - all: unset; + all: unset; box-sizing: border-box; -} \ No newline at end of file +} diff --git a/scss/ewwii.scss b/scss/ewwii.scss index 3616571..3203744 100644 --- a/scss/ewwii.scss +++ b/scss/ewwii.scss @@ -1 +1 @@ -@use "common/reset"; \ No newline at end of file +@use "common/reset";