commit 63ba738bad34803bdf06f0a0f0f08713f5272245 Author: Dejvino Date: Mon Jan 4 21:18:01 2021 +0100 Icons and conversion to shades of green diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1b2a603 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "icons"] + path = icons + url = https://github.com/feathericons/feather diff --git a/README.md b/README.md new file mode 100644 index 0000000..4476160 --- /dev/null +++ b/README.md @@ -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 + +... +``` + diff --git a/convert_icons.sh b/convert_icons.sh new file mode 100755 index 0000000..4b90597 --- /dev/null +++ b/convert_icons.sh @@ -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 + diff --git a/icons b/icons new file mode 160000 index 0000000..a718a7e --- /dev/null +++ b/icons @@ -0,0 +1 @@ +Subproject commit a718a7e9c39447202f703783336e8ba1c8e32405