You are not logged in.
Pages: 1
Hi!
I have been reading on the e17 forum that there are more modules than:
Start
Ibar
Clock
Dropshadow
Battery
Cpufreq
Temperature
Pager
Engage
Those I have !
I have been reading about, fire, snow, monitor...I wonder, Can anyone post a pkgbuild either those, or how I can build my own (i use nickm's repository, but it seems like it is offline for the moment)
Another question, is there more new ewxcitiing things in the cvs that I might wanna know about?
http://www.linuxportalen.com -> Linux Help portal for Linux and ArchLinux (in swedish)
Dell Inspiron 8500
Kernel 2.6.14-archck1 (selfcompiled)
Enlightenment 17
Offline
pacman -S e_modules-cvs
The modules I've got installed are:
/opt/e17/lib/enlightenment/modules/ibar/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/ibox/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/test/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/clock/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/flame/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/pager/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/temperature/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/dropshadow/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules/battery/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules_extra/engage/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules_extra/snow/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules_extra/flame/linux-gnu-i686/module.so
/opt/e17/lib/enlightenment/modules_extra/notes/linux-gnu-i686/module.so
You can load a module like this:
/opt/e17/bin/enlightenment_remote -module-load /opt/e17/lib/enlightenment/modules_extra/flame/linux-gnu-i686/module.so
Offline
If the modules are at the right path you don't need the whole filename, enlightenment_remote -module-load flame is sufficient
Offline
found now two more modules
test and ibox (this one I have been longing to have!! didn't know it existed!!)
btw, what is test?
http://www.linuxportalen.com -> Linux Help portal for Linux and ArchLinux (in swedish)
Dell Inspiron 8500
Kernel 2.6.14-archck1 (selfcompiled)
Enlightenment 17
Offline
It is a test module. It doesn't do anything.
Arch GNU/Linux 0.7 Trusted User
"If I were more modest, I would be perfect"
Offline
ok
there are supposed to be a monitor module? anyone tried it? (it monitors cpu/ram i belive)
where can I find a pkgbuild for e17_modules_cvs (would like to look at it)
http://www.linuxportalen.com -> Linux Help portal for Linux and ArchLinux (in swedish)
Dell Inspiron 8500
Kernel 2.6.14-archck1 (selfcompiled)
Enlightenment 17
Offline
I did a pKgbuild myself...it workes, however I don't know if it is correct
#CyberTron
pkgname=e_modules
pkgver=CVS_$date
pkgrel=1
pkgdesc=""
url=""
license=""
depends=('ewl' 'evas' 'ecore' 'imlib2')
makedepends=()
conflicts=()
replaces=()
backup=()
groups=('e17')
install=
#source=($pkgname-$pkgver.tar.gz)
md5sums=()
build() {
export LDFLAGS="-L/opt/e17/lib"
export CPPFLAGS="-I/opt/e17/include"
export PATH=$PATH:/opt/e17/bin
cd $startdir/src/
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment co e17/apps/$pkgname
make distclean
# add right-click menu patch
# cd $startdir/src/e17/apps/e/src/bin
# patch --ignore-whitespace <$startdir/opengl.diff #e_config.c
cd $startdir/src/e17/apps/e_modules
./autogen.sh --prefix=/opt/e17
make || return 1
make DESTDIR=$startdir/pkg install
}
http://www.linuxportalen.com -> Linux Help portal for Linux and ArchLinux (in swedish)
Dell Inspiron 8500
Kernel 2.6.14-archck1 (selfcompiled)
Enlightenment 17
Offline
Pages: 1