Changeset 647

Show
Ignore:
Timestamp:
06/26/08 09:54:52 (5 months ago)
Author:
free
Message:

* [lib/menu]:

  • put onboard under the accessories category
Location:
cdd-utils/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • cdd-utils/trunk/debian/changelog

    r646 r647  
    1 cdd-utils (0.11.5) 64studio; urgency=low 
     1cdd-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 
     8cdd-utils (0.11) 64studio; urgency=low 
    29 
    310  * Added Extensions option to touchscreen (needed by eneryXt) 
  • cdd-utils/trunk/lib/menu.sh

    r634 r647  
    1010    set_key "$key" "$sep" "$val" "$cfg" 
    1111  done 
     12} 
     13 
     14# Description: show onboard and put it under Accessories 
     15# Depends: onboard 
     16menu_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" 
    1227} 
    1328