chiark / gitweb /
Tents: mark squares as non-tents with {Shift,Control}-cursor keys.
[sgt-puzzles.git] / desktop.pl
index 18b68ee10363b5a36bc74806520b0d4afdbb512d..204c0ce262ea13b19012e29d718094061e73f395 100755 (executable)
@@ -6,7 +6,8 @@
 # working on the puzzles and want to play your bleeding-edge locally
 # modified and compiled versions, run this script and it will create a
 # collection of desktop files in ~/.local/share/applications where
-# XFCE can pick them up and add them to its main menu.
+# XFCE can pick them up and add them to its main menu. (Be sure to run
+# 'xfdesktop --reload' after running this.)
 #
 # (If you don't use XFCE, patches to support other desktop
 # environments are welcome :-)
@@ -30,7 +31,7 @@ open my $desc, "<", "gamedesc.txt"
 
 while (<$desc>) {
     chomp;
-    my ($id, $win, $displayname, $description) = split /:/, $_;
+    my ($id, $win, $displayname, $description, $summary) = split /:/, $_;
 
     open my $desktop, ">", "$outdir/$id.desktop"
         or die "$outdir/$id.desktop: open: $!\n";