You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
677 B
28 lines
677 B
#!/bin/sh
|
|
themes=(
|
|
"text/text.theme"
|
|
"autoHide/main.theme"
|
|
"bar/bar.theme"
|
|
"graph/graph.theme"
|
|
"image/image.theme"
|
|
"popupMenu/popupMenu.theme"
|
|
"taskBar/cleanbar/cleanbar.theme"
|
|
"richtext/richtext.theme"
|
|
"richtext/rtext.theme"
|
|
"globalMouse/eyes.theme"
|
|
"unicode/unicode.theme"
|
|
"mouseDrag/karmix/karmix.theme"
|
|
"input_api/input_api.theme"
|
|
"input_example/input_example.theme"
|
|
)
|
|
|
|
for theme in "${themes[@]}"
|
|
do
|
|
echo $theme
|
|
dcop `dcop superkaramba* | head -n 1` default openTheme $PWD/$theme
|
|
read a
|
|
dcop `dcop superkaramba* | head -n 1` default closeTheme `expr $theme : '.*/\(.*\)\.'`
|
|
done
|
|
|
|
#dcop `dcop superkaramba* | head -n 1` default quit
|