[BACK]Return to make-link-for-desktop.sh CVS log [TXT][DIR] Up to [contributed] / brogue-ce / linux

Annotation of brogue-ce/linux/make-link-for-desktop.sh, Revision 1.1

1.1     ! rubenllo    1: #!/usr/bin/env bash
        !             2: cd `dirname $0`
        !             3: sed s?PATH?`pwd`?g > brogue.desktop <<-end
        !             4:        [Desktop Entry]
        !             5:        Version=1.0
        !             6:        Type=Application
        !             7:        Name=Brogue
        !             8:        GenericName=Roguelike
        !             9:        Comment=Brave the Dungeons of Doom!
        !            10:        Comment[de]=Meistere die Dungeons der Verdammnis!
        !            11:        Comment[ru]=Бросьте вызов Подземельям Погибели!
        !            12:        Exec=PATH/brogue
        !            13:        Path=PATH
        !            14:        Icon=PATH/bin/assets/icon.png
        !            15:        Terminal=false
        !            16:        Categories=Game;
        !            17: end
        !            18:
        !            19: chmod +x brogue.desktop
        !            20:
        !            21: echo "Created brogue.desktop."
        !            22: echo "If your desktop is in the default location, type:"
        !            23: echo "mv brogue.desktop ~/Desktop"

CVSweb