-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand layout image instructions and add helper script
- Loading branch information
burkfers
committed
Mar 16, 2024
1 parent
a68b209
commit 4b0ce16
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
#keymap draw cnano.yaml > cnano.svg && convert -size 800x800 -background '#303030' cnano.svg cnano.png && feh cnano.png | ||
|
||
for i in cnano cmini charybdis skeletyl tbkmini scylla; do | ||
echo $i | ||
keymap draw $i.yaml > $i.svg | ||
convert -size 800x800 -background '#303030' $i.svg $i.png | ||
done | ||
echo done! |