Changeset 647
- Timestamp:
- 06/26/08 09:54:52 (5 months ago)
- Location:
- cdd-utils/trunk
- Files:
-
- 2 modified
-
debian/changelog (modified) (1 diff)
-
lib/menu.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cdd-utils/trunk/debian/changelog
r646 r647 1 cdd-utils (0.11.5) 64studio; urgency=low 1 cdd-utils (0.12) 64studio; urgency=low 2 3 * [lib/menu]: 4 - put onboard under the accessories category 5 6 -- Trinity <trinity@trinity> Thu, 26 Jun 2008 04:51:38 -0400 7 8 cdd-utils (0.11) 64studio; urgency=low 2 9 3 10 * Added Extensions option to touchscreen (needed by eneryXt) -
cdd-utils/trunk/lib/menu.sh
r634 r647 10 10 set_key "$key" "$sep" "$val" "$cfg" 11 11 done 12 } 13 14 # Description: show onboard and put it under Accessories 15 # Depends: onboard 16 menu_onboard () { 17 cfg=/usr/share/applications/onboard.desktop 18 if ! exists $cfg; then warning "$cfg not found"; return; fi 19 key="Categories" 20 sep="=" 21 val="GNOME;GTK;Utility;" 22 set_key "$key" "$sep" "$val" "$cfg" 23 key="NoDisplay" 24 sep="=" 25 val="false" 26 set_key "$key" "$sep" "$val" "$cfg" 12 27 } 13 28
