Icons and conversion to shades of green
This commit is contained in:
commit
63ba738bad
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
build/
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "icons"]
|
||||||
|
path = icons
|
||||||
|
url = https://github.com/feathericons/feather
|
23
README.md
Normal file
23
README.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# PinePhoneBoy Operating System
|
||||||
|
|
||||||
|
Linux UI customized to resemble a Fallout Pip-Boy. To be used with the PINE64 PinePhone running Arch Linux ARM, enclosed in the PinePhoneBoy harness.
|
||||||
|
|
||||||
|
## Components
|
||||||
|
- sway: Window Manager
|
||||||
|
- waybar: Side panel
|
||||||
|
- termite: Terminal emulator
|
||||||
|
- mako: Notifications daemon
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
- [Sway on PinePhone](https://github.com/Dejvino/pinephone-sway-poc)
|
||||||
|
- [feather icons](https://github.com/feathericons/feather)
|
||||||
|
|
||||||
|
## Install
|
||||||
|
```bash
|
||||||
|
...
|
||||||
|
|
||||||
|
./convert_icons.sh
|
||||||
|
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
16
convert_icons.sh
Executable file
16
convert_icons.sh
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
FILES=./icons/icons/*.svg
|
||||||
|
DEST_DIR=build/icons
|
||||||
|
EFFECT=-colorspace gray -fill green -tint 100
|
||||||
|
|
||||||
|
mkdir -p $DEST_DIR
|
||||||
|
|
||||||
|
for file in $FILES
|
||||||
|
do
|
||||||
|
SRC=$file
|
||||||
|
DST=$DEST_DIR/`basename -s .svg "$file"`.png
|
||||||
|
echo "$SRC --> $DST"
|
||||||
|
convert -background none $SRC -colorspace gray -fill green -colorize 100 $DST
|
||||||
|
done
|
||||||
|
|
1
icons
Submodule
1
icons
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit a718a7e9c39447202f703783336e8ba1c8e32405
|
Loading…
Reference in New Issue
Block a user