Magellan Linux

Contents of /mcore-src/trunk/mcore-tools/daemon/client/include/fluxbox.client.class

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1919 - (show annotations) (download)
Wed Nov 9 13:33:26 2011 UTC (12 years, 5 months ago) by niro
File size: 4300 byte(s)
-added helper_rebuild_fluxbox_autostart() function
1 # $Id$
2
3 # todo wallpaper?
4
5 # what does this plugin provide?
6 provide fluxbox
7
8 # helper
9 helper_rebuild_fluxbox_menu()
10 {
11 local MMINCLUDE
12 local CONFIG
13
14 MMINCLUDE="${MCORE_CONFIG_PATH}/fluxbox/mcore-menu-include"
15 CONFIG="${MMINCLUDE}"
16 clearconfig
17
18 for file in ${MCORE_CONFIG_PATH}/fluxbox/menu/*
19 do
20 addconfig "[include] (${file})"
21 done
22
23 # rebuild the user menu too atm
24 CONFIG="${MCORE_UNPRIV_HOME}/.fluxbox/menu"
25 if [[ ! -d ${MCORE_UNPRIV_HOME}/.fluxbox ]]
26 then
27 install -o ${MCORE_UNPRIV_USER} -o ${MCORE_UNPRIV_GROUP} -d ${MCORE_UNPRIV_HOME}/.fluxbox
28 fi
29
30 # fluxbox menu header
31 clearconfig
32 local ver="$(< /etc/mageversion)"
33 addconfig "[begin] (mCore-${ver} #${MCORE_SERIAL})"
34
35 # add a newline (maybe there is no crlf in the header)
36 addconfig
37
38 # our specific menu include
39 addconfig "[include] (${MMINCLUDE})"
40
41 # fluxbox menu footer
42 addconfig '[separator]'
43 addconfig '[exit] (Abmelden)'
44 addconfig '[exec] (Neustarten) {sudo /sbin/reboot}'
45 addconfig '[exec] (Herunterfahren) {sudo /sbin/halt}'
46 addconfig '[end]'
47
48 # add a newline (maybe there is no crlf in the footer)
49 addconfig
50 }
51
52 helper_rebuild_fluxbox_autostart()
53 {
54 local CONFIG
55
56 CONFIG="${MCORE_UNPRIV_HOME}/.fluxbox/apps"
57 clearconfig
58 for file in ${MCORE_CONFIG_PATH}/fluxbox/autostart/*
59 do
60 addconfig "$(< ${file})"
61 done
62
63 # add a newline (maybe there is no crlf in the footer)
64 addconfig
65 }
66
67 help_fluxbox_menuitem()
68 {
69 mecho "get fluxbox.menuitem"
70 mecho " Shows all custom added menuitems of fluxbox."
71 mecho
72 mecho "set fluxbox.menuitem [action] [name] [exec] [workdir] [icon]"
73 mecho " Adds or deletes a fluxbox menu entry."
74 mecho " Actions:"
75 mecho " add - adds a menuitem"
76 mecho " del - deletes a menuitem"
77 mecho
78 mecho " name - menu entry name"
79 mecho " exec - executable to start"
80 mecho " workdir - working directory for the executable - optional"
81 mecho " icon - pixmap icon of the entry - optional"
82 mecho
83 mecho " If no [name] given, all entries will be deleted."
84 }
85
86 # set_fluxbox_menuitem $name $exec $workdir $icon
87 set_fluxbox_menuitem()
88 {
89 local action="$1"
90 local name="$2"
91 local exec="$3"
92 local workdir="$4"
93 local icon="$5"
94 local CONFIG
95
96 [[ -z ${action} ]] && help_fluxbox_menuitem && return 1
97
98 case "${action}" in
99 add)
100 [[ -z ${name} ]] && help_fluxbox_menuitem && return 1
101 [[ -z ${exec} ]] && help_fluxbox_menuitem && return 1
102 CONFIG="${MCORE_CONFIG_PATH}/fluxbox/menu/${name}"
103 clearconfig
104 addconfig "[exec] (${name}) {${exec}}"
105 ;;
106 del)
107 if [[ -f ${MCORE_CONFIG_PATH}/fluxbox/menu/${name} ]]
108 then
109 rm ${MCORE_CONFIG_PATH}/fluxbox/menu/"${name}"
110 elif [[ -z ${name} ]]
111 then
112 # delete all items
113 rm ${MCORE_CONFIG_PATH}/fluxbox/menu/*
114 fi
115 ;;
116 *)
117 help_fluxbox_menuitem && return 1
118 ;;
119 esac
120
121 # rebuild the menu now
122 helper_rebuild_fluxbox_menu
123 }
124
125 # get_fluxbox_menuitem
126 get_fluxbox_menuitem()
127 {
128 local i
129 local item
130
131 for i in $(find ${MCORE_CONFIG_PATH}/fluxbox/menu -type f | sort)
132 do
133 item="${item} $(basename ${i})"
134 done
135
136 rvecho "${item}"
137 }
138
139 help_fluxbox_theme()
140 {
141 mecho "get fluxbox.theme [method]"
142 mecho " Displays current installed or system-wide available themes."
143 mecho " Methods:"
144 mecho " system - shows systemwide available themes"
145 mecho " current - shows current selected theme"
146 mecho
147 mecho "set fluxbox.theme [theme]"
148 mecho " Sets a default theme for fluxbox."
149 }
150
151 set_fluxbox_theme()
152 {
153 local theme="$1"
154 local stylesdir="/usr/share/fluxbox/styles"
155
156 [[ -z ${theme} ]] && help_fluxbox_theme && return 1
157 [[ ! -x $(which fluxbox-remote) ]] && eecho "fluxbox-remote missing! Aborted" && return 1
158
159 if [[ -e ${stylesdir}/${theme} ]]
160 then
161 x11runas "fluxbox-remote 'SetStyle ${stylesdir}/${theme}'"
162 else
163 eechoe "Theme '${theme}' does not exist!"
164 fi
165 }
166
167 get_fluxbox_theme()
168 {
169 local method="$1"
170 local stylesdir="/usr/share/fluxbox/styles"
171 local value
172 local i
173
174 [[ -z ${method} ]] && help_fluxbox_theme && return 1
175
176 case "${method}" in
177 system)
178 for i in $(find ${stylesdir} -mindepth 1 -maxdepth 1 | sort)
179 do
180 value="${value} $(basename ${i})"
181 done
182 rvecho "${value}"
183 ;;
184
185 current)
186 value=$(grep -i '^session.stylefile' ${MCORE_UNPRIV_HOME}/.fluxbox/init | sed 's:.*/\(.*\):\1:')
187 rvecho "${value}"
188 ;;
189 *) help_fluxbox_theme && return 1 ;;
190 esac
191 }