Changeset 718

Show
Ignore:
Timestamp:
07/22/08 10:28:56 (2 months ago)
Author:
free
Message:

. fix epiphany invokation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cdd-utils/trunk/debian/changelog

    r709 r718  
    1 cdd-utils (0.12.12) 64studio; urgency=low 
     1cdd-utils (0.12.13) 64studio; urgency=low 
    22 
    33  * [lib]: 
     
    66        . added icon function 
    77        . custom eboard icon 
     8        . fix epiphany invokation 
    89     - desktop 
    910        . fixed wrong key in gdm theme configuration 
  • cdd-utils/trunk/lib/menu.sh

    r655 r718  
    4545  sep=" = " 
    4646  val="/usr/share/pixmaps/trinity/keyboard-icon.png" 
     47  set_key "$key" "$sep" "$val" "$cfg" 
     48} 
     49 
     50# Description: fix epiphany startup page 
     51# Depends: epiphany-browser 
     52menu_epiphany () { 
     53  cfg=/usr/share/applications/epiphany.desktop 
     54  if ! exists $cfg; then warning "$cfg not found"; return; fi 
     55  key="Exec" 
     56  sep="=" 
     57  val="epiphany-browser" 
    4758  set_key "$key" "$sep" "$val" "$cfg" 
    4859}