diff options
| author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
|---|---|---|
| committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
| commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
| tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /opie-taskbar | |
| parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) | |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'opie-taskbar')
| -rw-r--r-- | opie-taskbar/opie-taskbar/beagle/locale.conf | 0 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/beagle/opie | 99 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/corgi/qpe.conf | 18 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/husky/qpe.conf | 18 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/locale.conf | 0 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/nomax.patch | 30 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/opie | 102 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/opie-reorgfiles | 93 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/opie_defaults | 0 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/qpe.conf | 12 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/ramses/opie | 88 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/ramses/qpe.conf | 6 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/server.pro | 84 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/server.pro-1.1.7 | 0 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/shepherd/qpe.conf | 18 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/simpad/qpe.conf | 15 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar/tosa/qpe.conf | 18 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar_1.1.7.bb | 0 | ||||
| -rw-r--r-- | opie-taskbar/opie-taskbar_cvs.bb | 0 |
19 files changed, 0 insertions, 601 deletions
diff --git a/opie-taskbar/opie-taskbar/beagle/locale.conf b/opie-taskbar/opie-taskbar/beagle/locale.conf deleted file mode 100644 index e69de29bb2..0000000000 --- a/opie-taskbar/opie-taskbar/beagle/locale.conf +++ /dev/null diff --git a/opie-taskbar/opie-taskbar/beagle/opie b/opie-taskbar/opie-taskbar/beagle/opie deleted file mode 100644 index 010f931697..0000000000 --- a/opie-taskbar/opie-taskbar/beagle/opie +++ /dev/null @@ -1,99 +0,0 @@ -#!/bin/sh -# -[ -z $LOGNAME ] && export LOGNAME=root && export HOME=/root -[ -z $HOME ] && export HOME=/$LOGNAME - -export QTDIR=/opt/QtPalmtop -export OPIEDIR=/opt/QtPalmtop -export QPEDIR=/opt/QtPalmtop -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib -export PATH=$PATH:$OPIEDIR/bin -# FIXME: add check for qt version here. the statement above applies to qt >=2.3.9 -# export QWS_KEYBOARD=KernelTTY - -if [ -e /proc/cpuinfo ] ; then - model=`grep "^Hardware" /proc/cpuinfo | sed -e "s/.*: *//" | tr a-z A-Z` - - case "$model" in - "HP IPAQ H3100" | "HP IPAQ H3800" ) - export QWS_DISPLAY=Transformed:Rot90:0 ;; - "HP IPAQ H5400" | "HP JORNADA 56X" | "HP IPAQ H2200" | "SHARP Tosa" ) - export QWS_DISPLAY=Transformed:Rot0:0 ;; - *SIMPAD* ) - export QWS_KEYBOARD='SIMpad' - export QWS_DISPLAY=Transformed:Rot0:0 ;; - - *) - export QWS_DISPLAY=Transformed:Rot270:0 ;; - esac -else - export QWS_DISPLAY=Transformed:Rot270:0 -fi - -if [ ! -x "$OPIEDIR/bin/qpe" ] ; then - echo Opie not installed - exit 0 -fi - -. /etc/profile - - -# beagle hack? make it a package? -if [ ! -e "/home/root" ] ; then - mkdir /home/root -fi - -if [ ! -e "$HOME/Settings/qpe.conf" ] ; then - echo "Copying default qpe.conf into $HOME/Settings/" - mkdir -p $HOME/Settings/ - cat $OPIEDIR/etc/skel/qpe.conf >$HOME/Settings/qpe.conf -fi - -if [ ! -e "$HOME/Settings/locale.conf" -a -e "$OPIEDIR/etc/skel/locale.conf" ] ; then - cat $OPIEDIR/etc/skel/locale.conf >$HOME/Settings/locale.conf -fi - -case $1 in -'start') - /sbin/getkey 5 "Starting Opie in 5 seconds... press key to interrupt." && exit 0 - - if [ -x "$OPIEDIR/bin/opie-login" ]; then - echo Starting Opie-login.... - $OPIEDIR/bin/opie-login -terminal 2 - else - $OPIEDIR/bin/opie-reorgfiles - if [ -x /usr/bin/ssh-agent ]; then - SSHAGENT=/usr/bin/ssh-agent - else - SSHAGENT="" - fi - - if [ -x "$OPIEDIR/bin/opie-sh-ssh-askpass.sh" ]; then - export SSH_ASKPASS=$OPIEDIR/bin/opie-sh-ssh-askpass.sh - fi - echo Starting Opie.... - $SSHAGENT $OPIEDIR/bin/qpe -terminal 2 - fi - - ;; - -'stop') - echo "Stopping Opie..." - killall qpe - killall opie-login - killall quicklauncher - - ;; - -'restart') - $0 stop && $0 start - - ;; - -*) - echo "usage: $0 { start | stop | restart }" - - ;; - -esac - diff --git a/opie-taskbar/opie-taskbar/corgi/qpe.conf b/opie-taskbar/opie-taskbar/corgi/qpe.conf deleted file mode 100644 index 261e245c90..0000000000 --- a/opie-taskbar/opie-taskbar/corgi/qpe.conf +++ /dev/null @@ -1,18 +0,0 @@ -[Appearance] -useBigPixmaps = 1 -SmallIconSize = 24 -BigIconSize = 48 -FontFamily = Vera -FontStyle = Regular -FontSize = 12 -Background = #d5d0de -Base = #ffffff -Button = #e3e3e3 -ButtonText = #000000 -Decoration = libliquid.so -Highlight = #52719c -HighlightedText = #ffffff -Style = libphasestyle.so -Text = #000000 -[InputMethod] -current = Multikey diff --git a/opie-taskbar/opie-taskbar/husky/qpe.conf b/opie-taskbar/opie-taskbar/husky/qpe.conf deleted file mode 100644 index 261e245c90..0000000000 --- a/opie-taskbar/opie-taskbar/husky/qpe.conf +++ /dev/null @@ -1,18 +0,0 @@ -[Appearance] -useBigPixmaps = 1 -SmallIconSize = 24 -BigIconSize = 48 -FontFamily = Vera -FontStyle = Regular -FontSize = 12 -Background = #d5d0de -Base = #ffffff -Button = #e3e3e3 -ButtonText = #000000 -Decoration = libliquid.so -Highlight = #52719c -HighlightedText = #ffffff -Style = libphasestyle.so -Text = #000000 -[InputMethod] -current = Multikey diff --git a/opie-taskbar/opie-taskbar/locale.conf b/opie-taskbar/opie-taskbar/locale.conf deleted file mode 100644 index e69de29bb2..0000000000 --- a/opie-taskbar/opie-taskbar/locale.conf +++ /dev/null diff --git a/opie-taskbar/opie-taskbar/nomax.patch b/opie-taskbar/opie-taskbar/nomax.patch deleted file mode 100644 index 468038b377..0000000000 --- a/opie-taskbar/opie-taskbar/nomax.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- opie-x86/core/launcher/server.cpp~nomax -+++ opie-x86/core/launcher/server.cpp -@@ -76,7 +76,7 @@ - return 0; - #endif - } -- -+#ifndef OPIE_NO_WINDOWED - #define FACTORY(T) \ - static QWidget *new##T( bool maximized ) { \ - QWidget *w = new T( 0, 0, QWidget::WDestructiveClose | QWidget::WGroupLeader ); \ -@@ -90,7 +90,18 @@ - w->show(); \ - return w; \ - } -+#else -+#define FACTORY(T) \ -+ static QWidget *new##T( bool maximized ) { \ -+ QWidget *w = new T( 0, 0, QWidget::WDestructiveClose | QWidget::WGroupLeader ); \ -+ if ( maximized ) { \ -+ w->showMaximized(); \ -+} \ -+ w->show(); \ -+ return w; \ -+} - -+#endif - - #ifdef SINGLE_APP - #define APP(a,b,c,d) FACTORY(b) diff --git a/opie-taskbar/opie-taskbar/opie b/opie-taskbar/opie-taskbar/opie deleted file mode 100644 index 73287992ea..0000000000 --- a/opie-taskbar/opie-taskbar/opie +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/sh -# -[ -z $LOGNAME ] && export LOGNAME=root && export HOME=/root -[ -z $HOME ] && export HOME=/$LOGNAME - -export QTDIR=/opt/QtPalmtop -export OPIEDIR=/opt/QtPalmtop -export QPEDIR=/opt/QtPalmtop -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib -export PATH=$PATH:$OPIEDIR/bin -# FIXME: add check for qt version here. the statement above applies to qt >=2.3.9 -# export QWS_KEYBOARD=KernelTTY - -if [ -e /proc/cpuinfo ] ; then - model=`grep "^Hardware" /proc/cpuinfo | sed -e "s/.*: *//" | tr a-z A-Z` - - case "$model" in - "HP IPAQ H3100" | "HP IPAQ H3800" ) - export QWS_DISPLAY=Transformed:Rot90:0 ;; - "HP IPAQ H5400" | "HP JORNADA 56X" | "HP IPAQ H2200" | "SHARP Tosa" ) - export QWS_DISPLAY=Transformed:Rot0:0 ;; - *SIMPAD* ) - export QWS_KEYBOARD='SIMpad' - export QWS_DISPLAY=Transformed:Rot0:0 ;; - - *) - export QWS_DISPLAY=Transformed:Rot270:0 ;; - esac -else - export QWS_DISPLAY=Transformed:Rot270:0 -fi - -if [ ! -x "$OPIEDIR/bin/qpe" ] ; then - echo Opie not installed - exit 0 -fi - -. /etc/profile - -if [ ! -e "$HOME/Settings/qpe.conf" ] ; then - echo "Copying default qpe.conf into $HOME/Settings/" - mkdir -p $HOME/Settings/ - cat $OPIEDIR/etc/skel/qpe.conf >$HOME/Settings/qpe.conf -fi - -if [ ! -e "$HOME/Settings/locale.conf" -a -e "$OPIEDIR/etc/skel/locale.conf" ] ; then - cat $OPIEDIR/etc/skel/locale.conf >$HOME/Settings/locale.conf -fi - -if [ ! -e "$HOME/systeminfo/linkver" ] ; then - mkdir -p $HOME/systeminfo/ - echo "1.13" >$HOME/systeminfo/linkver -fi - -if [ ! -e "/opt/Qtopia" ] ; then - ln -sf /opt/QtPalmtop /opt/Qtopia -fi - -case $1 in -'start') - /sbin/getkey 5 "Starting Opie in 5 seconds... press key to interrupt." && exit 0 - - if [ -x "$OPIEDIR/bin/opie-login" ]; then - echo Starting Opie-login.... - $OPIEDIR/bin/opie-login -terminal 2 - else - $OPIEDIR/bin/opie-reorgfiles - if [ -x /usr/bin/ssh-agent ]; then - SSHAGENT=/usr/bin/ssh-agent - else - SSHAGENT="" - fi - - if [ -x "$OPIEDIR/bin/opie-sh-ssh-askpass.sh" ]; then - export SSH_ASKPASS=$OPIEDIR/bin/opie-sh-ssh-askpass.sh - fi - echo Starting Opie.... - $SSHAGENT $OPIEDIR/bin/qpe -terminal 2 - fi - - ;; - -'stop') - echo "Stopping Opie..." - killall qpe - killall opie-login - killall quicklauncher - - ;; - -'restart') - $0 stop && $0 start - - ;; - -*) - echo "usage: $0 { start | stop | restart }" - - ;; - -esac - diff --git a/opie-taskbar/opie-taskbar/opie-reorgfiles b/opie-taskbar/opie-taskbar/opie-reorgfiles deleted file mode 100644 index 96b3e29da4..0000000000 --- a/opie-taskbar/opie-taskbar/opie-reorgfiles +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/sh - -APPS=$HOME/Applications -DOCS=$HOME/Documents - -if [ -d $APPS -a "$1" != "-f" ] -then - echo "You seem to already have a $APPS directory." - echo "Assuming it is the Opie Applications directory. Exiting." - exit 0 -fi - -if [ -d $HOME/Apps ] -then - mv $HOME/Apps $APPS -else - mkdir $APPS -fi - -if [ -f $DOCS/addressbook.xml ] -then - if [ -f $APPS/addressbook/addressbook.xml ] - then - echo "$DOCS/addressbook.xml conflicts with $APPS/addressbook/addressbook.xml" - echo "Moving $DOCS/addressbook.xml to $HOME" - mv $DOCS/addressbook.xml $HOME - else - mkdir $APPS/addressbook - mv $DOCS/addressbook.xml $APPS/addressbook - fi -fi - -if [ -f $DOCS/datebooksettings.xml ] -then - echo "$DOCS/datebooksettings.xml is obsolete" - echo "Please re-set your datebook preferences" - rm $DOCS/datebooksettings.xml -fi - -if [ -f $DOCS/datebook.xml ] -then - mkdir $APPS/databook - mv $DOCS/datebook.xml $APPS/databook -fi - -if [ -d $DOCS/qtmail ] -then - mv $DOCS/qtmail $APPS/ -fi - -if [ -f $DOCS/todo.xml ] -then - if [ -f $APPS/todolist/todolist.xml ] - then - mv $DOCS/todo.xml $HOME - echo "$DOCS/todo.xml is superceded by $APPS/todolist/todolist.xml" - echo "$DOCS/todo.xml has been moved to $HOME" - else - echo "NOTE: $DOCS/todo.xml is obsolete. It will move to $APPS/todolist/todolist.xml" - echo "when next you run the latest ToDo application." - fi -fi - -if [ ! -d $APPS/qimpen ] -then - mkdir $APPS/qimpen -fi - -if [ -f $DOCS/asciilower.qpt ] -then - mv $DOCS/asciilower.qpt $APPS/qimpen -fi - -if [ -f $DOCS/asciiupper.qpt ] -then - mv $DOCS/asciiupper.qpt $APPS/qimpen -fi - -if [ -f $DOCS/numeric.qpt ] -then - mv $DOCS/numeric.qpt $APPS/qimpen -fi - -if [ -d "$HOME/.qpe" ] -then - if [ -d "$HOME/Settings" ] - then - mv $HOME/.qpe/* "$HOME/Settings" - rmdir "$HOME/.qpe" - else - mv $HOME/.qpe "$HOME/Settings" - fi -fi diff --git a/opie-taskbar/opie-taskbar/opie_defaults b/opie-taskbar/opie-taskbar/opie_defaults deleted file mode 100644 index e69de29bb2..0000000000 --- a/opie-taskbar/opie-taskbar/opie_defaults +++ /dev/null diff --git a/opie-taskbar/opie-taskbar/qpe.conf b/opie-taskbar/opie-taskbar/qpe.conf deleted file mode 100644 index 8ed53ff038..0000000000 --- a/opie-taskbar/opie-taskbar/qpe.conf +++ /dev/null @@ -1,12 +0,0 @@ -[Appearance] -Background = #d5d0de -Base = #ffffff -Button = #e3e3e3 -ButtonText = #000000 -Decoration = libliquid.so -Highlight = #52719c -HighlightedText = #ffffff -Style = libphasestyle.so -Text = #000000 -[InputMethod] -current = Multikey diff --git a/opie-taskbar/opie-taskbar/ramses/opie b/opie-taskbar/opie-taskbar/ramses/opie deleted file mode 100644 index ceb872e0ac..0000000000 --- a/opie-taskbar/opie-taskbar/ramses/opie +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/sh -# - -[ -z $LOGNAME ] && export LOGNAME=root && export HOME=/root -[ -z $HOME ] && export HOME=/$LOGNAME - -export QTDIR=/opt/QtPalmtop -export OPIEDIR=/opt/QtPalmtop -export QPEDIR=/opt/QtPalmtop -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib -export PATH=$PATH:$OPIEDIR/bin - -if [ -e /proc/cpuinfo ] ; then - model=`grep "^Hardware" /proc/cpuinfo | sed -e "s/.*: *//" | tr a-z A-Z` - - case "$model" in - "HP IPAQ H3100" | "HP IPAQ H3800" ) - QWS_DISPLAY=Transformed:Rot90:0 ;; - "HP IPAQ H5400" | "HP JORNADA 56X" | "HP IPAQ H2200" | "SHARP Tosa") - QWS_DISPLAY=Transformed:Rot0:0 ;; - *SIMPAD* ) - QWS_KEYBOARD='SIMpad' - QWS_DISPLAY=Transformed:Rot0:0 ;; - RAMSES ) - # already set based on /proc/sys/board/lcd_type - test -z "$QWS_DISPLAY" && QWS_DISPLAY=Transformed:Rot90:0 - ;; - *) - QWS_DISPLAY=Transformed:Rot270:0 ;; - esac -else - QWS_DISPLAY=Transformed:Rot270:0 -fi -export QWS_DISPLAY - -if [ ! -x $OPIEDIR/bin/qpe ] ; then - echo Opie not installed - exit 0 -fi - -. /etc/profile - -case $1 in -'start') - cd $HOME - rm -f /etc/rc2.d/S99x # Can't have both running! - - if [ -x $OPIEDIR/bin/opie-login ]; then - if ! killall -0 syslogd 2>/dev/null >/dev/null; then - echo Starting Opie-login.... - $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null & - else - echo Starting Opie-login with syslog logging..... - ( $OPIEDIR/bin/opie-login 2>&1 | logger ) & - fi - else - $OPIEDIR/bin/opie-reorgfiles - if [ -x /usr/bin/ssh-agent ]; then - SSHAGENT=/usr/bin/ssh-agent - else - SSHAGENT="" - fi - - if [ -x $OPIEDIR/bin/opie-sh-ssh-askpass.sh ]; then - export SSH_ASKPASS=$OPIEDIR/bin/opie-sh-ssh-askpass.sh - fi - - if ! killall -0 syslogd 2>/dev/null >/dev/null; then - echo Starting Opie.... - $SSHAGENT $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & - else - echo Starting Opie with syslog logging..... - ( $SSHAGENT $OPIEDIR/bin/qpe 2>&1 | logger ) & - fi - fi - ;; - -'stop') - echo "Killing Opie..." - killall qpe - killall opie-login - ;; - -*) - echo "usage: $0 { start | stop }" - ;; - -esac diff --git a/opie-taskbar/opie-taskbar/ramses/qpe.conf b/opie-taskbar/opie-taskbar/ramses/qpe.conf deleted file mode 100644 index 98b9fc3133..0000000000 --- a/opie-taskbar/opie-taskbar/ramses/qpe.conf +++ /dev/null @@ -1,6 +0,0 @@ -[Appearance] -Decoration = libflat.so -FontFamily = helvetica -FontSize = 10 -FontStyle = Regular -Style = QPE diff --git a/opie-taskbar/opie-taskbar/server.pro b/opie-taskbar/opie-taskbar/server.pro deleted file mode 100644 index 2dee9a973a..0000000000 --- a/opie-taskbar/opie-taskbar/server.pro +++ /dev/null @@ -1,84 +0,0 @@ -TEMPLATE = app - -CONFIG += qt warn_on - -DESTDIR = - -HEADERS += server.h \ - qrr.h \ - serverinterface.h \ - launchertab.h \ - documentlist.h \ - appicons.h \ - taskbar.h \ - runningappbar.h \ - applauncher.h \ - stabmon.h \ - inputmethods.h \ - systray.h \ - wait.h \ - shutdownimpl.h \ - launcher.h \ - launcherview.h \ - calibrate/calibrate.h \ - startmenu.h \ - transferserver.h \ - qcopbridge.h \ - packageslave.h \ - irserver.h \ - firstuse.h \ - syncdialog.h \ - serverapp.h \ - qprocess.h \ - screensaver.h \ - mediummount/mediumwidget.h \ - mediadlg.h - -SOURCES += server.cpp \ - qrr.cpp \ - serverinterface.cpp \ - launchertab.cpp \ - documentlist.cpp \ - appicons.cpp \ - taskbar.cpp \ - runningappbar.cpp \ - applauncher.cpp \ - stabmon.cpp \ - inputmethods.cpp \ - systray.cpp \ - wait.cpp \ - shutdownimpl.cpp \ - launcher.cpp \ - launcherview.cpp \ - calibrate/calibrate.cpp \ - transferserver.cpp \ - packageslave.cpp \ - irserver.cpp \ - qcopbridge.cpp \ - startmenu.cpp \ - main.cpp \ - firstuse.cpp \ - syncdialog.cpp \ - serverapp.cpp \ - qprocess.cpp \ - qprocess_unix.cpp \ - screensaver.cpp \ - mediummount/mediumwidget.cc \ - mediadlg.cpp - - -INCLUDEPATH += calibrate -DEPENDPATH += calibrate - -INCLUDEPATH += $(OPIEDIR)/include rsync -DEPENDPATH += rsync - -INCLUDEPATH += mediummount -DEPENDPATH += mediummount - - -TARGET = qpe - -LIBS = -lqpe -lopiecore2 -lopieui2 -lopiesecurity2 -lqrsync - -include ( $(OPIEDIR)/include.pro ) diff --git a/opie-taskbar/opie-taskbar/server.pro-1.1.7 b/opie-taskbar/opie-taskbar/server.pro-1.1.7 deleted file mode 100644 index e69de29bb2..0000000000 --- a/opie-taskbar/opie-taskbar/server.pro-1.1.7 +++ /dev/null diff --git a/opie-taskbar/opie-taskbar/shepherd/qpe.conf b/opie-taskbar/opie-taskbar/shepherd/qpe.conf deleted file mode 100644 index 261e245c90..0000000000 --- a/opie-taskbar/opie-taskbar/shepherd/qpe.conf +++ /dev/null @@ -1,18 +0,0 @@ -[Appearance] -useBigPixmaps = 1 -SmallIconSize = 24 -BigIconSize = 48 -FontFamily = Vera -FontStyle = Regular -FontSize = 12 -Background = #d5d0de -Base = #ffffff -Button = #e3e3e3 -ButtonText = #000000 -Decoration = libliquid.so -Highlight = #52719c -HighlightedText = #ffffff -Style = libphasestyle.so -Text = #000000 -[InputMethod] -current = Multikey diff --git a/opie-taskbar/opie-taskbar/simpad/qpe.conf b/opie-taskbar/opie-taskbar/simpad/qpe.conf deleted file mode 100644 index 7741468cd9..0000000000 --- a/opie-taskbar/opie-taskbar/simpad/qpe.conf +++ /dev/null @@ -1,15 +0,0 @@ -[Appearance] -FontFamily = Vera -FontStyle = Regular -FontSize = 12 -Background = #d5d0de -Base = #ffffff -Button = #e3e3e3 -ButtonText = #000000 -Decoration = libliquid.so -Highlight = #52719c -HighlightedText = #ffffff -Style = libphasestyle.so -Text = #000000 -[InputMethod] -current = Multikey diff --git a/opie-taskbar/opie-taskbar/tosa/qpe.conf b/opie-taskbar/opie-taskbar/tosa/qpe.conf deleted file mode 100644 index 261e245c90..0000000000 --- a/opie-taskbar/opie-taskbar/tosa/qpe.conf +++ /dev/null @@ -1,18 +0,0 @@ -[Appearance] -useBigPixmaps = 1 -SmallIconSize = 24 -BigIconSize = 48 -FontFamily = Vera -FontStyle = Regular -FontSize = 12 -Background = #d5d0de -Base = #ffffff -Button = #e3e3e3 -ButtonText = #000000 -Decoration = libliquid.so -Highlight = #52719c -HighlightedText = #ffffff -Style = libphasestyle.so -Text = #000000 -[InputMethod] -current = Multikey diff --git a/opie-taskbar/opie-taskbar_1.1.7.bb b/opie-taskbar/opie-taskbar_1.1.7.bb deleted file mode 100644 index e69de29bb2..0000000000 --- a/opie-taskbar/opie-taskbar_1.1.7.bb +++ /dev/null diff --git a/opie-taskbar/opie-taskbar_cvs.bb b/opie-taskbar/opie-taskbar_cvs.bb deleted file mode 100644 index e69de29bb2..0000000000 --- a/opie-taskbar/opie-taskbar_cvs.bb +++ /dev/null |
