summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-07-16 02:29:10 -0500
committerJesse Luehrs <doy@tozt.net>2012-07-16 02:45:06 -0500
commit2cff657b1d35919a8b14656e1f600bf02b787825 (patch)
treead07c625b3a2dd613cb38cd951bd03977aa78c76
parenta242bffe10e7de7dec6c72b3bc79e5421472a301 (diff)
downloadconf-2cff657b1d35919a8b14656e1f600bf02b787825.tar.gz
conf-2cff657b1d35919a8b14656e1f600bf02b787825.zip
more old files to remove
-rwxr-xr-xbin/conkeror3
-rwxr-xr-xbin/pictures14
2 files changed, 0 insertions, 17 deletions
diff --git a/bin/conkeror b/bin/conkeror
deleted file mode 100755
index f751f9a..0000000
--- a/bin/conkeror
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-xulrunner ~/coding/software/conkeror/application.ini $*
diff --git a/bin/pictures b/bin/pictures
deleted file mode 100755
index d6fcca9..0000000
--- a/bin/pictures
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-mount /mnt/camera || exit
-fold=`date +%Y%m%d%H%M`
-to_dir=~/media/images/photos/unsorted/$fold
-from_dir=/mnt/camera/dcim/100olymp
-numpictures=0
-mkdir $to_dir
-for picture in $from_dir/*;do
-cp $picture $to_dir/
-(( numpictures += 1 ))
-done
-chmod 644 $to_dir/*
-echo "$numpictures images copied"
-umount /mnt/camera