SuprVillain's avatar
Works great and looks good on KDE. Good Work!
now we just need a bash script the reinterates the folders, caches the .py filenames, and executes them all.
1inux's avatar
Thanks bro!, yeah i'm working on a startup script..but i can't seem to get it to load all of the *.py's...only one..
SuprVillain's avatar
this is what i had ... but it wont work right. Still new to bash scripting ... and python...

(does not currently work right)

Req = Bash ver 4 (what everyone has i believe)

#!/bin/bash
# 1$ = parent folder, 2$ = pattern, AKA *.py
for i in "$1"/"$2";do
if [ -d "$i" ];then
echo "dir: $i"
recurse "$i"
elif [ -f "$i" ]; then
echo "file: $i"
fi
done
1inux's avatar
Wow, that's way more advanced than mine...i'm going to do some research to figure out how to do it.
SuprVillain's avatar
Thanks. I actually think that writing the "control" should be in python also, say 1 button per tile, so you can pick and choose what you want to start up.
1inux's avatar
Yeah that would be a good idea, but first i gotta learn some more advanced python...lol
SuprVillain's avatar
same here. your tiles is way more advanced that what i have been doing :D And it is a good job of it also! Now if only we could drag the tiles to re-position them...
1inux's avatar
ooh that would be nice, but idk if python has that kind of capability
View all replies