blob: 4b920b671a9cd99402709a964b69f4b6e8f20ee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
themes="
autoHide/main.theme
bar/bar.theme
change_interval/interval.theme
cleanbar/cleanbar.theme
control_management/mgmt.theme
disableRightClickMenu/disable_menu.theme
globalMouse/eyes.theme
graph/graph.theme
image/image.theme
input_api/input_api.theme
input_example/input_example.theme
mouseDrag/karmix.theme
mouseDrop/mousedrop.theme
openCloseTheme/1.theme
openCloseTheme/2.theme
popupMenu/popupMenu.theme
richtext/richtext.theme
richtext/rtext.theme
service_group/service_group.theme
setIncomingData/1.theme
setIncomingData/2.theme
text/text.theme
unicode/unicode.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
|