diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-03-07 12:12:44 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-03-07 12:12:44 +0100 |
commit | 0d2383a043596a4b2e6a04a7d61b7ca320dba1f3 (patch) | |
tree | a9d66f5305be6c44f51da7499c2e5f330063b8fc /cam/gen_cam_menu.sh | |
parent | 22f158aaf2f56dc5e2f83de7dd497ea1e25d2d9b (diff) |
Renames: cam → feh-cam, gen_cam_menu.sh → gen-cam-menu
Diffstat (limited to 'cam/gen_cam_menu.sh')
-rwxr-xr-x | cam/gen_cam_menu.sh | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/cam/gen_cam_menu.sh b/cam/gen_cam_menu.sh deleted file mode 100755 index 9fe3770..0000000 --- a/cam/gen_cam_menu.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -###################################################################### -# gen_cam_menu.sh 0.1 # -# by Paul Duncan <pabs@pablotron.org> # -# # -# This script will generate a menu of cam bookmarks for # -# Enlightenment DR0.16.x. TYou can safely run this script more than # -# once; it won't add an another entry to the left-click menu if it's # -# already been run once. It doesn't delete any existing menu # -# entries, and it backs up your existing menu files as well. (just # -# in case I screwed up.. hehe). THe two variables below allow you # -# rename the left-click menuitem, and the menu title. # -# # -# # -MENU_ITEM="Webcams"; # -MENU_TITLE="Webcam List"; # -BMARKS=$HOME"/.cam_bookmarks"; # -# # -###################################################################### - - -C_MENUFILE="webcam.menu"; -F_MENUFILE="file.menu"; -C_MENU=$HOME"/.enlightenment/"$C_MENUFILE; -F_MENU=$HOME"/.enlightenment/"$F_MENUFILE; - -# make backups, just in case -cp -f $C_MENU $C_MENU"-cam_menu.backup" -cp -f $F_MENU $F_MENU"-cam_menu.backup" - -# generate cam menu -echo "Generating \""$C_MENU"\"."; -echo "\"$TITLE\"" > "$C_MENU"; -cat $BMARKS | perl -e "while (<>) { /(.*?)=/; \$keys{\$1}=\"1\"; } foreach(sort keys %keys) { /(.)(.*$)/; print \"\\\"\".uc(\$1).\"\$2\\\" NULL exec \\\"cam \$1\$2\\\"\\n\"; }">> $C_MENU; - -# add entry to file menu if there isn't one -echo "Generating \""$F_MENU"\"."; -perl -i -e "\$already_there=0; while (<>) { \$already_there++ if (/$MENU_ITEM/); print \"\\\"$MENU_ITEM\\\" NULL menu \\\"$C_MENUFILE\\\"\\n\" if (!\$already_there&&/Restart/); print; }" $F_MENU; - -echo "Done."; |