



#!/bin/sh
### Written by PsychoTHC
### adds a "OSD: PsychoTHC" entry into Web-Frontends WDLXTV configurator
cp /osd/tmp/config-plugins/psychothc-osd_wec.php /tmp/config-plugins/psychothc-osd_wec.php
### changing thumb frames and progress bars
case $1 in
start)
eval `grep -i \^PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME= /conf/config`
if [ -f "/osd/image/photo_thumb_frame_bg_f_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" ] ; then
mount -o bind "/osd/image/photo_thumb_frame_bg_f_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" /osd/image/photo_thumb_frame_bg_f.png
mount -o bind "/osd/image/video_thumb_frame_bg_f_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" /osd/image/video_thumb_frame_bg_f.png
mount -o bind "/osd/image/Video_Player_time_played_line_n_01_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" /osd/image/Video_Player_time_played_line_n_01.png
mount -o bind "/osd/image/music_player_time_played_line_n_01_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" /osd/image/music_player_time_played_line_n_01.png
mount -o bind "/osd/image/slideshow_player_time_played_line_n_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" /osd/image/slideshow_player_time_played_line_n.png
mount -o bind "/osd/image/slideshow_time_played_line_n_01_color_${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}.png" /osd/image/slideshow_time_played_line_n_01.png
logger -s -t `basename $0` "color scheme (${PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME}) loaded for thumbs & playbars!"
fi
;;
restart)
umount -f /osd/image/photo_thumb_frame_bg_f.png /osd/image/video_thumb_frame_bg_f.png /osd/image/Video_Player_time_played_line_n_01.png /osd/image/music_player_time_played_line_n_01.png /osd/image/slideshow_player_time_played_line_n.png /osd/image/slideshow_time_played_line_n_01.png 2>/dev/null
$0 start
;;
esac<?php
if ((defined('WECVERSION')) && (WECVERSION >= 3)) {
$wec_options['PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME'] = array('configname' => 'PSYCHOTHC_THUMBPLAYBAR_COLOR_SCHEME',
'configdesc' => "Change color for thumb frames and play bars:",
'longdesc' => "Default: Yellow/Black",
'group' => 'OSD: PsychoTHC',
'type' => WECT_SELECT,
'page' => WECP_OSD,
'availval' => array('1','2','3','4','5','6','7','8','9','10','11','12'),
'availvalname' => array('Blue','Red','Yellow','White','Green','Purple','Blue/Black','Red/Black','Yellow/Black','White/Black','Green/Black','Purple/Black'),
'defaultval' => '9',
'currentval' => '',
'postsavehook' => psychoTHC_colorscheme_reload);
}
function psychoTHC_colorscheme_reload($wec_option_arr,$value) {
system("sudo /tmp/init.d/S68psychothc-colorscheme restart");
}
?>




Return to WDTV G2 & WDTV Live Theming
Users browsing this forum: No registered users and 1 guest