mirror of
https://github.com/altercation/solarized
synced 2024-11-22 11:43:10 +00:00
11 lines
235 B
Bash
11 lines
235 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir colors
|
||
|
cp Solarized\ Light.xml colors
|
||
|
cp Solarized\ Dark.xml colors
|
||
|
touch IntelliJ\ IDEA\ Global\ Settings
|
||
|
|
||
|
jar cfM settings.jar IntelliJ\ IDEA\ Global\ Settings colors
|
||
|
|
||
|
rm -r colors
|
||
|
rm IntelliJ\ IDEA\ Global\ Settings
|