oha
This commit is contained in:
parent
3de96b5c32
commit
51c3e4ca57
2746 changed files with 27870 additions and 3 deletions
20
.config/retroarch/assets/xmb/convert.sh
Executable file
20
.config/retroarch/assets/xmb/convert.sh
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
|
||||
# MonoChrome SVG to PNG Converter
|
||||
#
|
||||
# Will update the given icon from its SVG to its PNG.
|
||||
#
|
||||
# Requires Inkscape to be installed.
|
||||
#
|
||||
# ./convert.sh THEME ICON
|
||||
#
|
||||
# Parameters
|
||||
# - THEME Which theme to act on.
|
||||
# - ICON Which icon to conver from an SVG to a PNG.
|
||||
#
|
||||
# Example
|
||||
#
|
||||
# ./convert.sh monochrome battery-full
|
||||
# ./convert.sh flatui DOS
|
||||
|
||||
inkscape -z -e "$1/png/$2.png" -w 256 -h 256 "$1/src/$2.svg"
|
||||
Loading…
Add table
Add a link
Reference in a new issue