Skip to content
Snippets Groups Projects
Select Git revision
  • fc1f20c698a9f29364ffda8358d3639a2f587462
  • master default protected
2 results

00-load.t

Blame
  • gen_desktop_files.sh 473 B
    #!/bin/bash
    # Generate desktop entries for CCS and TST apps
    
    CDIR=$1
    
    echo "[Desktop Entry]
    Name=CCS
    Icon=${CDIR}/Ccs/pixmap/ccs_logo_2.svg
    Comment=The UVIE Central Checkout System
    Exec=${CDIR}/start_ccs
    Path=${CDIR}
    Type=Application
    Categories=Development;" > ccs.desktop
    
    echo "[Desktop Entry]
    Name=TST
    Icon=${CDIR}/Tst/tst/style/tst.png
    Comment=The UVIE Test Specification Tool
    Exec=${CDIR}/start_tst
    Path=${CDIR}
    Type=Application
    Categories=Development;" > tst.desktop