Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 7 → Rev 8

/trunk/Bash/kde-icon.sh
17,10 → 17,10
ICON=gentoo-start-icon.svg
RESOLUTION=(16x16 22x22 32x32 48x48 64x64 128x128 256x256)
URL="http://gentoo-art.org/CONTENT/content-files/117383-gentoo-start-icon.svg"
WGET=`/usr/bin/wget`
MV=`/bin/mv`
CP=`/bin/cp`
RM=`/bin/rm`
WGET="/usr/bin/wget"
MV="/bin/mv"
CP="/bin/cp"
RM="/bin/rm"
 
if [ "${1}" = "global" ]; then
PATH="/usr/share/icons/"
/trunk/Bash/obex_mount.sh
0,0 → 1,28
#!/bin/sh
 
#####################################################################
# Script to mount obex mobile device via bluetooth
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# Author: Andrzej Kardaƛ
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
#######################################################################
 
MOUNTPOINT="/tmp/${USER}-${1}"
 
#Create mount directory
mkdir ${MOUNTPOINT}
#Mount the device
obexfs -b ${1} ${MOUNTPOINT}
sleep 5
/usr/bin/krusader --left ${HOME} --right ${MOUNTPOINT}
#/usr/bin/dolphin ${MOUNTPOINT}
#Unmount the device
fusermount -u ${MOUNTPOINT}
sleep 5
#Remove mount directory
rmdir ${MOUNTPOINT}
Property changes:
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property