Author |
Message |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Sun 30 Nov 2014, 04:45 Post subject:
|
|
Blackish theme - tested in Quirky and tahrpup. this is an example that you can share global themes as pets
Description |
|
Filesize |
8.19 KB |
Viewed |
325 Time(s) |

|
Description |
|

Download |
Filename |
Blackish-theme.pet |
Filesize |
118.08 KB |
Downloaded |
255 Time(s) |
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Sun 30 Nov 2014, 10:41 Post subject:
|
|
Version 1.4 : Bugfix remove profile, add make pet function (share your theme profile)
See main post
_________________ My apps
|
Back to top
|
|
 |
neerajkolte

Joined: 10 Feb 2014 Posts: 517 Location: Pune, India.
|
Posted: Sun 30 Nov 2014, 12:11 Post subject:
|
|
Looks Nice.
I will try.
- Neeraj
_________________ "One of my most productive days was throwing away 1000 lines of code."
- Ken Thompson
“We tend to overestimate the effect of a technology in the short run and underestimate the effect in the long run.”
- Amara’s Law.
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Mon 01 Dec 2014, 04:25 Post subject:
|
|
Version 1.5 : add notification/warning when make pet
see main post
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Mon 01 Dec 2014, 20:22 Post subject:
|
|
Blueish theme pack
Description |
|
Filesize |
8.91 KB |
Viewed |
261 Time(s) |

|
Description |
|

Download |
Filename |
Blueish.pet |
Filesize |
39.68 KB |
Downloaded |
271 Time(s) |
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Tue 02 Dec 2014, 05:11 Post subject:
|
|
Version 1.6 : Registers current applied wallpaper, delete dir after make pet
(no need manual delete)
see main post
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Wed 03 Dec 2014, 10:26 Post subject:
|
|
Version 1.7 : replace ls with find when listing walpapers
see main post
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Wed 03 Dec 2014, 20:02 Post subject:
|
|
Version 1.7.1; bugfix wallpaper list
sorry.
see main post
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Sat 06 Dec 2014, 07:05 Post subject:
|
|
Browny theme pack
Description |
|
Filesize |
6.96 KB |
Viewed |
232 Time(s) |

|
Description |
|

Download |
Filename |
Browny.pet |
Filesize |
98.53 KB |
Downloaded |
243 Time(s) |
_________________ My apps
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Tue 09 Dec 2014, 07:18 Post subject:
|
|
Version 1.7.2: Bugfix creating base dir for pet at first run
see main post
_________________ My apps
|
Back to top
|
|
 |
stemsee
Joined: 27 Jun 2013 Posts: 2543 Location: In The Way
|
Posted: Tue 09 Dec 2014, 08:20 Post subject:
|
|
version 1.7.2 seems not to work on Dpup Wheezy. It removes the wallpaper without setting a new one.
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Tue 09 Dec 2014, 08:29 Post subject:
|
|
How does dpup sets walpaper?
Does it has /usr/sbin/set_bg? Or /usr/local/wallpaper/set_bg? I don't remember correctly the path, as i'm not @ a computer. Typing this in mobile. Usual puppies/quirky uses set_bg script. If this app doesn't work correctly in dpup, then desktopiconarrangement won;t work fully also in dpup
_________________ My apps
|
Back to top
|
|
 |
stemsee
Joined: 27 Jun 2013 Posts: 2543 Location: In The Way
|
Posted: Tue 09 Dec 2014, 10:07 Post subject:
|
|
It has /usr.sbin.set_bg
|
Back to top
|
|
 |
trio

Joined: 21 Dec 2008 Posts: 2083 Location: अनुमोदना
|
Posted: Tue 09 Dec 2014, 11:02 Post subject:
|
|
I don't have or use any dpup ever. Can you post the content of set_bg script
What happens if you run in terminal
set_bg /usr/share/backgrounds/yourwallpaperm.jpg
Thanks
_________________ My apps
|
Back to top
|
|
 |
stemsee
Joined: 27 Jun 2013 Posts: 2543 Location: In The Way
|
Posted: Tue 09 Dec 2014, 14:43 Post subject:
|
|
running that code changes the wallpaper.
here is the set_bg code
Code: | #!/bin/sh
#100704 this was originally in Nathan's Wallpaper package.
# called by 'pwallpaper' wallpaper setter.
# Determine the path to this application.
CURDIR="`pwd`"
APPDIR=`dirname "$0"`
cd "${APPDIR}"
APPDIR="`pwd`"
cd "${CURDIR}"
if [ "$1" = "-clear" ];then
grep -v '<backdrop' $HOME/.config/rox.sourceforge.net/ROX-Filer/pb_default > $HOME/.config/wallpaper/pb
mv -f $HOME/.config/wallpaper/pb $HOME/.config/rox.sourceforge.net/ROX-Filer/pb_default
rox -p=default
echo "[none]" > $HOME/.config/wallpaper/bg_img
exit
fi
MODE="`cat $HOME/.config/wallpaper/backgroundmode`"
[ "$MODE" = "" ] && MODE="Scale"
[ "$MODE" = "Centred" ] && MODE="Centre"
[ "$MODE" = "Scaled" ] && MODE="Scale"
#w482 BK now have script that truncates an image vertically so that it has the right dimensions
#for a widescreen...
if [ "$MODE" = "Stretch" ];then
/usr/sbin/background_reshape ${1}
fi
rox --RPC << EOF
<?xml version="1.0"?>
<env:Envelope xmlns:env="http://www.w3.org/2001/12/soap-envelope">
<env:Body xmlns="http://rox.sourceforge.net/SOAP/ROX-Filer">
<SetBackdrop>
<Filename>$1</Filename>
<Style>$MODE</Style>
</SetBackdrop>
</env:Body>
</env:Envelope>
EOF
|
|
Back to top
|
|
 |
|