Ubuntu Forums Archive Viewer

HOWTO: functional eye-candy with Avant-Window-Navigator

Archived thread 385981 from Desktop Effects & Customization. Markdown source: Desktop_Effects_&_Customization/thread_385981_HOWTO_functional_eye-candy_with_Avant-Window-Navig.md

Original URL About this archive
#1

[SIZE="4"][b][COLOR="red"]NOTICE: [/COLOR] This thread has been superseeded by this one: http://ubuntuforums.org/showthread.php?t=762363 Please go there instead, as this thread will no longer be updated.[/b][/size]

[CENTER]_[SIZE="6"]Info:[/SIZE]_[/CENTER]

_What is it?:_ AWN is a compositing dock-like taskbar. It is similar to the dock in OSX, but supports features such as custom themes, applets that can do anything from displaying battery life to showing Dilbert, and much more.

_Links:_ AWN in Launchpad: https://launchpad.net/awn The developer's blog: http://njpatel.blogspot.com/ Official AWN forums: http://www.planetblur.org/hosted/awnforum/index.php Official AWN IRC channel: #awn on irc.freenode.net

_Screenshots:_

AWN (v0.1): [IMG]http://ubuntuforums.org/attachment.php?attachmentid=27569&d=1174062417[/IMG]

AWN (v0.2): [IMG]http://ubuntuforums.org/attachment.php?attachmentid=59682&stc=1&d=1203038515[/IMG]

[CENTER][COLOR="Red"]_[SIZE="6"]Notes (please read!):[/SIZE]_[/COLOR][/CENTER]

AWN requires a compositor (like beryl or compiz) to work properly.

The instructions provided here install an unstable, development version of AWN. This means that you get new features and bugfixes much faster, but things may break without warning. There are stable packages of AWN available in hardy universe, gutsy backports, and from getdeb.net. If you require absolute stability, it is recommended you use one of those sources instead.

AWN is still early in development, and contains many bugs. *Please* help development by reporting any bugs you find on the project's homepage (see above).

terminal commands should be pasted in one line at a time, unless otherwise noted.

[CENTER]_[SIZE="6"]Installing:[/SIZE]_[/CENTER]

There are two ways to install AWN: from my apt repository, or from source. If you are using Gutsy (7.10), using the repository is the recommended method of installation. For all other versions of Ubuntu, compiling from source is the recommended method. You should use only one of these two methods to install AWN. If you decide to change which method you use, make sure to completely remove the previous AWN installation before following the guide. (see 'Uninstalling', below, for instructions)

[CENTER]_[SIZE="5"]Repository (Gutsy and Hardy only):[/SIZE]_[/CENTER]

DISCLAIMER: I do my best to keep the packages in this repo high-quality. However, 3rd party repositories such as this one are _completely_ unsupported by Ubuntu. Any problems caused by this repo should be reported to me in this thread, not to Ubuntu.

IMPORTANT: I support only Ubuntu Gutsy (7.10) and Ubuntu Hardy (8.04). This does not include derivative distros such as Mint. Though you are welcome to try using my packages under derivatives, I can provide no support for doing so.

Before we begin, [COLOR="Red"]make sure you have all the needed ubuntu repositories[/COLOR] installed, namely universe and ubuntu-updates. This can be done in System -> Administration -> Software Sources by enabling 'recommended updates' under the 'Updates' tab, and also enabling 'Community-maintained Open Source software' under the 'Ubuntu Software' tab.

Now open a terminal (Applications -> Accessories -> Terminal), we'll be pasting a lot of commands. Remember, paste [COLOR="Red"]only 1[/COLOR] line at a time unless otherwise directed.

First, add my AWN repo by running the appropriate set of commands:

Gutsy:

echo 'deb http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main'  |  sudo tee -a /etc/apt/sources.list
echo 'deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main'  |  sudo tee -a /etc/apt/sources.list

Hardy:

echo 'deb http://ppa.launchpad.net/reacocard-awn/ubuntu hardy main'  |  sudo tee -a /etc/apt/sources.list
echo 'deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu hardy main'  |  sudo tee -a /etc/apt/sources.list

Now update your software lists. If you are asked any questions during this, respond with 'y'.

sudo apt-get update

Then install AWN, again, answer 'y' to any questions.

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr

That's it! You can now start AWN from Applications->Accessories->Avant Window Navigator. If installation fails, go back to the beginning and make sure you followed all instructions correctly, and then check the FAQ section at the bottom of this guide.

_Available packages:_ [INDENT]avant-window-navigator-bzr - the latest development version of AWN. awn-core-applets-bzr - extra applets for AWN (development version) libawn-bzr - applet library for AWN libawn-bzr-dev - headers for the AWN applet library. Install this only if you need to compile applets from source. python-libawn-bzr - python bindings for libawn [/INDENT] All -bzr packages are updated perodically from AWN bzr.

[CENTER]_[SIZE="5"]Compiling from source (All versions):[/SIZE]_[/CENTER]

[COLOR="Red"]NOTE:[/COLOR] Keep the source directory, you'll need it if you ever want to uninstall.

[COLOR="Red"]NOTE:[/COLOR] Current AWN will not compile on versions of Ubuntu prior to gutsy, since it depends on a newer version of GTK/GDK than is available.

_Avant-Window-Navigator (bzr):_ First install the dependencies:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev gnome-icon-theme python-glade2 librsvg2-common python-gnome2-extras

Now, open a terminal in the directory you want to build AWN in (I use ~/Installs/avant/) and do this:

bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator
cd avant-window-navigator
./autogen.sh
make
sudo make install

_awn-core-applets (bzr):_ See here until I get a full guide up: http://wiki.awn-project.org/index.php?title=Awn_Extras

[CENTER]_[SIZE="6"]Updating:[/SIZE]_

_[SIZE="5"]Repository:[/SIZE]_[/CENTER]

The repository will automatically keep you up-to-date in the same manner that ubuntu updates the rest of your software. You can update manually with these commands:

sudo apt-get update
sudo apt-get upgrade

[CENTER]_[SIZE="5"]Source:[/SIZE]_[/CENTER]

In the source directory, enter these commands:

sudo make uninstall
bzr up
./autogen.sh
make
sudo make install

[CENTER]_[SIZE="6"]Uninstalling:[/SIZE]_

_[SIZE="5"]Repository:[/SIZE]_[/CENTER]

sudo apt-get remove --purge avant-window-navigator-bzr awn-manager-bzr awn-core-applets-bzr libawn-bzr

[CENTER]_[SIZE="5"]Source:[/SIZE]_[/CENTER]

Open a terminal in the source directory (it should have a file called Makefile in it) you installed from and do

sudo make uninstall
sudo rm -f /usr/local/bin/awn-manager
sudo rm -f /usr/local/bin/avant-*

[CENTER]_[SIZE="6"]FAQs:[/SIZE]_[/CENTER]

Q: Can I put AWN on another side of my screen? A: Not currently, but this is a planned feature for a future version of AWN.

Q: When does the next version of AWN come out? A: When it's ready.

Q: There's a big ugly black bar around AWN! How do I get rid of it? A: You need to be running a compositor like Beryl or Compiz. xcompmgr or xfwm4 may also work, although there are known bugs with each.

Q: Why does AWN depend on so much of Gnome? I'm a kde/xfce/other user who doesn't want to be burdened by all that **** A: The original developer chose to build on top of Gnome because it was what he was familiar with and could develop the fastest. However, there has been a lot of work poured into making a desktop-agnostic version of AWN that eliminates most of these dependencies and will likely be merged into main AWN fairly soon.

Q: Some of the applets won't load! I only get a white line/nothing! A: Several of the applets are currently not functional in my builds. Others may not work without installing additional dependencies.

Broken: standalone taskmanager Needs Deps: Affinity (tracker), TsClient (tsclient), Volume Control (python-alsaaudio), Mail (python-feedparser)

Q: Why don't you support Vala applets? A: AWN requires a newer version of Vala than is available in Ubuntu. That means that I would have to package a newer version of Vala as well to be able to provide this, which is not only more effort than I am willing to expend, but also can interfere with Ubuntu's Vala packages. So, until such time as a suitable version of Vala becomes available in Ubuntu I cannot build in support for Vala applets.

Q: I want my AWN to look like this! (curves) [IMG]http://www.abload.de/img/awnwhe.png[/IMG] A: In gconf-editor, set apps->avant-window-navigator->bar->bar_angle to -1.

Q: I installed from source, but now I want to remove AWN and I have no source dir! What can I do? A: Run this set of commands in a terminal:


sudo rm -f /usr/local/bin/awn*
sudo rm -f /usr/local/bin/avant*
sudo rm -rf /usr/local/lib/awn
sudo rm -f /usr/local/share/locale/*/LC_MESSAGES/avant-window-navigator.mo
sudo rm -f /usr/local/share/applications/avant*
sudo rm -f /usr/local/share/applications/awn*
sudo rm -rf /usr/local/share/avant-window-navigator
sudo rm -f /usr/local/lib/libawn*
sudo rm -rf /usr/local/include/libawn
sudo rm -f /usr/local/lib/libawn*
sudo rm -f /usr/local/lib/pkgconfig/awn.pc
sudo rm -rf /usr/local/share/awn-core-applets
sudo rm -rf /usr/local/lib/python2.5/site-packages/awn/
#2

I have awn, and love it.

I saw affinity is recently released. I tried installing it from that rep but i get an error about libtrackerclient0 not installable. That package is not found in any rep I have. Any help?

#3

I think that the dependency (in Feisty) for beagle is libbeagle-dev and not beagle-dev.

Thanks for the other info!

#4

I had to install gnome-common for ./autogen.sh to work. And libtrackerclient-dev can't be found. Is that what I need to make the file search possible? Cause right now it wont find nothing.

#5

Repos do not work for me. After adding them to my sources .list and trying to install the packages, here is what I get.

cinnix@Jehuty:~$ sudo apt-get install avant-window-navigator-svn affinity
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
  affinity: Depends: libtrackerclient0 but it is not installable
E: Broken packages
#6

When installing, one could use

sudo checkinstall -D

instead of *sudo make install*, in order to make a .deb package, which will allow uninstalling with a package manager. Also the system would notify if/when there is a newer version available in the repositories. Right?

#7

Yup, affinity seems to be broken in the reps. Anyone got a fix?

#8

How are you suggesting to compile from source and install using 'make install', and then saying to remove the packages that were installed with apt-get? When you compile from source using 'make install' it is not registered with the system's package manager (apt-get or synaptic). You should use 'checkinstall' as was suggested.

#9

I saw affinity is recently released. I tried installing it from that rep but i get an error about libtrackerclient0 not installable. That package is not found in any rep I have. Any help?

I installed affinity on edgy - I think you need to install tracker first - see instructions here:[HTML]http://www.gnome.org/projects/tracker/start.html[/HTML]

You need to add a repository and install the package libtrackerclient0-dev before doing the ./configure step

Hope it works.

#10

kaffekopp said: I installed affinity on edgy - I think you need to install tracker first - see instructions here:[HTML]http://www.gnome.org/projects/tracker/start.html[/HTML]

You need to add a repository and install the package libtrackerclient0-dev before doing the ./configure step

Hope it works.

It's called libtrackerclient-dev

#11

To all those having dependency problems with affinity:

Sorry about this, the debian packaging system got smart and added the libtracker/libbeagle stuff automatically, it's supposed to be an optional dependency. I'll fix the packaging as soon as I can, expect an update within the next 24 hours.

Also, checkinstall is VERY hackish. It does weird things, and its debs muck up apt repos completely. I highly recommend learning how to build proper debs instead, it isn't hard.

@Deeival - Thanks for the tip about gnome-common, I'll add that.

@Saracen - it's just a guide to uninstalling, if you should ever need to. You are supposed to follow either source or repo install, and then if you don't want it, use those instructions to get rid of it. Sorry if I wasn't clear.

#12

Hi reacocard,

You may need to make -tracker and -beagle versions in your repo. You can do this by using the --disable-tracker or --disable-beagle flags during ./autogen.sh.

Regards,

Neil

#13

njpatel said: Hi reacocard,

You may need to make -tracker and -beagle versions in your repo. You can do this by using the --disable-tracker or --disable-beagle flags during ./autogen.sh.

Regards,

Neil

Looks like you're right. It'd be nice to have it dynamic though. *sighs* yet more work...

#14

Alright, stable repo packages updated. use affinity-tracker for tracker, and affinity-beagle for beagle.

SVN packages will be updated later today.

#15

Installed without problems. First impression (after 5 mins) is very good. I'll have to try this some more before giving further feedback.

EDIT: The above comment was for affinity. I am not able to start avant because I get a seg.fault. Don't have time too look further into it right now, will do tomorrow.

#16

I'm trying to install avant-window-manager and affinity-0.1.

Here is the output of autogen.sh when trying to compile affinity. Here is a link to the whole output of make as it is too big to attach or paste: LINK Any help would be greatly appreciated.

~/affinity-0.1$ sh autogen.sh 
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.60

checking for automake >= 1.9...

  testing automake-1.9... 
found 1.9.6

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.6.6

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.0

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.20

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`autogen.sh' command line.


Processing ./configure.ac


Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /usr/share/aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...


Running autoconf...


Running autoheader...


Running automake-1.9...


Running ./configure --enable-maintainer-mode ...

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... yes
checking for intltool >= 0.34... 0.35.0 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for TRACKER... checking for BEAGLE... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating affinity-preferences/Makefile
config.status: creating data/Makefile
config.status: creating data/actions/Makefile
config.status: creating src/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands

affinity-0.1:

        prefix:                 /usr/local
        source code location:   .
        compiler:               gcc
        tracker support:        no
        beagle support:         yes

Now type `make' to compile affinity
sasha@slevin:~/affinity-0.1$ 
#17

get the following issue with avant-window-navigator-svn


idn@idn-laptop:~/Desktop/Downloads/affinity-0.1$ avant-preferences 
GTK Accessibility Module initialized
/usr/local/share/avant-window-navigator/window.glade

(avant-preferences:19650): libglade-WARNING **: could not find glade file '/usr/local/share/avant-window-navigator/window.glade'
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 267, in ?
    app = main()
  File "/usr/local/bin/avant-preferences", line 132, in __init__
    self.wTree = gtk.glade.XML(self.gladefile, domain=I18N_DOMAIN) 
RuntimeError: could not create GladeXML object
#18

idn said: get the following issue with avant-window-navigator-svn

<snip>

From source? try

sudo ln -s /usr/share/avant-window-navigator/window.glade /usr/local/share/avant-window-navigator/window.glade
#19

Affinity svn packages are up.

#20

anyone else find that affinity cant change the text colour (stable version from repos)

Traceback (most recent call last):
  File "/usr/bin/affinity-preferences", line 199, in ncolor_changed
    string = make_ncolor_string (colorbut.get_color())
NameError: global name 'make_ncolor_string' is not defined

is the error I get...

#21

I can't seem to get it to dectet beagle support... It's bothering me quite a good deal, since that was a big selling point on this app for me. Any tips?

#22

winter_mute said: I can't seem to get it to dectet beagle support... It's bothering me quite a good deal, since that was a big selling point on this app for me. Any tips?

What method of installation did you use? Did you use svn or stable? What terminal output does it give when run? If you compiled it, did it say beagle support was enabled? (after configure/autogen.sh)

#23

Hello, I'm trying to install AWN and the process seems to hang at the point pasted below, any suggestions. I'm somewhat new so be gentle. =]

notwen@notnix:~$ wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg -O- | sudo apt-key add - Password:--19:37:49-- http://download.tuxfamily.org/syzygy42/8434D43A.gpg => `-' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [text/plain]

100%[====================================>] 1,682 --.--K/s

19:58:50 (35.28 MB/s) - `-' saved [1682/1682]

#24

notwen said: Hello, I'm trying to install AWN and the process seems to hang at the point pasted below, any suggestions. I'm somewhat new so be gentle. =]

notwen@notnix:~$ wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg -O- | sudo apt-key add - Password:--19:37:49-- http://download.tuxfamily.org/syzygy42/8434D43A.gpg => `-' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [text/plain]

100%[====================================>] 1,682 --.--K/s

19:58:50 (35.28 MB/s) - `-' saved [1682/1682]

It's probably waiting for you to enter your password. It took me a long time to figure that one out!

#25

Yup, was the password, lol. I'm using the how-to located at --- http://awn.wetpaint.com/page/UbuntuFeistyHowTo --- and I'm lost as of Step 4. Step 3 works w/o issue but ./autogen.sh brings up a " notwen@notnix:~$ ./autogen.sh bash: ./autogen.sh: No such file or directory "

Step 3: Download Avant Window Navigator from Subversion:

* svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator

Step 4:

* ./autogen.sh

Step 5: Install using checkinstall

* sudo checkinstall

Step 6:

* cd data

* gconftool-2 --install-schema-file=avant-window-navigator.schemas.in

#26

notwen said: Yup, was the password, lol. I'm using the how-to located at --- http://awn.wetpaint.com/page/UbuntuFeistyHowTo --- and I'm lost as of Step 4. Step 3 works w/o issue but ./autogen.sh brings up a

" notwen@notnix:~$ ./autogen.sh bash: ./autogen.sh: No such file or directory "

They're missing a step. You need to cd into the newly created avant-window-navigator folder before running autogen.

EDIT: I just fixed the wiki guide. Should be fine now.

#27

Small update, I've got AWN installed and working, but not installed properly. On the last step of the walkthrough I'm getting the following error, doesn't seem to be affecting the performance of AWN any if at all. Any ideas?

" notwen@notnix:~/avant-window-navigator/data$ gconftool-2 --install-schema-file=avant-window-navigator.schemas.in I/O warning : failed to load external entity "avant-window-navigator.schemas.in" Failed to open `avant-window-navigator.schemas.in': No such file or directory "

#28

notwen said: Small update, I've got AWN installed and working, but not installed properly. On the last step of the walkthrough I'm getting the following error, doesn't seem to be affecting the performance of AWN any if at all. Any ideas?

" notwen@notnix:~/avant-window-navigator/data$ gconftool-2 --install-schema-file=avant-window-navigator.schemas.in I/O warning : failed to load external entity "avant-window-navigator.schemas.in" Failed to open `avant-window-navigator.schemas.in': No such file or directory "

That part is no longer necessary, and hasn't been for some time in SVN. Nothing to worry about.

#29

Hip, thanks for the help. =]

#30

spockrock said: anyone else find that affinity cant change the text colour (stable version from repos)

Traceback (most recent call last):
  File "/usr/bin/affinity-preferences", line 199, in ncolor_changed
    string = make_ncolor_string (colorbut.get_color())
NameError: global name 'make_ncolor_string' is not defined

is the error I get...

Thanks, this is fixed in SVN.

-Neil

#31

Hi all, I'm getting this error when trying to make an apt-get update

[B]Imposible obtener http://download.tuxfamily.org/syzygy42/dists/edgy/Release Unable to find expected entry avant-window-navigator/binary-amd64/Packages in Meta-index file (malformed Release file?) Leyendo lista de paquetes... Hecho W: GPG error: http://download.tuxfamily.org edgy Release: Las firmas siguientes no se pudieron verificar porque su llave pública no está disponible: NO_PUBKEY 2D6CFB44DD800CD9[/B]

Thank you for your help!

Edit Using the .deb inside this thread works well. Thanks

#32

Tapanez said: Hi all, I'm getting this error when trying to make an apt-get update

[B]Imposible obtener http://download.tuxfamily.org/syzygy42/dists/edgy/Release Unable to find expected entry avant-window-navigator/binary-amd64/Packages in Meta-index file (malformed Release file?) Leyendo lista de paquetes... Hecho W: GPG error: http://download.tuxfamily.org edgy Release: Las firmas siguientes no se pudieron verificar porque su llave pública no está disponible: NO_PUBKEY 2D6CFB44DD800CD9[/B]

Thank you for your help!

Edit Using the .deb inside this thread works well. Thanks

My repo only has 32-bit packages, hence your problem. Thanks for the link to 64-bit packages though, I'll see if I can get them into my repo.

#33

hey guys, i dont know why everyone is having so many issues...i got it installed with no issues whatsoever in about 30 seconds by following the instructions in this link...

http://awn.wetpaint.com/page/Ubuntu+Edgy+Repository

#34

xxzeenoxx said: hey guys, i dont know why everyone is having so many issues...i got it installed with no issues whatsoever in about 30 seconds by following the instructions in this link...

http://awn.wetpaint.com/page/Ubuntu+Edgy+Repository

Most of the issues were with Affinity, not AWN, mainly because of packaging goofs on my part, which have now been fixed. This guide is also more general than that one. Also, I wrote that wiki page. :)

#35

I installed and compiled the SVN of AWN, and the stable version of Affinity as instructed. By the way, this line seem to have an error:

sudo apt-get install build-essential autotools-dev libgnome-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf subversion

libgnome-common doesn't exist, I changed it to gnome-common and it works.

Anyway, after all that work and AWN doesn't run properly, I get an inch thick of black frame at the bottom of my screen from left to right. AWN flickers when I mouse over. And Affinity doesn't seem to work either. Search comes up blank.

#36

mayamaniac said: I installed and compiled the SVN of AWN, and the stable version of Affinity as instructed. By the way, this line seem to have an error:

libgnome-common doesn't exist, I changed it to gnome-common and it works.

Anyway, after all that work and AWN doesn't run properly, I get an inch thick of black frame at the bottom of my screen from left to right. AWN flickers when I mouse over. And Affinity doesn't seem to work either. Search comes up blank.

You need a compositor (eg. beryl/compiz/xcompmgr) to get AWN to work properly, perhaps I should emphasize that more. Affinity requires that the desktop search engine be installed and running. You can start tracker by running trackerd, and beagle by running beagled. If you weren't using one before this it'll take a bit for it to index all your files, tracker is faster here, which is one reason I recommend it. You're right about gnome-common though, I'll fix that.

#37

AWN Works great in Feisty!

...but in addition to all the other necessary packages I also had to install libdbus-glib-1-dev

#38

i install awn from the : deb http://apt.schmidtke-hb.de/ feisty main after installed ,i draw apps to the bar, everything seems worked fine. but problem is that when i restart the computer, no apps on the bar? all of apps gone away, any idea of that?

#39

I didn't see anything close to this, please someone tell me what's going on, I don't quite understand haha.

Here are some screenshots of what I see in various positions/mouse interactions. Picture 1 Picture 2 Picture 3

Here's what comes to console when I try to open Preferences:

(avant-window-navigator:18651): Gtk-CRITICAL **: gtk_widget_set_sensitive: assertion `GTK_IS_WIDGET (widget)' failed

/usr/local/share/avant-window-navigator/window.glade X Error: BadDevice, invalid or uninitialized input device 169 Major opcode: 147 Minor opcode: 3 Resource id: 0x0 Failed to open device X Error: BadDevice, invalid or uninitialized input device 169 Major opcode: 147 Minor opcode: 3 Resource id: 0x0 Failed to open device

(avant-preferences:19048): libgnomevfs-CRITICAL **: gnome_vfs_get_uri_from_local_path: assertion `g_path_is_absolute (local_full_path)' failed

(avant-preferences:19048): libgnomevfs-CRITICAL **: gnome_vfs_get_uri_from_local_path: assertion `g_path_is_absolute (local_full_path)' failed

#40

zombiepkx said: I didn't see anything close to this, please someone tell me what's going on, I don't quite understand haha.

Here are some screenshots of what I see in various positions/mouse interactions. Picture 1 Picture 2 Picture 3

You need to be running a compositor like Beryl to get rid of that black bar.

#41

I finally got a hole punched through my school's firewall so I could test the SVN code for each of these on Feisty...

AWN works great! No issues that I could find. I think I had to install one extra library for dbus-glib-dev or something like that...

Affinity on the other hand has some issues. The SVN code wouldn't get through the autogen.sh at all, so I just grabbed the latest tarball. Also, I had to install libbeagle-dev before I compiled the code to get it to recognize that beagle was installed on the system. However, once I tried to run it I got a Seg Fault.

I'll try to recompile it with debugging enabled and step by step through it some time later this weekend when I have time, but was wondering if anyone else had this issue first and knew of a quick fix.

#42

Is this guide for Edgy 64bit too?

#43

when installing dependencies i get:

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  build-essential: Depends: libc6-dev but it is not going to be installed or
                            libc-dev
                   Depends: g++ (>= 4:4.0) but it is not going to be installed
  libgconf2-dev: Depends: libgconf2-4 (= 2.14.0-1ubuntu2) but 2.16.0-0ubuntu1 is to be installed
                 Depends: libpopt-dev but it is not going to be installed
                 Depends: liborbit2-dev (>= 1:2.8.0) but it is not going to be installed
  libglib2.0-dev: Depends: libglib2.0-0 (= 2.10.3-0ubuntu1) but 2.12.4-0ubuntu1 is to be installed
                  Depends: libc6-dev but it is not going to be installed or
                           libc-dev
  libgtk2.0-dev: Depends: libgtk2.0-0 (= 2.8.20-0ubuntu1.1) but 2.10.6-0ubuntu1 is to be installed
                 Depends: libpango1.0-dev (>= 1.10.0-2) but it is not going to be installed
                 Depends: libatk1.0-dev (>= 1.9.0) but it is not going to be installed
                 Depends: libcairo2-dev but it is not going to be installed
                 Depends: libx11-dev but it is not going to be installed
                 Depends: libxext-dev but it is not going to be installed
                 Depends: libxinerama-dev but it is not going to be installed
                 Depends: libxi-dev but it is not going to be installed
                 Depends: libxrandr-dev but it is not going to be installed
                 Depends: libxcursor-dev but it is not going to be installed
                 Depends: libxfixes-dev but it is not going to be installed
  libwnck-dev: Depends: libstartup-notification0-dev (>= 0.5) but it is not going to be installed
               Depends: libxres-dev but it is not going to be installed
E: Broken packages

I want me candy!

help plz, Nolander

#44

Slimshady said: Is this guide for Edgy 64bit too?

The compiling part, yes. The repo is 32-bit only.

Nolander said: when installing dependencies i get:

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  build-essential: Depends: libc6-dev but it is not going to be installed or
                            libc-dev
                   Depends: g++ (>= 4:4.0) but it is not going to be installed
  libgconf2-dev: Depends: libgconf2-4 (= 2.14.0-1ubuntu2) but 2.16.0-0ubuntu1 is to be installed
                 Depends: libpopt-dev but it is not going to be installed
                 Depends: liborbit2-dev (>= 1:2.8.0) but it is not going to be installed
  libglib2.0-dev: Depends: libglib2.0-0 (= 2.10.3-0ubuntu1) but 2.12.4-0ubuntu1 is to be installed
                  Depends: libc6-dev but it is not going to be installed or
                           libc-dev
  libgtk2.0-dev: Depends: libgtk2.0-0 (= 2.8.20-0ubuntu1.1) but 2.10.6-0ubuntu1 is to be installed
                 Depends: libpango1.0-dev (>= 1.10.0-2) but it is not going to be installed
                 Depends: libatk1.0-dev (>= 1.9.0) but it is not going to be installed
                 Depends: libcairo2-dev but it is not going to be installed
                 Depends: libx11-dev but it is not going to be installed
                 Depends: libxext-dev but it is not going to be installed
                 Depends: libxinerama-dev but it is not going to be installed
                 Depends: libxi-dev but it is not going to be installed
                 Depends: libxrandr-dev but it is not going to be installed
                 Depends: libxcursor-dev but it is not going to be installed
                 Depends: libxfixes-dev but it is not going to be installed
  libwnck-dev: Depends: libstartup-notification0-dev (>= 0.5) but it is not going to be installed
               Depends: libxres-dev but it is not going to be installed
E: Broken packages

I want me candy!

help plz, Nolander

Ouch, that's some really bad dependency hell you've got. Which version of Ubuntu is it? Did you add any third-party repositories? Are universe and multiverse enabled?

EDIT: Just thought of something. Did you upgrade this from dapper? If so, do the deb-src lines in your /etc/apt/sources.list still say dapper? If that's the case, you should just need to change them to edgy, apt-get update and try again.

#45

every thing is right but i still get the ^*^%$

Didnt upgrade. and im using edgy.

#46

Nolander said: every thing is right but i still get the ^*^%$

Didnt upgrade. and im using edgy.

Hum. Try downloading and installing them manually. Here's the links:

http://packages.ubuntu.com/edgy/devel/build-essential http://packages.ubuntu.com/edgy/libdevel/libgtk2.0-dev http://packages.ubuntu.com/edgy/libdevel/libgconf2-dev http://packages.ubuntu.com/edgy/libdevel/libglib2.0-dev http://packages.ubuntu.com/edgy/libdevel/libwnck-dev

If that doesn't change anything, post the contents of your /etc/apt/sources.list

Incidentally, if it's 32-bit edgy, you could just use the repo and save yourself the trouble. ;)

#47

Hi, I'm new so when I searched for installation guide for the avant-window-navigator I found the older guide and tried the install from their post. It gives me a segmentation core dump error of some sort. Not sure what that means, but would I have to uninstall the current awn and try to reinstall with these newer instructions?

How would I uninstall it? Would it be something like "rm avant-window-navigator"? Or is there a solution for this where I wouldn't have to reinstall?

Just wondering, I think it would be cool to get it running but since I can't figure it out I need a little help. Thanks for any info.

#48

chinita96 said: Hi, I'm new so when I searched for installation guide for the avant-window-navigator I found the older guide and tried the install from their post. It gives me a segmentation core dump error of some sort. Not sure what that means, but would I have to uninstall the current awn and try to reinstall with these newer instructions?

How would I uninstall it? Would it be something like "rm avant-window-navigator"? Or is there a solution for this where I wouldn't have to reinstall?

Just wondering, I think it would be cool to get it running but since I can't figure it out I need a little help. Thanks for any info.

Open a terminal in the source directory for the old version and do

sudo make uninstall

Just installing the new over the old *should* work, but it's best not to take chances.

Also remember you MUST be running beryl or compiz for AWN to work properly after you've installed it.

#49

I have installed AWN and it works great. i just have a quick question.

i have a seperate partition that i keep alot of data on and would like to add i launcher to awn for this. i have attempted to drag and drop the desktop icon and the option under places but neither of them will add to the dock. i was able to drag and drop other applications to the dock and even my home folder.

any ideas on how to add this separate partition? thanks.

#50

Thanks! I got it working after uninstalling and reinstalling. It worked perfect! Now the only thing I have a problem with is that the taskbar is in front of the avant bar with my icons. I don't know if this is a problem everyone is having, but I just set my taskbar to autohide for now. It's fine like that. Thanks again for the help.

#51

chinita96 said: Thanks! I got it working after uninstalling and reinstalling. It worked perfect! Now the only thing I have a problem with is that the taskbar is in front of the avant bar with my icons. I don't know if this is a problem everyone is having, but I just set my taskbar to autohide for now. It's fine like that. Thanks again for the help.

AWN isn't designed for use with a taskbar in the same spot. If you need the taskbar, I suggest splitting it into two bars, one on each side of AWN. Or you can just move the applets on that bar that you need up to the top panel, and delete the bottom one (you can add it again later).

#52

I ran AWN in the terminal and when I tried to go to preferences here is what I got:

salman@salman-desktop:~$ avant-window-navigator 
/usr/local/share/avant-window-navigator/window.glade

(avant-preferences:7204): libglade-WARNING **: could not find glade file '/usr/local/share/avant-window-navigator/window.glade'
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 250, in ?
    app = main()
  File "/usr/local/bin/avant-preferences", line 125, in __init__
    self.wTree = gtk.glade.XML(self.gladefile, domain=APP) 
RuntimeError: could not create GladeXML object

And in gconf-editor for each of the AWN options it says "this key has no schema"

#53

bugz0r said: I ran AWN in the terminal and when I tried to go to preferences here is what I got:

salman@salman-desktop:~$ avant-window-navigator 
/usr/local/share/avant-window-navigator/window.glade

(avant-preferences:7204): libglade-WARNING **: could not find glade file '/usr/local/share/avant-window-navigator/window.glade'
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 250, in ?
    app = main()
  File "/usr/local/bin/avant-preferences", line 125, in __init__
    self.wTree = gtk.glade.XML(self.gladefile, domain=APP) 
RuntimeError: could not create GladeXML object

And in gconf-editor for each of the AWN options it says "this key has no schema"

Try

sudo ln -s /usr/share/avant-window-navigator/window.glade /usr/local/share/avant-window-navigator/window.glade

As for the schema issue, that should have been fixed if you're running the SVN version. If you're not using SVN, I suggest upgrading to it, as it works MUCH better.

EDIT: Never mind, not the same schema issue I was thinking of. I have the same message, but AWN works perfectly so I wouldn't worry about it.

#54

Thanks it worked. Now how do I add launchers, remove the text, and change icons? Sorry if that's a lot of questions. Is there a user guide somewhere?

#55

bugz0r said: Thanks it worked. Now how do I add launchers, remove the text, and change icons? Sorry if that's a lot of questions. Is there a user guide somewhere?

To add launchers, just open up /usr/share/applications and drag them onto AWN. Currently you can't remove the text or change icons, but those features will come eventually.

#56

hi guys,i managed to get AWN working.so how do i put the trash icon in it??

#57

coffee-n-cream said: hi guys,i managed to get AWN working.so how do i put the trash icon in it??

You can't yet, but it should be possible in the future.

#58

Thanks for the HowTo, just got AWN up and going with feisty. Works great after some 'make' troubles. Just used the svn for the repo that reacocard provided and that got me around the the make issue.

--Thanks

#59

my awn dock bar isnt remember the launch icons im adding, anyone else having that problem?

#60

I just upgraded to Feisty, and have been trying out the included Compiz. I noticed that unless I enable the cube, AWN only seems to be on one desktop. Is there any way to make it appear on all desktops?

#61

Similar issues regarding AWN losing it's launchers since upgrading to the final Feisty release. Any solutions or fixes for this?

#62

AWN seems generally less stable under feisty. There are svn packages for AWN and Affinity in the repo now, BTW. Just substitute feisty for edgy in the apt line. I'll update the guide for that once I get the stable version of Affinity repackaged.

#63

I'm having some troubles with Avant in Feisty. The black text bubbles that appear when I move mouse over icons don't disappear at all. So if I sweep over the dock with mouse, all the bubbles appear on top of each other.

Also at first the icons appear _below_ the bar. When I click one of them, they come on top :confused:

I'm using Compiz and svn version of Avant. Avant installed with no problems. I also don't get any error messages when I run avant-window-navigator from terminal.

Just noticed that same happens in Beryl, so maybe it's a Nvidia driver issue? I have GF8800 GTS and Nvidia 9755 driver (nvidia-glx-new). Could there be some option that needs to be set in xorg.conf? I already have AddARGBGLXVisuals and AllowGLXWithComposite set to true.

#64

Feisty builds have been added to the repo, and I've fixed a few dependency errors in the guide. Enjoy!

#65

There's a typo in the deb-src line: should be "feisty" and not "eisty" :)

#66

testube_babies said: There's a typo in the deb-src line: should be "feisty" and not "eisty" :)

Fixed.

#67

I'm trying to use this, but when I try to get affinity-avn I get the following error:

W: Failed to fetch [http://download.tuxfamily.org/syzygy42/pool/feisty/avant-window-navigator/affinity-svn_0.1-svn43_i386.deb](http://download.tuxfamily.org/syzygy42/pool/feisty/avant-window-navigator/affinity-svn_0.1-svn43_i386.deb)
  Size mismatch
#68

Hi I am with feisty and a 8800GTX, and I have just installed AWN. I have a problem with the text, describing the windows. the text will stay forever overlaping each other ... is there a solution ?

#69

trmiv said: I'm trying to use this, but when I try to get affinity-avn I get the following error:

W: Failed to fetch [http://download.tuxfamily.org/syzygy42/pool/feisty/avant-window-navigator/affinity-svn_0.1-svn43_i386.deb](http://download.tuxfamily.org/syzygy42/pool/feisty/avant-window-navigator/affinity-svn_0.1-svn43_i386.deb)
  Size mismatch

Do an apt-get update and try again, it should be fixed now.

#70

I get this first:

sudo apt-get install build-essential autotools-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf subversion
Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version.
autotools-dev is already the newest version.
libgnome2-common is already the newest version.
libgnomevfs2-0 is already the newest version.
libgnome-desktop-2 is already the newest version.
libgnome2-0 is already the newest version.
libwnck-common is already the newest version.
python-gtk2 is already the newest version.
python-gconf is already the newest version.
subversion is already the newest version.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:

The following packages have unmet dependencies:
  libwnck-dev: Depends: libwnck18 (= 2.16.1-0ubuntu1.1) but 2.16.1-0ubuntu1.1awn is to be installed
E: Broken packages

And just for kicks I decided to keep going:

./autogen.sh
You need to install the gnome-common module and make sure the gnome-autogen.sh script is in your $PATH.
make
make: *** No targets specified and no makefile found.  Stop.
sudo make install
Password:
make: *** No rule to make target `install'.  Stop.

I'm running Edgy and thought I'd try out Avant, but so far I'm totally lost

#71

rainwalker said: I get this first:

sudo apt-get install build-essential autotools-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf subversion
Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version.
autotools-dev is already the newest version.
libgnome2-common is already the newest version.
libgnomevfs2-0 is already the newest version.
libgnome-desktop-2 is already the newest version.
libgnome2-0 is already the newest version.
libwnck-common is already the newest version.
python-gtk2 is already the newest version.
python-gconf is already the newest version.
subversion is already the newest version.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:

The following packages have unmet dependencies:
  libwnck-dev: Depends: libwnck18 (= 2.16.1-0ubuntu1.1) but 2.16.1-0ubuntu1.1awn is to be installed
E: Broken packages

And just for kicks I decided to keep going:

./autogen.sh
You need to install the gnome-common module and make sure the gnome-autogen.sh script is in your $PATH.
make
make: *** No targets specified and no makefile found.  Stop.
sudo make install
Password:
make: *** No rule to make target `install'.  Stop.

I'm running Edgy and thought I'd try out Avant, but so far I'm totally lost

Remove/comment any lines containing this from your /etc/apt/sources.list

http://download.tuxfamily.org/syzygy42

Then open Synaptic, reload your package lists and downgrade any wnck packages the appear in Status -> "Installed (Local or Obsolete)" by using the Package -> Force Version option. Close synaptic and try again, adding gnome-common the the list of packages to apt-get (I thought I'd fixed that already :mad:).

#72

Actually, I just removed everything and tried again, and it seems to have worked...how do I know if Avant and Affinity installed correctly?

#73

Well I successfully got Affinity working, and Avant is in the menus, but when I click on any of the Avant things nothing happens. Help?

#74

rainwalker said: Well I successfully got Affinity working, and Avant is in the menus, but when I click on any of the Avant things nothing happens.

Help?

Could you please run it in a terminal and give me the output? The command is avant-window-navigator.

#75

Segmentation fault

Wha...?

#76

rainwalker said:

Segmentation faultWha...?

Try compiling it again, and if it still segfaults, post all the output from the compilation here.

#77

Compiling what? I got so lost in this whole process I don't know what I compiled

#78

Compiling what? I got so lost in this whole process I don't know what I compiled

#79

AUGHH! Stupid Windows computer! I don't know why they don't have Firefox on here...

#80

Weird; Affinity suddenly has this black box along the side of the search window: [IMG]http://i153.photobucket.com/albums/s236/thevoiceless/Screenshot-3-1.png[/IMG] I did just try installing the affinity-beagle package with Synaptic, but because I didn't notice anything different and it needs libtrackerclient0 for affinity-tracker, I removed it. There was no black box before that.

Also, why does it only search for applications? If I type "Shared", which is the name of the folder FrostWire saves my stuff in, Affinity will only give me "Shared Folders" (System -> Administration -> Shared Folders) as a result.

#81

rainwalker said: Weird; Affinity suddenly has this black box along the side of the search window:

I did just try installing the affinity-beagle package with Synaptic, but because I didn't notice anything different and it needs libtrackerclient0 for affinity-tracker, I removed it. There was no black box before that.

Also, why does it only search for applications? If I type "Shared", which is the name of the folder FrostWire saves my stuff in, Affinity will only give me "Shared Folders" (System -> Administration -> Shared Folders) as a result.

Huh, that's odd. Never seen that happen before. Probably because of the install/remove, try reinstalling Affinity from source (just doing sudo make install is enough if you still have the folder you compiled from before). As for the search, you have to have beagle installed and running for it to search anything except applications.

#82

It still does it. Output of "sudo make install" in "/home/riley/stuff/affinity/affinity-0.1":

Making install in src
make[1]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/src'
make[2]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/src'
test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin"
  /usr/bin/install -c 'affinity' '/usr/local/bin/affinity'
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/src'
make[1]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/src'
Making install in data
make[1]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/data'
Making install in actions
make[2]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/data/actions'
make[3]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/data/actions'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/affinity/actions" || mkdir -p -- "/usr/local/share/affinity/actions"
 /usr/bin/install -c -m 644 'open-folder.desktop' '/usr/local/share/affinity/actions/open-folder.desktop'
 /usr/bin/install -c -m 644 'open-webpage.desktop' '/usr/local/share/affinity/actions/open-webpage.desktop'
 /usr/bin/install -c -m 644 'open-http-webpage.desktop' '/usr/local/share/affinity/actions/open-http-webpage.desktop'
 /usr/bin/install -c -m 644 'send-email.desktop' '/usr/local/share/affinity/actions/send-email.desktop'
make[3]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/data/actions'
make[2]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/data/actions'
make[2]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/data'
make[3]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/data'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/applications" || mkdir -p -- "/usr/local/share/applications"
 /usr/bin/install -c -m 644 'affinity.desktop' '/usr/local/share/applications/affinity.desktop'
make[3]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/data'
make[2]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/data'
make[1]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/data'
Making install in po
make[1]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/po'
/home/riley/stuff/affinity/affinity-0.1/install-sh -d /usr/local/share/locale
if test -n ""; then \
          linguas=""; \
        else \
          linguas=""; \
        fi; \
        for lang in $linguas; do \
          dir=/usr/local/share/locale/$lang/LC_MESSAGES; \
          /home/riley/stuff/affinity/affinity-0.1/install-sh -d $dir; \
          if test -r $lang.gmo; then \
            /usr/bin/install -c -m 644 $lang.gmo $dir/affinity.mo; \
            echo "installing $lang.gmo as $dir/affinity.mo"; \
          else \
            /usr/bin/install -c -m 644 ./$lang.gmo $dir/affinity.mo; \
            echo "installing ./$lang.gmo as" \
                 "$dir/affinity.mo"; \
          fi; \
          if test -r $lang.gmo.m; then \
            /usr/bin/install -c -m 644 $lang.gmo.m $dir/affinity.mo.m; \
            echo "installing $lang.gmo.m as $dir/affinity.mo.m"; \
          else \
            if test -r ./$lang.gmo.m ; then \
              /usr/bin/install -c -m 644 ./$lang.gmo.m \
                $dir/affinity.mo.m; \
              echo "installing ./$lang.gmo.m as" \
                   "$dir/affinity.mo.m"; \
            else \
              true; \
            fi; \
          fi; \
        done
make[1]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/po'
Making install in affinity-preferences
make[1]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/affinity-preferences'
make[2]: Entering directory `/home/riley/stuff/affinity/affinity-0.1/affinity-preferences'
sed -e "s|\@PKGDATADIR\@|/usr/local/share/affinity|g" affinity-preferences.in.in.py > affinity-preferences.in.py
sed -e "s|\@DATADIR\@|/usr/local/share|g" affinity-preferences.in.py > affinity-preferences.py
/usr/bin/install -c -m 755 affinity-preferences.py /usr/local/bin/affinity-preferences
test -z "/usr/local/share/applications" || mkdir -p -- "/usr/local/share/applications"
 /usr/bin/install -c -m 644 'affinity-preferences.desktop' '/usr/local/share/applications/affinity-preferences.desktop'
test -z "/usr/local/share/affinity" || mkdir -p -- "/usr/local/share/affinity"
 /usr/bin/install -c -m 644 'window.glade' '/usr/local/share/affinity/window.glade'
make[2]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/affinity-preferences'
make[1]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1/affinity-preferences'
make[1]: Entering directory `/home/riley/stuff/affinity/affinity-0.1'
make[2]: Entering directory `/home/riley/stuff/affinity/affinity-0.1'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1'
make[1]: Leaving directory `/home/riley/stuff/affinity/affinity-0.1'
#83

In "/home/riley/stuff/avant/avant-window-manager", this is the output of "sudo make":

/bin/bash ./config.status --recheck
running CONFIG_SHELL=/bin/bash /bin/bash /home/riley/stuff/avant/avant-window-navigator/configure   --no-create --no-recursion
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for intltool >= 0.34... 0.35.0 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  cs da de_DE el_GR en_GB fr_FR it_IT pt_BR ru
checking for pkg-config... /usr/bin/pkg-config
checking for GLIB - version >= 2.8.0... yes (version 2.12.4)
checking pkg-config is at least version 0.9.0... yes
checking for AWN... yes
configure: creating ./config.status
 /bin/bash ./config.status
config.status: creating Makefile
config.status: creating avant-preferences/Makefile
config.status: creating src/Makefile
config.status: creating data/Makefile
config.status: creating data/active/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands
make  all-recursive
make[1]: Entering directory `/home/riley/stuff/avant/avant-window-navigator'
Making all in src
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/src'
/bin/bash ../libtool --mode=execute /usr/bin/dbus-binding-tool --prefix=awn_task_manager --mode=glib-server --output=awn-dbus-glue.h awn-dbus.xml
make  all-am
make[3]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/src'
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DORBIT2=1 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/libwnck-1.0 -I/usr/include/gnome-desktop-2.0 -I/usr/include/libgnomeui-2.0 -I/usr/include/startup-notification-1.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gnome-keyring-1 -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 -I/usr/include/freetype2 -I/usr/include/libxml2 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -DDATADIR=\""/usr/local/share"\" -DGNOMELOCALEDIR=\""/usr/local/share/locale"\"   -g -O2 -Wall -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2 -MT awn-task-manager.o -MD -MP -MF ".deps/awn-task-manager.Tpo" -c -o awn-task-manager.o awn-task-manager.c; \
        then mv -f ".deps/awn-task-manager.Tpo" ".deps/awn-task-manager.Po"; else rm -f ".deps/awn-task-manager.Tpo"; exit 1; fi
awn-task-manager.c: In function &#8216;_load_launchers_func&#8217;:
awn-task-manager.c:115: warning: implicit declaration of function &#8216;awn_task_get_type&#8217;
awn-task-manager.c: In function &#8216;awn_task_manager_add_task_menu_item_by_name&#8217;:
awn-task-manager.c:1255: warning: assignment makes pointer from integer without a cast
awn-task-manager.c: In function &#8216;awn_task_manager_add_task_check_item_by_name&#8217;:
awn-task-manager.c:1291: warning: assignment makes pointer from integer without a cast
/bin/bash ../libtool --tag=CC --mode=link gcc  -g -O2 -Wall -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2   -o avant-window-navigator  main.o awn-gconf.o awn-bar.o awn-app.o awn-hotspot.o awn-marshallers.o awn-win-manager.o awn-title.o awn-task.o awn-task-manager.o awn-window.o awn-x.o awn-utils.o xutils.o -pthread -lwnck-1 -lgnome-desktop-2 -lgnomeui-2 -lSM -lICE -lstartup-notification-1 -lbonoboui-2 -lgnome-keyring -lxml2 -lgnomecanvas-2 -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lgnome-2 -lpopt -lbonobo-2 -lbonobo-activation -lgnomevfs-2 -lgobject-2.0 -lgconf-2 -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lX11 -ldbus-glib-1 -ldbus-1 -lglib-2.0                                                  
gcc -g -O2 -Wall -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2 -o avant-window-navigator main.o awn-gconf.o awn-bar.o awn-app.o awn-hotspot.o awn-marshallers.o awn-win-manager.o awn-title.o awn-task.o awn-task-manager.o awn-window.o awn-x.o awn-utils.o xutils.o -pthread  -lwnck-1 -lgnome-desktop-2 /usr/lib/libgnomeui-2.so -lSM -lICE /usr/lib/libstartup-notification-1.so /usr/lib/libbonoboui-2.so /usr/lib/libgnome-keyring.so /usr/lib/libxml2.so /usr/lib/libgnomecanvas-2.so /usr/lib/libart_lgpl_2.so /usr/lib/libpangoft2-1.0.so /usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so /usr/lib/libgdk_pixbuf-2.0.so /usr/lib/libpangocairo-1.0.so -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes /usr/lib/libpango-1.0.so /usr/lib/libcairo.so /usr/lib/libgnome-2.so /usr/lib/libpopt.so /usr/lib/libbonobo-2.so /usr/lib/libbonobo-activation.so /usr/lib/libgnomevfs-2.so /usr/lib/libgobject-2.0.so /usr/lib/libgconf-2.so /usr/lib/libORBit-2.so -lm /usr/lib/libgmodule-2.0.so -ldl /usr/lib/libgthread-2.0.so -lX11 -ldbus-glib-1 -ldbus-1 /usr/lib/libglib-2.0.so
make[3]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/src'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/src'
Making all in data
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data'
Making all in active
make[3]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data/active'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data/active'
make[3]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data'
Making all in po
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/po'
Making all in avant-preferences
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/avant-preferences'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/avant-preferences'
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator'
make[1]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator'

And this is the output of "sudo make install":

Making install in src
make[1]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/src'
make  install-am
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/src'
make[3]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/src'
test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin"
  /bin/bash ../libtool --mode=install /usr/bin/install -c 'avant-window-navigator' '/usr/local/bin/avant-window-navigator'
/usr/bin/install -c avant-window-navigator /usr/local/bin/avant-window-navigator
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/src'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/src'
make[1]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/src'
Making install in data
make[1]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data'
Making install in active
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data/active'
make[3]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data/active'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/avant-window-navigator/active" || mkdir -p -- "/usr/local/share/avant-window-navigator/active"
 /usr/bin/install -c -m 644 'glow.png' '/usr/local/share/avant-window-navigator/active/glow.png'
 /usr/bin/install -c -m 644 'glow2.png' '/usr/local/share/avant-window-navigator/active/glow2.png'
 /usr/bin/install -c -m 644 'glow3.png' '/usr/local/share/avant-window-navigator/active/glow3.png'
 /usr/bin/install -c -m 644 'glow4.png' '/usr/local/share/avant-window-navigator/active/glow4.png'
 /usr/bin/install -c -m 644 'glow5.png' '/usr/local/share/avant-window-navigator/active/glow5.png'
 /usr/bin/install -c -m 644 'glow6.png' '/usr/local/share/avant-window-navigator/active/glow6.png'
 /usr/bin/install -c -m 644 'glow7.png' '/usr/local/share/avant-window-navigator/active/glow7.png'
 /usr/bin/install -c -m 644 'glow8.png' '/usr/local/share/avant-window-navigator/active/glow8.png'
 /usr/bin/install -c -m 644 'glow9.png' '/usr/local/share/avant-window-navigator/active/glow9.png'
make[3]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data/active'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data/active'
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data'
make[3]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/data'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/applications" || mkdir -p -- "/usr/local/share/applications"
 /usr/bin/install -c -m 644 'avant-window-navigator.desktop' '/usr/local/share/applications/avant-window-navigator.desktop'
test -z "/usr/local/share/avant-window-navigator" || mkdir -p -- "/usr/local/share/avant-window-navigator"
 /usr/bin/install -c -m 644 'avant-window-navigator.svg' '/usr/local/share/avant-window-navigator/avant-window-navigator.svg'
 /usr/bin/install -c -m 644 'avant-window-navigator-24.png' '/usr/local/share/avant-window-navigator/avant-window-navigator-24.png'
 /usr/bin/install -c -m 644 'avant-window-navigator-48.png' '/usr/local/share/avant-window-navigator/avant-window-navigator-48.png'
make[3]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data'
make[1]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/data'
Making install in po
make[1]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/po'
/home/riley/stuff/avant/avant-window-navigator/install-sh -d /usr/local/share/locale
if test -n ""; then \
          linguas=""; \
        else \
          linguas="cs da de_DE el_GR en_GB fr_FR it_IT pt_BR ru"; \
        fi; \
        for lang in $linguas; do \
          dir=/usr/local/share/locale/$lang/LC_MESSAGES; \
          /home/riley/stuff/avant/avant-window-navigator/install-sh -d $dir; \
          if test -r $lang.gmo; then \
            /usr/bin/install -c -m 644 $lang.gmo $dir/avant-window-navigator.mo; \
            echo "installing $lang.gmo as $dir/avant-window-navigator.mo"; \
          else \
            /usr/bin/install -c -m 644 ./$lang.gmo $dir/avant-window-navigator.mo; \
            echo "installing ./$lang.gmo as" \
                 "$dir/avant-window-navigator.mo"; \
          fi; \
          if test -r $lang.gmo.m; then \
            /usr/bin/install -c -m 644 $lang.gmo.m $dir/avant-window-navigator.mo.m; \
            echo "installing $lang.gmo.m as $dir/avant-window-navigator.mo.m"; \
          else \
            if test -r ./$lang.gmo.m ; then \
              /usr/bin/install -c -m 644 ./$lang.gmo.m \
                $dir/avant-window-navigator.mo.m; \
              echo "installing ./$lang.gmo.m as" \
                   "$dir/avant-window-navigator.mo.m"; \
            else \
              true; \
            fi; \
          fi; \
        done
installing cs.gmo as /usr/local/share/locale/cs/LC_MESSAGES/avant-window-navigator.mo
installing da.gmo as /usr/local/share/locale/da/LC_MESSAGES/avant-window-navigator.mo
installing de_DE.gmo as /usr/local/share/locale/de_DE/LC_MESSAGES/avant-window-navigator.mo
installing el_GR.gmo as /usr/local/share/locale/el_GR/LC_MESSAGES/avant-window-navigator.mo
installing en_GB.gmo as /usr/local/share/locale/en_GB/LC_MESSAGES/avant-window-navigator.mo
installing fr_FR.gmo as /usr/local/share/locale/fr_FR/LC_MESSAGES/avant-window-navigator.mo
installing it_IT.gmo as /usr/local/share/locale/it_IT/LC_MESSAGES/avant-window-navigator.mo
installing pt_BR.gmo as /usr/local/share/locale/pt_BR/LC_MESSAGES/avant-window-navigator.mo
installing ru.gmo as /usr/local/share/locale/ru/LC_MESSAGES/avant-window-navigator.mo
make[1]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/po'
Making install in avant-preferences
make[1]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/avant-preferences'
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator/avant-preferences'
sed -e "s|\@PKGDATADIR\@|/usr/local/share/avant-window-navigator|g" avant-preferences.in.py > avant-preferences.py
/usr/bin/install -c -m 755 avant-preferences.py /usr/local/bin/avant-preferences
test -z "/usr/local/share/applications" || mkdir -p -- "/usr/local/share/applications"
 /usr/bin/install -c -m 644 'avant-preferences.desktop' '/usr/local/share/applications/avant-preferences.desktop'
test -z "/usr/local/share/avant-window-navigator" || mkdir -p -- "/usr/local/share/avant-window-navigator"
 /usr/bin/install -c -m 644 'window.glade' '/usr/local/share/avant-window-navigator/window.glade'
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/avant-preferences'
make[1]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator/avant-preferences'
make[1]: Entering directory `/home/riley/stuff/avant/avant-window-navigator'
make[2]: Entering directory `/home/riley/stuff/avant/avant-window-navigator'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator'
make[1]: Leaving directory `/home/riley/stuff/avant/avant-window-navigator'

Unfortunately, I have no idea what ANY of this is.

Oh by the way, I installed the beagle thing and it still has the black box and it doesn't find files.

#84

YEESSSSSS! I decided to try starting Avant again, and IT WORKS!

Is there a way to remove Beryl and install Compiz without breaking anything?

#85

How do I remove Affinity?

#86

rainwalker said: YEESSSSSS! I decided to try starting Avant again, and IT WORKS!

Is there a way to remove Beryl and install Compiz without breaking anything?

Great to hear you got it working! Once it's compiled, AWN doesn't care whether it's running under Beryl or Compiz. Just uninstalling beryl normally and installing compiz should work fine. Just be sure to turn off AWN before removing Beryl.

rainwalker said: How do I remove Affinity?

Just use

sudo make uninstall
#87

Maybe there is an obvious answer to this, but I can't figure it out. Is there any way to get Affinity to search the entire filesystem ( / ) instead of just /home ?

#88

SystemE said: Maybe there is an obvious answer to this, but I can't figure it out. Is there any way to get Affinity to search the entire filesystem ( / ) instead of just /home ?

by configuring beagle or tracker, depending on which one you use.

For as far as I know

beagle can be configured by selecting "search and indexing" from the system preference menu (or something like that, I have a Dutch interface so don't know for sure if it is called like this), to configure tracker you have to edit ~/.Tracker/tracker.cfg by hand

#89

SystemE said: Maybe there is an obvious answer to this, but I can't figure it out. Is there any way to get Affinity to search the entire filesystem ( / ) instead of just /home ?

You'll have to set up beagle or tracker to do that, but you probably don't want to. 90% of the stuff in / is stuff you'll never need to search for, so indexing them will just waste time and disk space. If you have other folders within / you'd like to search, just add those, not / itself.

#90

I got AWN up and running, but only the top half of the dock appears. I'm using Beryl, and when I rotate the cube, I can see the bottom half of the icons. Is there any way I can move the default position up about 20-30 pixels? Or is there any other way I can see the entire dock?

#91

You are missing libdbus-glib-1-dev. It is necessary to avant.

ounn

#92

mvhsbball22 said: I got AWN up and running, but only the top half of the dock appears. I'm using Beryl, and when I rotate the cube, I can see the bottom half of the icons. Is there any way I can move the default position up about 20-30 pixels? Or is there any other way I can see the entire dock?

You can adjust AWN's position by setting the force_monitor option and then changing monitor_height and _width to your display's resolution. You can get these options by pressing alt+f2, entering gconf-editor, and then navigating to apps -> avant-window-navigator.

#93

You're a hero. Thanks :)

#94

Affinity still won't search for actual files! I have affinity-beagle installed, but if I run Affinity from a terminal I get:

riley@Riley:~$ affinity
Action Engine : Scanning /home/riley/.gnome2/affinity/actions
Action Engine : Scanning /usr/local/share/affinity/actions
Application Engine : Scanning /home/riley/.local/share/applications
Application Engine : Scanning /usr/local/share/applications
Application Engine : Scanning /usr/share/applications
Application Engine : Scanning /usr/share/applications/kde
Application Engine : Scanning /usr/share/applications/screensavers
Desktop Search Engine : None
You may need to install development packages of either Beagle or Tracker.
(affinity:8013): GLib-CRITICAL **: g_string_free: assertion `string != NULL' failed

(affinity:8013): GLib-CRITICAL **: g_string_free: assertion `string != NULL' failed

I have affinity-beagle and beagle-dev installed, but if I search for "as i lay dying" to find the songs I have by that band, I get nothing. In terminal:

** (affinity:8013): CRITICAL **: aff_search_engine_set_query: assertion `AFF_IS_SEARCH_ENGINE (engine)' failed

Any suggestions?

#95

rainwalker said: Affinity still won't search for actual files! I have affinity-beagle installed, but if I run Affinity from a terminal I get:

riley@Riley:~$ affinity
Action Engine : Scanning /home/riley/.gnome2/affinity/actions
Action Engine : Scanning /usr/local/share/affinity/actions
Application Engine : Scanning /home/riley/.local/share/applications
Application Engine : Scanning /usr/local/share/applications
Application Engine : Scanning /usr/share/applications
Application Engine : Scanning /usr/share/applications/kde
Application Engine : Scanning /usr/share/applications/screensavers
Desktop Search Engine : None
You may need to install development packages of either Beagle or Tracker.
(affinity:8013): GLib-CRITICAL **: g_string_free: assertion `string != NULL' failed

(affinity:8013): GLib-CRITICAL **: g_string_free: assertion `string != NULL' failed

I have affinity-beagle and beagle-dev installed, but if I search for "as i lay dying" to find the songs I have by that band, I get nothing. In terminal:

** (affinity:8013): CRITICAL **: aff_search_engine_set_query: assertion `AFF_IS_SEARCH_ENGINE (engine)' failed

Any suggestions?

Is beagle installed and running? If so, does a normal beagle search work?

#96

It is installed, but no matter what I search for it never finds anything.

#97

I need help installing. This is what I get doing autogen:

ben@ben-desktop:~/avant/avant-window-navigator$ ./autogen.sh

/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

testing autoconf2.50... not found. testing autoconf... found 2.61

checking for automake >= 1.9...

testing automake-1.10... not found. testing automake-1.9... found 1.9.6

checking for libtool >= 1.5...

testing libtoolize... found 1.5.22

checking for glib-gettext >= 2.2.0...

testing glib-gettextize... found 2.12.11

checking for intltool >= 0.30...

testing intltoolize... found 0.35.5

checking for pkg-config >= 0.14.0...

testing pkg-config... found 0.21

Checking for required M4 macros...

Checking for forbidden M4 macros...

Warning: I am going to run configure' with no arguments. If you wish to pass any to it, please specify them on the ./autogen.sh' command line.

Processing ./configure.in

Running libtoolize...

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.

Running intltoolize...

Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...

Running autoheader...

Running automake-1.9...

Processing ./avant-window-navigator/configure.in

Running libtoolize...

You should add the contents of /usr/share/aclocal/libtool.m4' to aclocal.m4'. Putting files in AC_CONFIG_AUX_DIR, `..'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.

Running intltoolize...

intltoolize: 'po/Makefile.in.in' is out of date: use '--force' to overwrite

and this is make

ben@ben-desktop:~/avant/avant-window-navigator$ make

make: *** No targets specified and no makefile found. Stop.

#98

rainwalker said: It is installed, but no matter what I search for it never finds anything.

Is it running? That's rather important. ;) Start it with 'beagled'.

#99

I'm not sure

I removed it, as well as Avant

#100

ok, i have read through others posts and i cant see where someone had an error like mine. there were similar but not like mine. i am trying to install the svn version and have tried multiple, multiple times. however, here is the output of my ./autogen.sh

matt@matt-desktop:~/Installs/avant-window-navigator$ ./autogen.sh
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...


Running autoheader...


Running automake-1.9...

configure.in: installing `./install-sh'
configure.in: installing `./missing'
src/Makefile.am: installing `./depcomp'

Running ./configure --enable-maintainer-mode ...

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for intltool >= 0.34... 0.35.5 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  cs da de_DE el_GR en_GB fr_FR it_IT pt_BR ru
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.7... yes
checking for GLIB - version >= 2.8.0... yes (version 2.12.11)
checking for AWN... configure: error: Package requirements ( glib-2.0 gobject-2.0 gtk+-2.0 gdk-2.0 libwnck-1.0 gnome-desktop-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto dbus-glib-1) were not met:

No package 'dbus-glib-1' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS
and AWN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

matt@matt-desktop:~/Installs/avant-window-navigator$ make
make: *** No targets specified and no makefile found.  Stop.
matt@matt-desktop:~/Installs/avant-window-navigator$ sudo make install
make: *** No rule to make target `install'.  Stop.

any ideas

#101

yodaky said: ok, i have read through others posts and i cant see where someone had an error like mine. there were similar but not like mine. i am trying to install the svn version and have tried multiple, multiple times. however, here is the output of my ./autogen.sh

<snip>

any ideas

I need to pay better attention. ;) ounn pointed this out a few posts back. Do a

sudo apt-get install libdbus-glib-1-dev

and then start from ./autogen.sh again. I'll update the guide to reflect this.

#102

sweet! it's a shame i couldnt figure out something so simple lol.

#103

I get a size-mismatch....?


slincoln@slincoln-desktop:/var/cache/apt/archives$ sudo apt-get install avant-window-navigator-svn
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  avant-window-navigator-svn
0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
Need to get 159kB of archives.
After unpacking 635kB of additional disk space will be used.
Get:1 http://download.tuxfamily.org feisty/avant-window-navigator avant-window-navigator-svn 0.1.2-svn173 [159kB]
Fetched 1B in 0s (4B/s)                             
Failed to fetch http://download.tuxfamily.org/syzygy42/pool/feisty/avant-window-navigator/avant-window-navigator-svn_0.1.2-svn173_i386.deb  Size mismatch
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
#104

Foxman2k said: I get a size-mismatch....?


slincoln@slincoln-desktop:/var/cache/apt/archives$ sudo apt-get install avant-window-navigator-svn
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  avant-window-navigator-svn
0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
Need to get 159kB of archives.
After unpacking 635kB of additional disk space will be used.
Get:1 http://download.tuxfamily.org feisty/avant-window-navigator avant-window-navigator-svn 0.1.2-svn173 [159kB]
Fetched 1B in 0s (4B/s)                             
Failed to fetch http://download.tuxfamily.org/syzygy42/pool/feisty/avant-window-navigator/avant-window-navigator-svn_0.1.2-svn173_i386.deb  Size mismatch
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

Oops. I was fixing something earlier today and forgot about that particular falcon bug. I'll fix it immediately.

EDIT: Should be fixed now. Do an apt-get update and try again.

#105

Is there any solution to disable 'always on top' option in avant-window-navigator?

#106

How can I get AWN to run at startup and keep my previous settings from before? At the moment it just forgets what programs I had in it. :confused:

#107

b0ng0 said: How can I get AWN to run at startup and keep my previous settings from before? At the moment it just forgets what programs I had in it. :confused:

You need to put the *.desktop files (launchers) to ~/.avant directory. Then put avant-window-navigator into System -> Preferences -> Session -> Startup Programs.

#108

Thanks i'll try that out :)

Sorry, where is the ~/.avant directory? I have tried looking but can only find a similar folder (avant-window-manager) in /usr/share/ and not in the location you specified. Is this the right place to put the launchers? Thanks

#109

b0ng0 said: Thanks i'll try that out :)

Sorry, where is the ~/.avant directory? I have tried looking but can only find a similar folder (avant-window-manager) in /usr/share/ and not in the location you specified. Is this the right place to put the launchers? Thanks ~ in Linux means your home directory, so it's /home/<INSERT USERNAME>/.avant. If it doesn't exist, you can just create it yourself.

Edit: sry forgot to mention, if the launchers don't show up in Avant, drag them to it from that directory. Just don't delete the directory afterwards.

#110

In Nautilus try pressing CTRL+H to show hidden files/folders hence the '.' before the folder name. It should be located in your /home/usernamehere directory. Or fi you like to work in term try a ls -a in your /home/username here directory to ensure .avant directory does indeed exist.

#111

Thanks, that seems to have worked. One more thing - is there anyway to get the app launchers in the bar to launch the program everytime? At the moment when I open firefox then minimise, when I click on the app launcher again it just maximises the window and doesn't open another firefox :s

#112

b0ng0 said: Thanks, that seems to have worked. One more thing - is there anyway to get the app launchers in the bar to launch the program everytime? At the moment when I open firefox then minimise, when I click on the app launcher again it just maximises the window and doesn't open another firefox :s

I think middle-click opens a new one if oen is already open.

#113

I'm having some problems here. I installed affinity from the repositories, but when I try to run it, this happens:

flaringo@flaringo:~$ affinity
Action Engine : Scanning /home/flaringo/.gnome2/affinity/actions
Action Engine : Scanning /usr/share/affinity/actions
Application Engine : Scanning /home/flaringo/.local/share/applications
Application Engine : Scanning /home/flaringo/.local/share/applications/wine
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs/EA GAMES
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs/EA GAMES/Battlefield Vietnam
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs/Steam
Application Engine : Scanning /usr/local/share/applications
Application Engine : Scanning /usr/share/applications
Application Engine : Scanning /usr/share/applications/screensavers
Application Engine : Scanning /usr/share/applications/kde
Desktop Search Engine : Tracker

(affinity:15509): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:15509): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:15509): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed
Segmentation fault (core dumped)
flaringo@flaringo:~$ 
#114

reacocard said: I think middle-click opens a new one if oen is already open.

You are indeed correct. Thank you once again :KS

#115

Oy, I tried installing Compiz (Beryl runs slower and I guess I don't need all the effects) but it had no window bars and stuff kept messing up. I'll probably go back and uninstall Beryl then try Compiz

#116

Flaringo said: I'm having some problems here. I installed affinity from the repositories, but when I try to run it, this happens:

flaringo@flaringo:~$ affinity
Action Engine : Scanning /home/flaringo/.gnome2/affinity/actions
Action Engine : Scanning /usr/share/affinity/actions
Application Engine : Scanning /home/flaringo/.local/share/applications
Application Engine : Scanning /home/flaringo/.local/share/applications/wine
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs/EA GAMES
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs/EA GAMES/Battlefield Vietnam
Application Engine : Scanning /home/flaringo/.local/share/applications/wine/Programs/Steam
Application Engine : Scanning /usr/local/share/applications
Application Engine : Scanning /usr/share/applications
Application Engine : Scanning /usr/share/applications/screensavers
Application Engine : Scanning /usr/share/applications/kde
Desktop Search Engine : Tracker

(affinity:15509): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:15509): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:15509): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed
Segmentation fault (core dumped)
flaringo@flaringo:~$ 

Does anyone know why this happens? :confused:

#117

andrek said: Is there any solution to disable 'always on top' option in avant-window-navigator?

Not sure, but this may be in 'gconf-editor'. Try typing that in a terminal go from apps--->awn and see if there's an option to enable/disable it there. I'll come back and verify whether or not I see it in gconf-editor when I get home and have time to poke around on my box.

#118

I'm having a small problem with the default Affinity icon, is this because I'm using Xubuntu? There's no drag n drop features in Xubuntu, is there a way to add the launch icons to AWN by hand?

#119

Flaringo said: Does anyone know why this happens? :confused:

Sorry, I haven't a clue.

wh0rd said: I'm having a small problem with the default Affinity icon, is this because I'm using Xubuntu? There's no drag n drop features in Xubuntu, is there a way to add the launch icons to AWN by hand?

Open up /usr/share/applications and drag the launchers from there.

#120

andrek said: Is there any solution to disable 'always on top' option in avant-window-navigator?

I was able to find a auto-hide option using gconf-editor, but no always on top. Hope this helps. =]

#121

Great Work it looks promising!

Just started using awn and affinity and have a few questions I did not see in awn forums. Trying to get rid of gnome's tasks applet but?

AWN:

1) Tasks I have three apps open. Firefox,Terminal,gksudo nautilus.

. Firefox does not show up in tasks on right? But has popup on mouse-over of firefox icon. . Terminal same thing but no popup thumb. Just says orb@two0rivers: It is a transparent window. . Gksudo Nautilus No popup thumb on mouseover but in tasks on right.

In other words 3 apps 1 shows in awn tasks on right Gksudo Nautilus. 3 on mouseover of icon 2 without thumbs Terminal and Gksuso Nautilus.

How do we keep track of running apps? I mean in tasks applet I can see all apps running at a glance. In AWN I can't tell at glance what is running unless I mouseover ever Icon? Am I doing something wrong?

Affinity:

1) In Deskbar applet I can type in say some music : anna nalick and I get results. On Affinity nada nothing.

Am I again doing something wrong.

The music is on a fat32 drive with full privileges if that matters. Also tried xorg.conf which I also have copies on fat32 as well as default location nada,zilch

2) Why does affinity always close to systray when I am not done with it

3) If another apps is already running I click and go there. Affinity just runs another instance of itself. I mean if it already running shouldn't I be able to click the icon on awn and it opens from the one arlready running in systray without having to go to systray?

I know it is still very alphaish and hope to see it develop more. Keep up the great work.

#122

You know what apps are running in avant because either:

  1. Applications are on the right side of the separator
  2. An arrow is under a launcher
#123

You mean arrow means not running?

I am sorry but I have arrows under:

Gaim not running. Amarok not running Control Center not running k3b not running synaptic ppackage manger not running

No arrows under

ktorrent running no arrow Term running no arrow firefox running no arrow Gksudo Nautilus running but does have arrow and shows in awn tasks.?

#124

Are you using the svn version?

right click on the dock then Preferences > Task appereance > Task have arrows

#125

Thanks that did the trick.

#126

orb9220 said: Great Work it looks promising!

Just started using awn and affinity and have a few questions I did not see in awn forums. Trying to get rid of gnome's tasks applet but?

AWN:

1) Tasks I have three apps open. Firefox,Terminal,gksudo nautilus.

. Firefox does not show up in tasks on right? But has popup on mouse-over of firefox icon. . Terminal same thing but no popup thumb. Just says orb@two0rivers: It is a transparent window. . Gksudo Nautilus No popup thumb on mouseover but in tasks on right.

In other words 3 apps 1 shows in awn tasks on right Gksudo Nautilus. 3 on mouseover of icon 2 without thumbs Terminal and Gksuso Nautilus.

How do we keep track of running apps? I mean in tasks applet I can see all apps running at a glance. In AWN I can't tell at glance what is running unless I mouseover ever Icon? Am I doing something wrong?

Yeah, AWN's task handling isn't exactly stellar. My solution is to simply not use launchers, thus all icons are tasks.

Affinity:

1) In Deskbar applet I can type in say some music : anna nalick and I get results. On Affinity nada nothing.

Am I again doing something wrong.

The music is on a fat32 drive with full privileges if that matters. Also tried xorg.conf which I also have copies on fat32 as well as default location nada,zilch

2) Why does affinity always close to systray when I am not done with it

3) If another apps is already running I click and go there. Affinity just runs another instance of itself. I mean if it already running shouldn't I be able to click the icon on awn and it opens from the one arlready running in systray without having to go to systray?

I know it is still very alphaish and hope to see it develop more. Keep up the great work.

1) Did you install the appropriate -dev package for your search engine before you compiled? At the end of ./autogen.sh it should tell which engines are enabled.

2) If you move the cursor outside affinity, it closes. If affinity loses focus, it closes. Slightly annoying, but it does a good job a keeping it out of the way. ;)

3) Affinity doesn't prevent multiple launches yet. Best solution is to remove affinity from AWN and put it in your startup programs, then use the tray icon or the keybinding (CTRL+ALT+A is default) to access it.

#127

1) Did you install the appropriate -dev package for your search engine before you compiled? At the end of ./autogen.sh it should tell which engines are enabled.

I did not compile I installed from synaptic 0.1 svn43. I assumed that was taken care of.

Update: just right click properties of install dependencies show conflicts for:

affinity-beagle affinity-beagle-svn affinity-tracker

What is this about and why would I have conflicts installing thru synaptic? Any help is always appreciated.

#128

orb9220 said: I did not compile I installed from synaptic 0.1 svn43.

I assumed that was taken care of.

Update: just right click properties of install dependencies show conflicts for:

affinity-beagle affinity-beagle-svn affinity-tracker

What is this about and why would I have conflicts installing thru synaptic? Any help is always appreciated.

Which version of Ubuntu are you using? If it's feisty, you've got the wrong repo. Feisty's only has plain affinity and affinity-svn in it, which are compiled for tracker. As for conflicts, they're supposed to conflict in the edgy repo, since they provide different versions of the same thing, so you only need one. Just make sure it's the one for the search backend you're using, otherwise it won't work.

EDIT: Nevermind, I'm dumb. You're right about the conflicts, some shouldn't be there. I'm fixing this now. I'm also adding beagle support to the version in the feisty repos. Should have thought of that a while ago. ;)

EDITv2: Repo updated. Do a

sudo apt-get update
sudo apt-get install affinity-svn

to get the updated package.

#129

I'm really enjoying the Avant Window Manager.

I have one problem though. I added Thunderbird 2.0 to the launcher but when it launches it also adds one to the tasks on the right so I now have two Thunderbird icons. Is there a fix for this?

Thanks

#130

Thanks! reacocard

#131

Can this be added to the HOWTO?


sudo apt-get install beagle libbeagle0 beagle-dev libbeagle-dev

before you try to configure affinity you need to make sure the user has beagle or tracker

I'm fairly new so this on took me by suprise :)

thanks :)

Kev

#132

kgriffin said: Can this be added to the HOWTO?


sudo apt-get install beagle libbeagle0 beagle-dev libbeagle-dev

before you try to configure affinity you need to make sure the user has beagle or tracker

I'm fairly new so this on took me by suprise :)

thanks :)

Kev

There is already a small note below the apt line explaining this. I'll edit the guide to make it clearer.

EDIT: guide updated, and I also updated affinity-svn again to fix a packaging bug.

#133

Guys, i'm using the SVN version of this great dock in my x64 Feisty 7.04, and i just have one question, is there a option to autohide the dock or place it under windows, like the Cairo Dock ?

It's a bit anoying having it allways covering the bottom of my windows ](*,)

#134

Madwolf said: Guys, i'm using the SVN version of this great dock in my x64 Feisty 7.04, and i just have one question, is there a option to autohide the dock or place it under windows, like the Cairo Dock ?

It's a bit anoying having it allways covering the bottom of my windows ](*,)

Just turn on the 'auto_hide' option under apps -> avant-window-navigator in gconf-editor.

#135

Solved the problem :) thanks alot :wink:

#136
Reading state information... Done
Package affinity-beagle is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package affinity-beagle has no installation candidate

Same with the svn version...

#137

hanzomon4 said:

Reading state information... Done Package affinity-beagle is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package affinity-beagle has no installation candidate


Same with the svn version...

The feisty repo has just plain 'affinity' and 'affinity-svn'. Since libtrackerclient0 is in the repos now, there's no need to keep separate versions anymore. Stable affinity in feisty is tracker-only (I need to fix that), and the svn supports both.
#138

Well, I tried it, and I'll be honest, it need a good deal of work before I'll start to use it from day to day.

However, now I want to try gnome dock.

#139

I click on affinity preference and avant preference under system menu, nothing happens at all. I followed the steps accordingly, noticed NO errors.

What should I do? The affinity preference icon is not custom (its own), its a plain white icon too.

#140

reacocard said: Yep. sudo apt-get remove will do it.

If you still want to give AWN a shot, the new thread here is much more detailed: http://ubuntuforums.org/showthread.php?t=385981

I'm very new to ubuntu, got it installed (not the svn version :( ). But it dont work the way i like, so i want to uninstall it. And this code should work?

sudo apt-get remove avant-window-navigator or just sudo apt-get remove

??? :)

plz help this ubuntu noobie out ;D :lolflag:

p.s. cant test it, because i'm at work ;)

#141

TalkJesus said: I click on affinity preference and avant preference under system menu, nothing happens at all. I followed the steps accordingly, noticed NO errors.

What should I do? The affinity preference icon is not custom (its own), its a plain white icon too.

Did you use the repo, or compile from source? Stable or SVN? Also, what output does it give when you do

affinity-preferences

and

avant-preferences

in a terminal?

#142

I can confirm that reacocard's method to installing AWN-svn works. Using Feisty Fawn on the specs in my sig.

Thanks reacocard. :)

/izo

#143

thanks for this howto - it's absolutely wicked, ta

#144

So I tried the guide, I have beryl installed and I still get that black bar when I turn on AWN. I tried reinstalling a few times, still same problem, how do I fix it?

#145

reacocard said: Did you use the repo, or compile from source? Stable or SVN? Also, what output does it give when you do

affinity-preferences
avant-preferences

I did from source, not svn.

chad@Secured:~$ affinity-preferences /usr/local/share/affinity/window.glade Traceback (most recent call last): File "/usr/local/bin/affinity-preferences", line 277, in <module> app = main() File "/usr/local/bin/affinity-preferences", line 156, in __init__ self.setup_entry(SYS_SOFTWARE, self.wTree.get_widget("softwareentry")) File "/usr/local/bin/affinity-preferences", line 186, in setup_entry entry.set_text (text) TypeError: GtkEntry.set_text() argument 1 must be string, not None

chad@Secured:~$ avant-preferences /usr/local/share/avant-window-navigator/window.glade Traceback (most recent call last): File "/usr/local/bin/avant-preferences", line 267, in <module> app = main() File "/usr/local/bin/avant-preferences", line 152, in __init__ self.setup_chooser(APP_ACTIVE_PNG, self.wTree.get_widget("activefilechooser")) File "/usr/local/bin/avant-preferences", line 234, in setup_chooser chooser.set_filename(self.client.get_string(key)) TypeError: GtkFileChooser.set_filename() argument 1 must be string, not None

#146

TalkJesus said: I did from source, not svn.

chad@Secured:~$ affinity-preferences /usr/local/share/affinity/window.glade Traceback (most recent call last): File "/usr/local/bin/affinity-preferences", line 277, in <module> app = main() File "/usr/local/bin/affinity-preferences", line 156, in __init__ self.setup_entry(SYS_SOFTWARE, self.wTree.get_widget("softwareentry")) File "/usr/local/bin/affinity-preferences", line 186, in setup_entry entry.set_text (text) TypeError: GtkEntry.set_text() argument 1 must be string, not None

chad@Secured:~$ avant-preferences /usr/local/share/avant-window-navigator/window.glade Traceback (most recent call last): File "/usr/local/bin/avant-preferences", line 267, in <module> app = main() File "/usr/local/bin/avant-preferences", line 152, in __init__ self.setup_chooser(APP_ACTIVE_PNG, self.wTree.get_widget("activefilechooser")) File "/usr/local/bin/avant-preferences", line 234, in setup_chooser chooser.set_filename(self.client.get_string(key)) TypeError: GtkFileChooser.set_filename() argument 1 must be string, not None

Could you try the svn version please? Currently svn is actually more stable and less buggy than the stable version, especially for AWN. Be sure to 'sudo make uninstall' your current version before trying svn.

#147

I've uninstalled completely according to your first post and then did svn for both:

chad@Secured:~$ affinity-preferences /usr/local/share/affinity/window.glade Traceback (most recent call last): File "/usr/local/bin/affinity-preferences", line 285, in <module> app = main() File "/usr/local/bin/affinity-preferences", line 160, in __init__ self.setup_entry(SYS_SOFTWARE, self.wTree.get_widget("softwareentry")) File "/usr/local/bin/affinity-preferences", line 194, in setup_entry entry.set_text (text) TypeError: GtkEntry.set_text() argument 1 must be string, not None

chad@Secured:~$ avant-preferences /usr/local/share/avant-window-navigator/window.glade Traceback (most recent call last): File "/usr/local/bin/avant-preferences", line 267, in <module> app = main() File "/usr/local/bin/avant-preferences", line 152, in __init__ self.setup_chooser(APP_ACTIVE_PNG, self.wTree.get_widget("activefilechooser")) File "/usr/local/bin/avant-preferences", line 234, in setup_chooser chooser.set_filename(self.client.get_string(key)) TypeError: GtkFileChooser.set_filename() argument 1 must be string, not None

#148

Its working now thanks, just a small issue.

I'm guessing its obviously necessary to delete the default bottom panel, so I did that.

however, the avant bar is always on top. Is this normal? I have firefox open now and it still shows on top of firefox's bottom portion. This is annoying actually.

I actually thought that avant was more like osx's bar/widget where you launch applications from the icons in the bar. Is this not possible or is there some other widget for that entirely?

#149

TalkJesus said: Its working now thanks, just a small issue.

I'm guessing its obviously necessary to delete the default bottom panel, so I did that.

however, the avant bar is always on top. Is this normal? I have firefox open now and it still shows on top of firefox's bottom portion. This is annoying actually.

I actually thought that avant was more like osx's bar/widget where you launch applications from the icons in the bar. Is this not possible or is there some other widget for that entirely?

The bar is always on top, but you can set it to auto-hide if you prefer. Open gconf-editor and check the /apps/avant-window-navigator/auto_hide option.

For launchers, you should just be able to drag them onto AWN, either from the menus or from /usr/share/applications.

#150

Here is something weird I noticed. I dragged firefox from menu to AWN. If I open FF from AWN, it still shows its one icon there.

I did the same with Thunderbird, however it shows a new duplicate icon in AWN if I open it.

Bug?

#151

Serious bug, even after reboot suddenly I'm seeing this giant black background flickering sometimes

#152

I have a small widescreen monitor and love using the dock vertical and on the right hand edge of screen. Any news on when this feature would be implemented in AVN?

#153

TalkJesus said: Here is something weird I noticed. I dragged firefox from menu to AWN. If I open FF from AWN, it still shows its one icon there.

I did the same with Thunderbird, however it shows a new duplicate icon in AWN if I open it.

Bug?

Yeah, AWN's window/launcher handling isn't great. Basically, with firefox, the launcher is now doubling as the window icon (middle-click for a new window), but it didn't catch thunderbird so it made a new icon, instead of making the first do double duty as it's supposed to.

TalkJesus said: Serious bug, even after reboot suddenly I'm seeing this giant black background flickering sometimes

Do you have a compositing manager like beryl or compiz installed?

Kent84 said: I have a small widescreen monitor and love using the dock vertical and on the right hand edge of screen. Any news on when this feature would be implemented in AVN?

No, but there haven't been any upstream updates for a while, which is usually an indication that njpatel is working on something big.

#154

I'm using Beryl.

Anyway to place it on top instead of bottom?

#155

I want put it on top too. I have one the same issue reported here http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=138&page=1&isLive=true

I have one 8800gts and i dont have blur enable...

Any advice?

Thanks

#156

TalkJesus said: I'm using Beryl.

Anyway to place it on top instead of bottom?

codedmin said: I want put it on top too.

I have one the same issue reported here http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=138&page=1&isLive=true

I have one 8800gts and i dont have blur enable...

Any advice?

Thanks

There's currently no way to change the location of AWN, but it's a promised feature, so just stick around and it'll come. As for the bubble issue, I have no idea. I would suggest just following that thread, as that's where you're most likely to find someone who can solve the problem.

#157

hmm got it installed but didnt worked for me correctly. got it uninstalled, will try it later!

but i got something in my applications -> Accessorios ->affinity search, how do i get rid of that :s Dont know how i got it, bt how do i remove that....

tnx!

#158

XTREEM|RAGE said: but i got something in my applications -> Accessorios ->affinity search, how do i get rid of that :s

Dont know how i got it, bt how do i remove that....

This should take care of it:

sudo rm -f '/usr/share/applications/affinity.desktop'
sudo rm -f '/usr/local/share/applications/affinity.desktop'
#159

damnit! i'm getting a big black bar across the bottom of my screen...the dock is there, but not without a huge black bar.

#160

tekpunk said: damnit! i'm getting a big black bar across the bottom of my screen...the dock is there, but not without a huge black bar.

You need a compositor, like Beryl or Compiz.

#161

nope, still not working, not to mention that for some reason both beryl and compiz went retarded on me a while ago and now whenever i enable them the tops of my windows disappear, meaning that i can't close/minimize/maximize the windows unless i'm in metacity. how's that for a run-on sentence?

#162

How do you add launchers to AWN? Or u can't?

#163

I either drag them from the gnome panel i.e. Accessories -> Terminal onto AWN

or i have a folder in my home directory where I create custom Launchers (through right clicking on the desktop menu then moving them) and then dragging them on to AWN

in short, yes you can, just drag and drop.

#164

Hi,

I am not that familiar with unbuntu yet, but what is the next step? I went through all the steps as described, but how can I actually use the program?

Just

#165

Never mind, got it working! Gosh, I'm proud of myself.

#166

reacocard said: You need a compositor, like Beryl or Compiz.

Are the desktop effects not good enough, that u need beryl or some for it?

#167

I just installed the SVN version of avant (how's that for living on the edge eh?:) ) and it's pretty fuuting awesome! thanks for the info!

#168

I just installed the SVN. I deleted the task bar at the bottom of the screen. The question is how do I get the taskbar back?

#169

XTREEM|RAGE said: Are the desktop effects not good enough, that u need beryl or some for it?

Beryl/Compiz provide the compositing environment that makes these effects possible. They do not provide this effect (nor would a compositor need to provide *any* built-in effects), just the tools that AWN needs to create the effect.

ozorba said: I just installed the SVN. I deleted the task bar at the bottom of the screen.

The question is how do I get the taskbar back?

Right-click in some blank space on the remaining one and choose 'New Panel'. You'll have to add the applets back to it manually with right-click 'Add to panel...'.

#170

reacocard said:

Right-click in some blank space on the remaining one and choose 'New Panel'. You'll have to add the applets back to it manually with right-click 'Add to panel...'.

Easily said than done. I have nothing at the bottom of the screen. I deletede all, the Wastebasket, taskbar, etc.

I had to add the Wastebasket and the Workspace Switcher to the top gnome-panel. Is there a way of getting the bottom gnome-pannel back?

#171

ozorba said: Easily said than done. I have nothing at the bottom of the screen. I deletede all, the Wastebasket, taskbar, etc.

I had to add the Wastebasket and the Workspace Switcher to the top gnome-panel. Is there a way of getting the bottom gnome-pannel back?

By 'remaining one' I meant the top panel.

#172

reacocard said: By 'remaining one' I meant the top panel.

Thanks reacocard. I have got it back!

#173

tekpunk said: nope, still not working, not to mention that for some reason both beryl and compiz went retarded on me a while ago and now whenever i enable them the tops of my windows disappear, meaning that i can't close/minimize/maximize the windows unless i'm in metacity. how's that for a run-on sentence?

I experienced the same problem the first time I tried (being a noob myself and all). What worked for me is if I executed "beryl-manager". That brings up with menu to play around with all the settings. The one which toggles the window menu bars is called "Windows decorations". Good luck. I also found the Beryl official website very informative about how to install beryl & which packages I needed. (I used the beryl-ubuntu in the end).

#174

Thanks for the thought, but it's still doing the same thing. Since it happens in both compiz and beryl, i'm thinking that maybe it's some setting within metacity/gnome or something. I still can't figure out what it is though.

#175

Linux newb here with a quick question that I didn't see a definitive answer to when I went through this thread.

I compiled from source figuring that it would be a better shot that way, so I installed the dependencies listed in the how-to and then used:

svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator

It worked fine and I have AWN working just like I want it to. Basically a single viewport taskbar with autohide. :)

However, I figured I'd clean up the directory so I ran

make clean && make distclean

I *assume* that I'm going to need to uninstall AWN before I update it. Assuming this, will "sudo make uninstall" work for me even though I ran the previous 'clean' commands? Makefile.am and Makefile.in are in the directory, so I believe it will but I'd like a bit of confirmation on that.

Thanks for the great guide, btw. That was the first time I've ever had to compile anything before installing and it went off without a hitch. I think I'll go give Pidgin 2.0.0 a try now.

Edit: How do I change the timing of startup programs? I have AWN added to my sessions but it failed to load on a restart, my guess is because Beryl hadn't loaded yet. Edit2: Oops. It was a simple typo on my end.

#176

kpel said: Linux newb here with a quick question that I didn't see a definitive answer to when I went through this thread.

I compiled from source figuring that it would be a better shot that way, so I installed the dependencies listed in the how-to and then used:

svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator

It worked fine and I have AWN working just like I want it to. Basically a single viewport taskbar with autohide. :)

However, I figured I'd clean up the directory so I ran

make clean && make distclean

I *assume* that I'm going to need to uninstall AWN before I update it. Assuming this, will "sudo make uninstall" work for me even though I ran the previous 'clean' commands? Makefile.am and Makefile.in are in the directory, so I believe it will but I'd like a bit of confirmation on that.

Thanks for the great guide, btw. That was the first time I've ever had to compile anything before installing and it went off without a hitch. I think I'll go give Pidgin 2.0.0 a try now.

Edit: How do I change the timing of startup programs? I have AWN added to my sessions but it failed to load on a restart, my guess is because Beryl hadn't loaded yet. Edit2: Oops. It was a simple typo on my end.

'make uninstall' should work just fine. All 'make clean' does is remove the compiled files.

#177

Followed all the instructions on the first post, couldn't get it working though. Shame as I would like the eye candy. Oh well thanks anyway.

#178

hi, thanks for the guide. one thing though how do I run it ?? :P

I did all the steps but how do I run the avant app?

#179

hadiriazi said: hi,

thanks for the guide. one thing though how do I run it ?? :P

I did all the steps but how do I run the avant app?

I found it eventually,

Applications>Accessories

A little buggy to me, (maybe I just don't know how to use it properly). I'm quite reluctant to delete my bottom panel as it overlaps with the AVN. I found the right click properties to be near useless. Can't add show desktop icon, multiple workspaces, trash etc. Correct me if I'm wrong as I'd like to learn.

#180

The Pinny Parlour said: I found it eventually,

Applications>Accessories

A little buggy to me, (maybe I just don't know how to use it properly). I'm quite reluctant to delete my bottom panel as it overlaps with the AVN. I found the right click properties to be near useless. Can't add show desktop icon, multiple workspaces, trash etc. Correct me if I'm wrong as I'd like to learn.

It's still alpha software, you should expect bugs. It's also not designed with having another panel in the same place in mind.

You can't add stuff like Trash, Workspaces, etc. yet. Currently, there is no plugin system for AWN, but it is a promised feature. You can, however, find a few more options than are in the 'Properties' dialog in gconf-editor under apps->avant-window-navigator.

#181

jaywhy13 said: How do you add launchers to AWN? Or u can't?

Check your /home folder in Nautilus, press CTRL+H to enable view hidden folders/files, if you have a .avant folder simply add .desktop files or launchers of what ever applications you want to be added, if not create a .avant folder and add your necessary launchers to it. This should get you what you want. Hope it helps. =]

#182

hey when installed it it looks great apart from the big black boz filling up 1/6 of ma screen...

#183

henrylegg said: hey when installed it it looks great apart from the big black boz filling up 1/6 of ma screen...

You need a composite manager running. (ie. Compiz or Beryl.)

#184

thanks for this howto! it's really amazing!

one slight problem - i load up my dock with app launchers and all is well until i log out and then log back in again and the dock is empty, thus requiring me to fill it up again! any ideas?

EDIT: having look the entry in gconfeditor as per the avant wiki, the entry listing the launchers has hundreds of (duplicate) entries - seemingly persisting from each time I re-fill the dock

#185

jonny_boy27 said: thanks for this howto! it's really amazing!

one slight problem - i load up my dock with app launchers and all is well until i log out and then log back in again and the dock is empty, thus requiring me to fill it up again! any ideas?

EDIT: having look the entry in gconfeditor as per the avant wiki, the entry listing the launchers has hundreds of (duplicate) entries - seemingly persisting from each time I re-fill the dock

Check about 2-3 posts up regarding my post about the .avant folder within your home folder. =]

#186

I am running the svn vesion of awn. When I run gconf editor, there is no auto-hide option anywhere.

I used to be able to run terminal over another window, like firefox and have the terminal window have my desktop wallpaper show through, with a slight transparency. Now that I am running compiz, it does not do this anymore. I get the terminal window over the firefox window with a transparency. Makes it difficult to use the terminal unless I minimize firefox.

Someone else posted they were going to try gnome dock. Where or how do you get it? I was trying to find that a couple weeks ago. All I really want is an osx like dock to show my running apps, and gnome dock seemed to be something that I wanted to try.

Also, (sorry for all the questions), when I run thunderbird and firefox, I only ever see 1 icon in awn. Firefox is active now, so I only see the thunderbird icon. If I minimize firefox, I still only see the thunderbird icon. The only way I have found to get the firefox icon to show up, is to start avant preferences.

When I right-click over the awn bar, nothing happens.

Thanks, Ziffnabb

#187

notwen said: Check about 2-3 posts up regarding my post about the .avant folder within your home folder. =]

yeah, I read that. probably should have mentioned in my post that I tried this and it didn't work!

#188

o rgith dont compiz and beryl dont like ma sis 741/740/641 vga graphics is there any which will run it without needing 3d stuff?

#189

jonny_boy27 said: yeah, I read that. probably should have mentioned in my post that I tried this and it didn't work!

Have you tried saving your session after getting the proper application launchers added to the AWN dock? Not sure that'll fix it, but worth a try. After you get your launchers in place go to System--->Preferences--->Sessions. Save your session and reboot. You may also want to close all running ups before you save your session, unless you want those apps to be open when you reboot. =]

#190

henrylegg said: o rgith dont compiz and beryl dont like ma sis 741/740/641 vga graphics is there any which will run

it without needing 3d stuff?

Not really. The closest I know of is the StarterBar from gDesklets, but it's launchers only, no tasks.

#191

@notwen

strangely enough.... when i logged out and logged back in it didnt seem to work.

but after a shutdown and reboot all is well! Thanks!

#192

hello

nice thing. and now i'm using nvidia twinview, with tv out. awn appears on the wrong screen, , i want awn in the middle of my laptop lcd instead the tv when running twinview. and i couldn't find a way to adjust it. neither in the prefernces nor in gconf-editor... as there any?

#193

hihihi said: hello

nice thing. and now i'm using nvidia twinview, with tv out. awn appears on the wrong screen, , i want awn in the middle of my laptop lcd instead the tv when running twinview. and i couldn't find a way to adjust it. neither in the prefernces nor in gconf-editor... as there any?

Check the force_monitor option in gconf, then set monitor_height and _width to the values for your LCD.

#194

thank you very much for your fast reply and the good hint. I followed your tip, went to gconf-ed and checked force monitor option. the width of lcd was already nicely listed, 1280. but this is what causes the awn appearing on the tv screen. so what i did was the following: twinview=(lcd:)1280+(tv:)1024=2304 width. but this still does not help, awn appears now in lcd screen but not in the middle. so i did than assume that awn thinks that the tv is the main screen and intuitively i did: 2304+1024 (which is (lcd)+2x(tv)) and now awn is in the middle of my lcd. perhaps this tells you more. thanks a lot for this nice funny handy thing. ciao

#195

Well I quess i wil ask here since I can't find in awn forums or wiki.

1) Able to turn off bouncing icons? 2) Where to find descriptions of awn settings in gconf? Like Panel_mode what is it and what does it do?

#196

orb9220 said: Well I quess i wil ask here since I can't find in awn forums or wiki.

1) Able to turn off bouncing icons? 2) Where to find descriptions of awn settings in gconf? Like Panel_mode what is it and what does it do?

1) Nope, file a feature request on the google code page if you really want it. 2) I don't think there's a list anywhere, but I know a lot of them. panel_mode makes AWN acts like a panel, ie. windows won't go behind it anymore when maximized.

#197

Thank for the response kind sir!

#198

I just installed AWN from the repos, enabled "desktop effects", but it replaces the big black bar with the dock on top of it with a big white bar with nothing.

Any ideas?

#199

deevus said: I just installed AWN from the repos, enabled "desktop effects", but it replaces the big black bar with the dock on top of it with a big white bar with nothing.

Any ideas?

Don't start AWN until after Desktop Effects are on.

#200

why it has beryl in dependencies? i prefer compiz than beryl...

#201

Paool said: why it has beryl in dependencies? i prefer compiz than beryl...

It's not in depends, just recommends (compiz is recommended too).

#202

I am following the guide at the beginning of this thread but i get this error when trying to dowload svn:

guillermo@guillermo-desktop:~/avant$ svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator svn: requerimiento REPORT falló en '/svn/!svn/vcc/default'svn: REPORT de '/svn/!svn/vcc/default': 400 Bad Request (http://avant-window-navigator.googlecode.com)

Someone help me please...

#203

profediego said: I am following the guide at the beginning of this thread but i get this error when trying to dowload svn:

guillermo@guillermo-desktop:~/avant$ svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator svn: requerimiento REPORT falló en '/svn/!svn/vcc/default'svn: REPORT de '/svn/!svn/vcc/default': 400 Bad Request (http://avant-window-navigator.googlecode.com)

Someone help me please...

It's working fine here. Could you try again? Maybe the server was down when you tried.

#204

i ve been trying since i post here... its not working for me... i ll try tomorrow and let you know thank you!!

#205

Avant WN wont remember what I drag into the bar manually. I read somewhere bout making a .avant folder under home folder I tried that and didnt work... Help appreciated

#206

Avant WN wont remember what I drag into the bar manually. I read somewhere bout making a .avant folder under home folder I tried that and didnt work... Help appreciated

I had the same problem too.

Then I found out, that when you drag a .desktop file to AWN, it doesn't actually copy it somewhere, in its own folder or something. It just makes a list in Gconf with the dropped applications and their locations. So if you remove your desktop icon, it won't be available in AWN, because it just doesn't exist any more.

You can see the list in Gconf--> apps-->avant-window-navigator-->app

I just dragged the application I want from the gnome menu. Those icons sit under /usr/share/applications and they will disappear only, if you remove your application from the pc.

#207

Thanks, works perfectly :)

#208

Im having trouble switching java and wine apps.

For example, I click on a wine app, then when I want to switch to an application that is already restored It wont let me do this. I have to minimize the wine app so I can switch to another app. This happen on the last update of the svn version.

Any help would be appreciated

#209

finally i tried your svn tutorial and this baby worked like a charm :D tnx for this ;D

#210

I followed the instructions at the beginning but couldn't get it to work. This is what I see in the terminal:

/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...


Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...


Running autoheader...


Running automake-1.9...


Processing ./avant-window-navigator/configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.
Putting files in AC_CONFIG_AUX_DIR, `..'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...

intltoolize: 'po/Makefile.in.in' is out of date: use '--force' to overwrite

I see that something is up with glib gettexize in there, but I don't know what to do. I tried sudo apt-get install libdbus-glib-1-dev and to run it again, but it didn't work. I'm kind of new to this stuff. Any Ideas?

edit2: Ok, I just ran install of avant in synaptic, which should be no different than apt-get and it installed and I have the little black dock box at the bottom. Now to figure out why I can't drag stuff onto it. I'm just finding all sorts of problems for myself today.

Edit3: Yay got those working too, everything is good. Program is awesome.

#211

Getting errors when I run ./autogen.sh (using Avant svn method)

conf-2.0 x11 xproto dbus-glib-1) were not met:

No package 'libwnck-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config.

#212

TalkJesus said: Getting errors when I run ./autogen.sh

(using Avant svn method)

conf-2.0 x11 xproto dbus-glib-1) were not met:

No package 'libwnck-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config.

Did you install the dependencies? It sounds like it's missing libwnck-dev.

#213

Hi! This is what I get when I do the ./autogen

/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...


Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...


Running autoheader...


Running automake-1.9...


Running ./configure --enable-maintainer-mode ...

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for intltool >= 0.34... 0.35.5 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  cs da de_DE el_GR en_GB fi_FI fr_FR it_IT pt_BR ru
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.7... yes
checking for GLIB - version >= 2.8.0... yes (version 2.12.11)
checking for AWN... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating avant-preferences/Makefile
config.status: creating src/Makefile
config.status: creating data/Makefile
config.status: creating data/active/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands
Now type `make' to compile avant-panel-menu

Then I do "make" and this is what I get:

make  all-recursive
make[1]: Entering directory `/home/sinner/avant-window-navigator'
Making all in src
make[2]: Entering directory `/home/sinner/avant-window-navigator/src'
/bin/bash ../libtool --mode=execute /usr/bin/dbus-binding-tool --prefix=awn_task_manager --mode=glib-server --output=awn-dbus-glue.h awn-dbus.xml
make  all-am
make[3]: Entering directory `/home/sinner/avant-window-navigator/src'
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DORBIT2=1 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/libwnck-1.0 -I/usr/include/gnome-desktop-2.0 -I/usr/include/libgnomeui-2.0 -I/usr/include/startup-notification-1.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gnome-keyring-1 -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 -I/usr/include/libxml2 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include    -DDATADIR=\""/usr/local/share"\" -DGNOMELOCALEDIR=\""/usr/local/share/locale"\"   -g -O2 -Wall -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2 -MT awn-task-manager.o -MD -MP -MF ".deps/awn-task-manager.Tpo" -c -o awn-task-manager.o awn-task-manager.c; \
        then mv -f ".deps/awn-task-manager.Tpo" ".deps/awn-task-manager.Po"; else rm -f ".deps/awn-task-manager.Tpo"; exit 1; fi
/bin/bash ../libtool --tag=CC --mode=link gcc  -g -O2 -Wall -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2   -o avant-window-navigator  main.o awn-gconf.o awn-bar.o awn-app.o awn-hotspot.o awn-marshallers.o awn-win-manager.o awn-title.o awn-task.o awn-task-manager.o awn-window.o awn-x.o awn-utils.o xutils.o -Wl,--export-dynamic -pthread -lwnck-1 -lgnome-desktop-2 -lgnomeui-2 -lSM -lICE -lstartup-notification-1 -lbonoboui-2 -lgnome-keyring -lgnomecanvas-2 -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lgnome-2 -lpopt -lbonobo-2 -lbonobo-activation -lgnomevfs-2 -lgmodule-2.0 -ldl -lgconf-2 -lORBit-2 -lgthread-2.0 -lrt -lX11 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0                                      
gcc -g -O2 -Wall -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2 -o avant-window-navigator main.o awn-gconf.o awn-bar.o awn-app.o awn-hotspot.o awn-marshallers.o awn-win-manager.o awn-title.o awn-task.o awn-task-manager.o awn-window.o awn-x.o awn-utils.o xutils.o -Wl,--export-dynamic -pthread  -lwnck-1 -lgnome-desktop-2 /usr/lib/libgnomeui-2.so -lSM -lICE -lstartup-notification-1 /usr/lib/libbonoboui-2.so /usr/lib/libgnome-keyring.so /usr/lib/libgnomecanvas-2.so /usr/lib/libart_lgpl_2.so /usr/lib/libpangoft2-1.0.so /usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so /usr/lib/libgdk_pixbuf-2.0.so -lm /usr/lib/libpangocairo-1.0.so -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes /usr/lib/libpango-1.0.so /usr/lib/libcairo.so /usr/lib/libgnome-2.so /usr/lib/libpopt.so /usr/lib/libbonobo-2.so /usr/lib/libbonobo-activation.so /usr/lib/libgnomevfs-2.so /usr/lib/libgmodule-2.0.so -ldl /usr/lib/libgconf-2.so /usr/lib/libORBit-2.so /usr/lib/libgthread-2.0.so -lrt -lX11 -ldbus-glib-1 -ldbus-1 /usr/lib/libgobject-2.0.so /usr/lib/libglib-2.0.so
make[3]: Leaving directory `/home/sinner/avant-window-navigator/src'
make[2]: Leaving directory `/home/sinner/avant-window-navigator/src'
Making all in data
make[2]: Entering directory `/home/sinner/avant-window-navigator/data'
Making all in active
make[3]: Entering directory `/home/sinner/avant-window-navigator/data/active'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/sinner/avant-window-navigator/data/active'
make[3]: Entering directory `/home/sinner/avant-window-navigator/data'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/sinner/avant-window-navigator/data'
make[2]: Leaving directory `/home/sinner/avant-window-navigator/data'
Making all in po
make[2]: Entering directory `/home/sinner/avant-window-navigator/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/sinner/avant-window-navigator/po'
Making all in avant-preferences
make[2]: Entering directory `/home/sinner/avant-window-navigator/avant-preferences'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/sinner/avant-window-navigator/avant-preferences'
make[2]: Entering directory `/home/sinner/avant-window-navigator'
make[2]: Leaving directory `/home/sinner/avant-window-navigator'
make[1]: Leaving directory `/home/sinner/avant-window-navigator'

Then sudo make install

Making install in src
make[1]: Entering directory `/home/sinner/avant-window-navigator/src'
make  install-am
make[2]: Entering directory `/home/sinner/avant-window-navigator/src'
make[3]: Entering directory `/home/sinner/avant-window-navigator/src'
test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin"
  /bin/bash ../libtool --mode=install /usr/bin/install -c 'avant-window-navigator' '/usr/local/bin/avant-window-navigator'
/usr/bin/install -c avant-window-navigator /usr/local/bin/avant-window-navigator
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/sinner/avant-window-navigator/src'
make[2]: Leaving directory `/home/sinner/avant-window-navigator/src'
make[1]: Leaving directory `/home/sinner/avant-window-navigator/src'
Making install in data
make[1]: Entering directory `/home/sinner/avant-window-navigator/data'
Making install in active
make[2]: Entering directory `/home/sinner/avant-window-navigator/data/active'
make[3]: Entering directory `/home/sinner/avant-window-navigator/data/active'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/avant-window-navigator/active" || mkdir -p -- "/usr/local/share/avant-window-navigator/active"
 /usr/bin/install -c -m 644 'glow.png' '/usr/local/share/avant-window-navigator/active/glow.png'
 /usr/bin/install -c -m 644 'glow2.png' '/usr/local/share/avant-window-navigator/active/glow2.png'
 /usr/bin/install -c -m 644 'glow3.png' '/usr/local/share/avant-window-navigator/active/glow3.png'
 /usr/bin/install -c -m 644 'glow4.png' '/usr/local/share/avant-window-navigator/active/glow4.png'
 /usr/bin/install -c -m 644 'glow5.png' '/usr/local/share/avant-window-navigator/active/glow5.png'
 /usr/bin/install -c -m 644 'glow6.png' '/usr/local/share/avant-window-navigator/active/glow6.png'
 /usr/bin/install -c -m 644 'glow7.png' '/usr/local/share/avant-window-navigator/active/glow7.png'
 /usr/bin/install -c -m 644 'glow8.png' '/usr/local/share/avant-window-navigator/active/glow8.png'
 /usr/bin/install -c -m 644 'glow9.png' '/usr/local/share/avant-window-navigator/active/glow9.png'
make[3]: Leaving directory `/home/sinner/avant-window-navigator/data/active'
make[2]: Leaving directory `/home/sinner/avant-window-navigator/data/active'
make[2]: Entering directory `/home/sinner/avant-window-navigator/data'
make[3]: Entering directory `/home/sinner/avant-window-navigator/data'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/applications" || mkdir -p -- "/usr/local/share/applications"
 /usr/bin/install -c -m 644 'avant-window-navigator.desktop' '/usr/local/share/applications/avant-window-navigator.desktop'
test -z "/usr/local/share/avant-window-navigator" || mkdir -p -- "/usr/local/share/avant-window-navigator"
 /usr/bin/install -c -m 644 'avant-window-navigator.svg' '/usr/local/share/avant-window-navigator/avant-window-navigator.svg'
 /usr/bin/install -c -m 644 'avant-window-navigator-24.png' '/usr/local/share/avant-window-navigator/avant-window-navigator-24.png'
 /usr/bin/install -c -m 644 'avant-window-navigator-48.png' '/usr/local/share/avant-window-navigator/avant-window-navigator-48.png'
make[3]: Leaving directory `/home/sinner/avant-window-navigator/data'
make[2]: Leaving directory `/home/sinner/avant-window-navigator/data'
make[1]: Leaving directory `/home/sinner/avant-window-navigator/data'
Making install in po
make[1]: Entering directory `/home/sinner/avant-window-navigator/po'
/home/sinner/avant-window-navigator/install-sh -d /usr/local/share/locale
linguas="cs da de_DE el_GR en_GB fi_FI fr_FR it_IT pt_BR ru "; \
        for lang in $linguas; do \
          dir=/usr/local/share/locale/$lang/LC_MESSAGES; \
          /home/sinner/avant-window-navigator/install-sh -d $dir; \
          if test -r $lang.gmo; then \
            /usr/bin/install -c -m 644 $lang.gmo $dir/avant-window-navigator.mo; \
            echo "installing $lang.gmo as $dir/avant-window-navigator.mo"; \
          else \
            /usr/bin/install -c -m 644 ./$lang.gmo $dir/avant-window-navigator.mo; \
            echo "installing ./$lang.gmo as" \
                 "$dir/avant-window-navigator.mo"; \
          fi; \
          if test -r $lang.gmo.m; then \
            /usr/bin/install -c -m 644 $lang.gmo.m $dir/avant-window-navigator.mo.m; \
            echo "installing $lang.gmo.m as $dir/avant-window-navigator.mo.m"; \
          else \
            if test -r ./$lang.gmo.m ; then \
              /usr/bin/install -c -m 644 ./$lang.gmo.m \
                $dir/avant-window-navigator.mo.m; \
              echo "installing ./$lang.gmo.m as" \
                   "$dir/avant-window-navigator.mo.m"; \
            else \
              true; \
            fi; \
          fi; \
        done
installing cs.gmo as /usr/local/share/locale/cs/LC_MESSAGES/avant-window-navigator.mo
installing da.gmo as /usr/local/share/locale/da/LC_MESSAGES/avant-window-navigator.mo
installing de_DE.gmo as /usr/local/share/locale/de_DE/LC_MESSAGES/avant-window-navigator.mo
installing el_GR.gmo as /usr/local/share/locale/el_GR/LC_MESSAGES/avant-window-navigator.mo
installing en_GB.gmo as /usr/local/share/locale/en_GB/LC_MESSAGES/avant-window-navigator.mo
installing fi_FI.gmo as /usr/local/share/locale/fi_FI/LC_MESSAGES/avant-window-navigator.mo
installing fr_FR.gmo as /usr/local/share/locale/fr_FR/LC_MESSAGES/avant-window-navigator.mo
installing it_IT.gmo as /usr/local/share/locale/it_IT/LC_MESSAGES/avant-window-navigator.mo
installing pt_BR.gmo as /usr/local/share/locale/pt_BR/LC_MESSAGES/avant-window-navigator.mo
installing ru.gmo as /usr/local/share/locale/ru/LC_MESSAGES/avant-window-navigator.mo
make[1]: Leaving directory `/home/sinner/avant-window-navigator/po'
Making install in avant-preferences
make[1]: Entering directory `/home/sinner/avant-window-navigator/avant-preferences'
make[2]: Entering directory `/home/sinner/avant-window-navigator/avant-preferences'
sed -e "s|\@PKGDATADIR\@|/usr/local/share/avant-window-navigator|g" avant-preferences.in.py > avant-preferences.py
/usr/bin/install -c -m 755 avant-preferences.py /usr/local/bin/avant-preferences
test -z "/usr/local/share/applications" || mkdir -p -- "/usr/local/share/applications"
 /usr/bin/install -c -m 644 'avant-preferences.desktop' '/usr/local/share/applications/avant-preferences.desktop'
test -z "/usr/local/share/avant-window-navigator" || mkdir -p -- "/usr/local/share/avant-window-navigator"
 /usr/bin/install -c -m 644 'window.glade' '/usr/local/share/avant-window-navigator/window.glade'
make[2]: Leaving directory `/home/sinner/avant-window-navigator/avant-preferences'
make[1]: Leaving directory `/home/sinner/avant-window-navigator/avant-preferences'
make[1]: Entering directory `/home/sinner/avant-window-navigator'
make[2]: Entering directory `/home/sinner/avant-window-navigator'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/sinner/avant-window-navigator'
make[1]: Leaving directory `/home/sinner/avant-window-navigator'

I'm no expert but I think something went wrong already. I still try to run it with the terminal and AWN opens. But when I close the terminal AWN closes to. What am I missing?

Sorry for all the code but I was looking for a post with the same problem as me but got tired in page 13 :(

#214

ilowtf said: Hi!

This is what I get when I do the ./autogen

<snippity>

I'm no expert but I think something went wrong already. I still try to run it with the terminal and AWN opens. But when I close the terminal AWN closes to. What am I missing?

Sorry for all the code but I was looking for a post with the same problem as me but got tired in page 13 :(

Closing with the terminal is normal, it happens to all programs. Just either launch it by it's menu entry (Applications -> Accessories -> Avant Window Navigator), or use alt+f2 and enter 'avant-window-navigator'.

#215

Any plans to add a "hide" function?

#216

TalkJesus said: Any plans to add a "hide" function?

It's already implemented, just open gconf-editor and check the auto_hide option under apps -> avant-window-navigator.

#217

Thanks for the help. Is there a way to make AWN not to show the applications that are open? I only want it to show launchers.

#218

ilowtf said: Thanks for the help. Is there a way to make AWN not to show the applications that are open? I only want it to show launchers.

Not currently. You should file a feature request on AWN's home page. (Issues tab)

#219

Woul be nice to be able to deifne the position of the dock: top or bottom of screen (and why not sides, tho i wouldnt use it).

By the way, is there a way to get awn to be smaller? I find icons just too big.

#220

hype said: Woul be nice to be able to deifne the position of the dock: top or bottom of screen (and why not sides, tho i wouldnt use it).

By the way, is there a way to get awn to be smaller? I find icons just too big.

No on both counts, but I think they're both planned features (or at least so frequently wished-for they should be).

#221

Really enjoying AWN makes a nice change from the modded gnome-panel I was using before. Just one question though, I installed the svn version from source, so if I wanted to upgrade to a newer release how would I go about it?

Would it mean having to uninstall first and then download the new source files, compile and install again? If so does that mean it will lose it's configuration of launchers etc. ?

Thanks!

#222

strumluff said: Really enjoying AWN makes a nice change from the modded gnome-panel I was using before. Just one question though, I installed the svn version from source, so if I wanted to upgrade to a newer release how would I go about it?

Would it mean having to uninstall first and then download the new source files, compile and install again? If so does that mean it will lose it's configuration of launchers etc. ?

Thanks!

It's much easier than that. Just go to your source directory (it has a Makefile in it), open a terminal there and enter

svn up

That'll update the source to the latest version. Then just follow the compilation as normal, starting from ./autogen.sh. No need to uninstall first, although it's not a bad idea. (just do 'sudo make uninstall' *before* svn up, if you want to do it)

#223

Is there any way to get a Zoom effect on the navator?

#224

Fylk said: Is there any way to get a Zoom effect on the navator?

Not yet, and it hasn't been requested yet, so you may want to file a feature request for it here: http://code.google.com/p/avant-window-navigator/issues/list

#225

strumluff said: Really enjoying AWN makes a nice change from the modded gnome-panel I was using before. Just one question though, I installed the svn version from source, so if I wanted to upgrade to a newer release how would I go about it?

Would it mean having to uninstall first and then download the new source files, compile and install again? If so does that mean it will lose it's configuration of launchers etc. ?

Thanks!

Or you could follow de steps described here http://awn.wetpaint.com/page/Ubuntu+Feisty+Repository and just do "sudo apt-get install avant-window-navigator-svn". You'll always be up-to-date with the latest development release.

#226

Excellent thanks for the tips.

hpalma does that repo have amd64 packages?

Cheers

#227

strumluff said: Excellent thanks for the tips.

hpalma does that repo have amd64 packages?

Cheers

Don't know, sorry. I use the 32bits flavoured Ubuntu. Anyway, you could just try adding the repo and see if the package shows up...

Oh, and you also have affinity on that repo.....Affinity rocks :o)

#228

strumluff said: Excellent thanks for the tips.

hpalma does that repo have amd64 packages?

Cheers

No 64-bit, I don't have a 64-bit processor to build on. You could apt-get the source and rebuild it from that though. Add only the deb-src line to your sources.list, and do an apt-get update. Open a terminal, cd to an empty folder, and do

sudo apt-get build-dep exaile
sudo apt-get install fakeroot
apt-get source exaile
cd exaile-0.2.9/
dpkg-buildpackage -rfakeroot

that should build an exaile deb in the directory you did apt-get source in. If this works for you, post your deb so other 64-bit users can enjoy it.

#229

Nice idea reacocard, were you just using Exaile as an example? I take it I would use this for awn:


sudo apt-get build-dep avant-window-navigator-svn
sudo apt-get install fakeroot
apt-get source avant-window-navigator-svn
cd avant-window-navigator/
dpkg-buildpackage -rfakeroot
#230

strumluff said: Nice idea reacocard, were you just using Exaile as an example?

I take it I would use this for awn:


sudo apt-get build-dep avant-window-navigator-svn
sudo apt-get install fakeroot
apt-get source avant-window-navigator-svn
cd avant-window-navigator/
dpkg-buildpackage -rfakeroot

Oops. I'd just been reading another thread on Exaile, musta got mixed up. :lolflag:

Yes, that'll work for AWN (and most other packages too), although the cd will be different (they'll only be one new dir, so that shouldn't hard to figure out). Just add the appropriate deb-src line and you're good to go. Let me know if you have any dependency issues, I think I got them all, but I may have missed one.

#231

I cannot install Affinity or Avant. I get an error message while typing ./autogen.sh (for the svn version; I tried the stable, but it would not work). Here is the message:

checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... configure: error: Package requirements (gnome-vfs-2.0 gtk+-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto gnome-desktop-2.0 ) were not met:

No package 'gnome-vfs-2.0' found
No package 'gtk+-2.0' found
No package 'libgnome-2.0' found
No package 'gnome-vfs-2.0' found
No package 'gconf-2.0' found
No package 'x11' found
No package 'xproto' found
No package 'gnome-desktop-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DEPS_CFLAGS
and DEPS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

I am running Ubuntu Feisty Fawn. This is the same type of error message I got on both Affinity and AWN. I can't figure out what is wrong with this. Any suggestions? Thanks in advance!

#232

TheFoe92 said: I cannot install Affinity or Avant. I get an error message while typing ./autogen.sh (for the svn version; I tried the stable, but it would not work). Here is the message:

checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... configure: error: Package requirements (gnome-vfs-2.0 gtk+-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto gnome-desktop-2.0 ) were not met:

No package 'gnome-vfs-2.0' found
No package 'gtk+-2.0' found
No package 'libgnome-2.0' found
No package 'gnome-vfs-2.0' found
No package 'gconf-2.0' found
No package 'x11' found
No package 'xproto' found
No package 'gnome-desktop-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DEPS_CFLAGS
and DEPS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

I am running Ubuntu Feisty Fawn. This is the same type of error message I got on both Affinity and AWN. I can't figure out what is wrong with this. Any suggestions? Thanks in advance!

Looks like you forgot to install the dependencies. Here's the apt-get lines for them (again):

Avant:

sudo apt-get install build-essential autotools-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf subversion gnome-common

Affinity:

sudo apt-get install build-essential autotools-dev libgnome-vfs-dev libgtk2.0-dev  libgnome2-dev libgnome-desktop-dev libgnomevfs2-0 libgtk2.0-0 libgnome2-0 libgnome-desktop-2 libpanel-applet2-dev libtrackerclient-dev libbeagle-dev subversion
#233

reacocard said: Looks like you forgot to install the dependencies. Here's the apt-get lines for them (again):

Avant:

sudo apt-get install build-essential autotools-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf subversion gnome-common

Affinity:

sudo apt-get install build-essential autotools-dev libgnome-vfs-dev libgtk2.0-dev  libgnome2-dev libgnome-desktop-dev libgnomevfs2-0 libgtk2.0-0 libgnome2-0 libgnome-desktop-2 libpanel-applet2-dev libtrackerclient-dev libbeagle-dev subversion

I did that and all it says is that I already have everything running the newest version.

#234

I did that and all it says is that I already have everything running the newest version.

checking for pkg-config... /usr/local/bin/pkg-config


Um, why is pkg-config in /usr/local/bin? It should be in /usr/bin.
#235

It has been stated elsewhere that middle-clicking the mouse should launch another instance of an already-open application. When I try this, nothing happens. It is entirely possible that this is because my mouse isn't configured properly primarily because I would have no idea (a) how to do this or (b) how to determine that it has been configured properly.

I did try System -> Preferences -> Mouse, but there wasn't anything there regarding the functionality of the buttons.

I know some people have reported success with the middle-click.

Has anyone else had any middle-clicking problems or is my mouse just being retarded?

Thanks.

PS - Thanks to all for your work on AWN. It is basically the bomb. word.

EDIT For some reason this now works. I did try the gconf-editor approach, but there was nothing there that seemed to regulate mouse clicks. To my knowledge, I didn't actually change a thing. All I did was go away for the weekend.....

#236

Not positive, but this may be located in your AWN prefs under gconf-editor. Simply type "gconf-editor" in a terminal and locate AWN under Apps. Good Luck. =]

#237

russbuss : yep my middle click is launching new instances

also, with the stable version....howto change the height? or specify how many pixels of the upper portion of the bar i want to peek up over the bottom of the screen when it is hidding down below the edge.

#238

airtonix said: also, with the stable version....howto change the height? or specify how many pixels of the upper portion of the bar i want to peek up over the bottom of the screen when it is hidding down below the edge.

Neither of those are possible yet.

#239

I installed affinity from the repos on Feisty and it seems to recognize only Tracker but not Beagle and tracker AFAIK does not index chat conversations etc.. So how do i get affinity to use beagle?

Edit: I tried the stable version and it gave me a core dump..so am using the svn version

#240

groo028 said: I installed affinity from the repos on Feisty and it seems to recognize only Tracker but not Beagle and tracker AFAIK does not index chat conversations etc.. So how do i get affinity to use beagle?

Edit: I tried the stable version and it gave me a core dump..so am using the svn version

hm, it appears that if it is compiled with support for both (as the repo is), it defaults to just Tracker. I'll file this bug upstream, thanks for finding it.

#241

reacocard said: Um, why is pkg-config in /usr/local/bin? It should be in /usr/bin.

Hmm. How do I install it there?

#242

TheFoe92 said: Hmm. How do I install it there?

Well it should already be there. If

ls /usr/bin | grep pkg-config

gives you 'pkg-config' in it's output, it should be safe to just

sudo rm /usr/local/bin/pkg-config

is it doesn't give 'pkg-config', then things could get tricky.

#243

After the installation when i start the avant-window-navigator the bottom of the screen is black as in the below image.

[img]http://img396.imageshack.us/img396/963/screenshot1sg1.png[/img]

#244

...you need to be running a compositor such as beryl or compiz if you have a black bar

#245

Even while running the compositors like Beryl or Compiz i get the Black bar how do i correct it.

#246

anandanbu said: Even while running the compositors like Beryl or Compiz i get the Black bar how do i correct it.

Are you sure they're working properly? If your compositor is working there should be no black bar, period.

#247

I can't understand what you ask by asking whether the compositor is working properly for me are not i have installed the beryl successfully and its running fine and once i start the awn the black screen as shown in the screenshot appears Could you help me with it. :)

#248

anandanbu said: I can't understand what you ask by asking whether the compositor is working properly for me are not

i have installed the beryl successfully and its running fine and once i start the awn the black screen as shown in the screenshot appears Could you help me with it. :)

If Beryl is fine, then I'm afraid I have no idea what's causing this. A malfunctioning/non-existent compositor is the only thing I know of that causes that black bar. Sorry I can't be of more help.

#249

anandanbu said: I can't understand what you ask by asking whether the compositor is working properly for me are not

i have installed the beryl successfully and its running fine and once i start the awn the black screen as shown in the screenshot appears Could you help me with it. :)

What happens when you run Cairo clock? Can you take a screenshot of Awn and Cairo-clock running at the same time.

Thanks,

Neil

Edit:

Also, I can't help but notice that Beryl Manager is not running in the notification area. I know you can run Beryl without running Beryl Manager, but are you sure it is running? It may an idea to to start Beryl Manager, make sure you have window shadows etc, and then start Awn.

#250

I seem to have a really basic problem... How do you add apps to AWN? Drag-n-Drop from the applications menu does not work for me. Any other way to do this? I realise this is a basic thing, but it's the simple things that are often missed...

Thanks a bunch

#251

J0ris said: I seem to have a really basic problem... How do you add apps to AWN? Drag-n-Drop from the applications menu does not work for me. Any other way to do this? I realise this is a basic thing, but it's the simple things that are often missed...

Thanks a bunch

Try dragging from /usr/bin/applications, that works better for some people.

#252

J0ris said: I seem to have a really basic problem... How do you add apps to AWN? Drag-n-Drop from the applications menu does not work for me. Any other way to do this? I realise this is a basic thing, but it's the simple things that are often missed...

Thanks a bunch

it happen to me when I first run awn the first time just run it then open an application , it will create an entry in the board then you can drag and drop any app from the menu.

#253

So there is no way you can't run this on Metacity without the big black bars.

#254

J0ris said: I seem to have a really basic problem... How do you add apps to AWN? Drag-n-Drop from the applications menu does not work for me. Any other way to do this? I realise this is a basic thing, but it's the simple things that are often missed...

Thanks a bunch

Drap-and-drop should work as expected. I think to guarentee that it works, make sure you are dragging to either the left or right edge of the bar (where there is normall some space), or d&d onto the separator tat is in the middle.

Also, if you are using one of these new main-menus, can you please try d&ding from the stock gnome main menu, or nautilus (/usr/share/applications/), just to make sure it works :). If it still doesn't work, please log a bug report at http://code.google.com/p/avant-window-navigator, and then choose the 'issues' tab at the top!

--Neil

#255

pt123 said: So there is no way you can't run this on Metacity without the big black bars.

Well, xcompmgr is an option, but it doesn't get along too well with AWN. Aside from xcompmgr, there's no way to do it that I'm aware of.

#256

I just installed this using the repository method, and it apparently did with no errors, but the thing I cannot find is: how do you get awn running?. Typing in the console avant-window-navigator gets me the "command not found" and there is nothing new in my applications menu to launch it.

#257

fjf said: I just installed this using the repository method, and it apparently did with no errors, but the thing I cannot find is: how do you get awn running?. Typing in the console avant-window-navigator gets me the "command not found" and there is nothing new in my applications menu to launch it.

hm, nothing? That's really odd. Run these commands in a terminal and give me the output:

ls /usr/bin | grep avant
ls /usr/share/applications | grep avant
dpkg-query -s avant-window-navigator-svn | grep Status

Also, what version of Ubuntu are you using?

#258

Hello, I have affinity-svn installed from the reps. I cant find affinity-beagle or tracker like you said. Anywy, I have both beagle and tracker installed working and running. But, how do you get affinity to work with beagle. I have beagle running..

Tracker works but I find that it doesn't find all my files.

#259

matthewmcnew said: Hello, I have affinity-svn installed from the reps. I cant find affinity-beagle or tracker like you said. Anywy, I have both beagle and tracker installed working and running. But, how do you get affinity to work with beagle. I have beagle running..

Tracker works but I find that it doesn't find all my files.

Yeah, It's a tad broken right now. Only tracker works when support for both is compiled in, it's an affinity bug. If you really must use beagle, follow the steps to compile it from svn, it's not hard. Just make sure that you don't have libtrackerclient-dev installed or you'll end up with the same problem.

#260

Finally decided to try AWN out. It's cool. I used the repo method though, so I was wondering if there was an easy way to install the different plugins?

#261

Rotarychainsaw said: Finally decided to try AWN out. It's cool. I used the repo method though, so I was wondering if there was an easy way to install the different plugins?

The plugins are all installed into their respective apps or run separately, since they are technically plugins for them, rather than for AWN itself. You can find a list of plugins with instructions here: http://awn.wetpaint.com/page/Dbus+Plugins

When AWN gets its own plugins system (soon!), I will add packages to the repo for those plugins.

#262

Ah, I see now. Thanks. I got the rhythmbox one working, thats all I need haha.

#263

I had avant installed from source using this guide, but then later saw that I could install the latest svn using the repo now posted. So I uninstalled by recompiling and running sudo make uninstall since i had deleted the origical stuff I installed with. I then installed the avn from the repo, and avant works fine. But when I try to run avant-preferences, I get

michael@lappy:~$ avant-preferences 
/usr/local/share/avant-window-navigator/window.glade

(avant-preferences:27499): libglade-WARNING **: could not find glade file '/usr/local/share/avant-window-navigator/window.glade'
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 267, in <module>
    app = main()
  File "/usr/local/bin/avant-preferences", line 132, in __init__
    self.wTree = gtk.glade.XML(self.gladefile, domain=I18N_DOMAIN) 
RuntimeError: could not create GladeXML object

any suggestions?

#264

BeardlessForeigner said: I had avant installed from source using this guide, but then later saw that I could install the latest svn using the repo now posted. So I uninstalled by recompiling and running sudo make uninstall since i had deleted the origical stuff I installed with. I then installed the avn from the repo, and avant works fine. But when I try to run avant-preferences, I get

michael@lappy:~$ avant-preferences 
/usr/local/share/avant-window-navigator/window.glade

(avant-preferences:27499): libglade-WARNING **: could not find glade file '/usr/local/share/avant-window-navigator/window.glade'
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 267, in <module>
    app = main()
  File "/usr/local/bin/avant-preferences", line 132, in __init__
    self.wTree = gtk.glade.XML(self.gladefile, domain=I18N_DOMAIN) 
RuntimeError: could not create GladeXML object

any suggestions?

I think there's a bug in the Makefile's uninstaller, as this has come up several times. Just run these two commands to fix it:

sudo rm /usr/local/bin/avant-window-navigator
sudo rm /usr/local/bin/avant-preferences
#265

reacocard said: I think there's a bug in the Makefile's uninstaller, as this has come up several times. Just run these two commands to fix it:

sudo rm /usr/local/bin/avant-window-navigator
sudo rm /usr/local/bin/avant-preferences

Thanks alot, I now get

michael@lappy:~$ avant-preferences 
/usr/share/avant-window-navigator/window.glade

(avant-preferences:9352): libgnomevfs-CRITICAL **: gnome_vfs_get_uri_from_local_path: assertion `g_path_is_absolute (local_full_path)' failed

(avant-preferences:9352): libgnomevfs-CRITICAL **: gnome_vfs_get_uri_from_local_path: assertion `g_path_is_absolute (local_full_path)' failed

whatever that means, but avant-preferences seems to work fine.

#266

Sorry in advance if this is a noob question:

I keep getting this error when I try to run ./autogen.sh when installing AWN...

bob@ubuntustudio:~/avant-window-navigator/avant-window-navigator$ ./autogen.sh
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.
Putting files in AC_CONFIG_AUX_DIR, `..'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
[ftp://ftp.gnu.org/pub/gnu/config/](ftp://ftp.gnu.org/pub/gnu/config/).


Running intltoolize...

intltoolize: 'po/Makefile.in.in' is out of date: use '--force' to overwrite
bob@ubuntustudio:~/avant-window-navigator/avant-window-navigator$ 

Any ideas how to address this and move on with the installation? Thanks in advance!

#267

Rabidmonkey1 said: Sorry in advance if this is a noob question:

I keep getting this error when I try to run ./autogen.sh when installing AWN...

bob@ubuntustudio:~/avant-window-navigator/avant-window-navigator$ ./autogen.sh
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.
Putting files in AC_CONFIG_AUX_DIR, `..'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
[ftp://ftp.gnu.org/pub/gnu/config/](ftp://ftp.gnu.org/pub/gnu/config/).


Running intltoolize...

intltoolize: 'po/Makefile.in.in' is out of date: use '--force' to overwrite
bob@ubuntustudio:~/avant-window-navigator/avant-window-navigator$ 

Any ideas how to address this and move on with the installation? Thanks in advance!

Just do

./autogen.sh --force

as it suggests, then continue with 'make', etc.

#268

EDIT: yarrr...posted in the wrong thread.

#269

Quick questions for you guys...

AWN is running just fine - with one exception - I have a launcher I would like to get rid of, and I can not. I have tried to drag it off the dock, tried to remove it via the configure launchers -> remove button, and searched high and low through my system for some indication of where AWN stores the launchers, with no success. When I try to remove via the Configure Launchers screen, hitting the Remove button does absolutely nothing. I can move the application up and down the list no problems, but neither the Add or Remove buttons seem to be working.

Also, I saw a post from Orb9220 (post 123 in this thread) talking about the running applications having arrows under them. The reply post talks about changing the setting in preferences, but I do not have the tab available that is referenced. I installed AWN from the repo this evening, after uninstalling an older SVN version I compiled earlier tonight. Thoughts?

Other than that, definitely loving it!

Thanks,

~bray

#270

Well, seems as though I have figured it out...

I uninstalled AWN again, removed everything that had avant in it, directory wise, and reinstalled. This fixed the issue of being able to add icons and remove the one I couldn't before. However, once I restarted, it broke. Now AWN has a large black bar running across the bottom, similar to if not using compiz / beryl. However, beryl is installed and working just fine. Not only that, but now my screen brightness manager (laptop) isn't working...go figure. Fix one problem and two more pop up =)

Thanks,

~bray

#271

HAHAHAHA

I suppose I should actually CHECK to see if Beryl is managing the windows or not...as for some reason Metacity had taken over again. Switched back to Beryl, and voila, AWN works! Now to figure out the screen brightness funkyness...

~bray

#272

reacocard said: ...

When AWN gets its own plugins system (soon!), I will add packages to the repo for those plugins.

Do you have any idea when Neil is planning to push the updates? It's already a month that he announced he was going to commit them to svn. I hope nothin serious happened to him. And that it's just that he's been to busy with his new job?

#273

eentonig said: Do you have any idea when Neil is planning to push the updates? It's already a month that he announced he was going to commit them to svn. I hope nothin serious happened to him. And that it's just that he's been to busy with his new job?

He just wants it to be high-quality, I'm sure. It can't be easy making your own panel-applet-like system. I know he was having some trouble with the systray applet and ARGB stuff, maybe he really wants to get that working perfectly before release.

#274

guys i follow the instruction it is like this can you help i dont know how to fix this

[IMG]http://img516.imageshack.us/img516/9573/screenshotyx3.png[/IMG]

#275

You have to have a compositor, like beryl or compiz, installed to get rid of that black bar around AWN.

#276

I got AWN working, I was just wondering if its possible to make the icons larger and can you have static icons like osx does?

#277

bclark said: I got AWN working, I was just wondering if its possible to make the icons larger and can you have static icons like osx does?

Not yet, there's a preliminary patch to adjust size, so that'll be available in the near future.

I'm not sure what you mean by 'static icons', could you elaborate please?

#278

reacocard said: Not yet, there's a preliminary patch to adjust size, so that'll be available in the near future.

I'm not sure what you mean by 'static icons', could you elaborate please?

What I meant by static icons was something that was always there, say have a terminal icon that is always there. Right now it's only icons of things i have open.

#279

bclark said: What I meant by static icons was something that was always there, say have a terminal icon that is always there. Right now it's only icons of things i have open.

Ah, yes you can. Just drag items from your GNOME menu or from /usr/share/applications onto AWN. You may have to have at least one icon on there to be able to drag it easily.

#280

reacocard said: Ah, yes you can. Just drag items from your GNOME menu or from /usr/share/applications onto AWN. You may have to have at least one icon on there to be able to drag it easily.

Ah Cool, hey I'm new to ubuntu, but I have been a loooooong time linux user (command line style), and I was wondering if you could point me to some good apps, or any recs.

#281

bclark said: Ah Cool, hey I'm new to ubuntu, but I have been a loooooong time linux user (command line style), and I was wondering if you could point me to some good apps, or any recs.

I'll point you to a whole thread of 'em: http://ubuntuforums.org/showthread.php?t=382137

My personal recommendations are Exaile (music player), Ex Falso (music tag editor), Xine (video/DVD player), XChat (IRC client), Audacity (audio editor), Deluge (bittorrent client), and Beryl (Eyecandy, like Vista or OS X has, but better!)

I could go on, but that's the stuff that's most likely to actually be useful to you. ;)

#282

reacocard said: I'll point you to a whole thread of 'em: http://ubuntuforums.org/showthread.php?t=382137

My personal recommendations are Exaile (music player), Ex Falso (music tag editor), Xine (video/DVD player), XChat (IRC client), Audacity (audio editor), Deluge (bittorrent client), and Beryl (Eyecandy, like Vista or OS X has, but better!)

I could go on, but that's the stuff that's most likely to actually be useful to you. ;)

Awesome! A perfect response, thanks for being cool about that. I enjoy a good community! :D

#283

reacocard said: Ah, yes you can. Just drag items from your GNOME menu or from /usr/share/applications onto AWN. You may have to have at least one icon on there to be able to drag it easily.

maybe i'm doing it wrong, but when i drag the icons onto AWN, they just retreat away and don't stay on AWN, also how can I have AWN load on boot?

#284

bclark said: maybe i'm doing it wrong, but when i drag the icons onto AWN, they just retreat away and don't stay on AWN, also how can I have AWN load on boot?

I should just drag. Mke sure you have a window or two open first (so you have icons already), then drag them onto the edges of the bar.

To have AWN load at login, add 'avant-window-navigator' to your startup programs in System -> Preferences -> Sessions

#285

Hey, when i try to install this i get the following error: I can't get libwnck-dev to work. Others are installing just fine.

The following packages have unmet dependencies:
  libwnck-dev: Depends: libwnck18 (= 2.16.1-0ubuntu1.1) but 2.18.0-0ubuntu1 is to be installed
E: Broken packages

And then ofcourse i get an error when i do the makefile thingie

No package 'libwnck-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS
and AWN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
#286

Pconfig said: Hey, when i try to install this i get the following error: I can't get libwnck-dev to work.

Others are installing just fine.

The following packages have unmet dependencies:
  libwnck-dev: Depends: libwnck18 (= 2.16.1-0ubuntu1.1) but 2.18.0-0ubuntu1 is to be installed
E: Broken packages

And then ofcourse i get an error when i do the makefile thingie

No package 'libwnck-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS
and AWN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

It's a problem with your repositories. Perhaps a third-party repo screwed it up, or you don't have all that you need in your list. Make sure there are deb and deb-src lines for all the ubuntu repos, with all components enabled. In it's simplest form, that would look something like this:

## Ubuntu
deb http://mirrors.kernel.org/ubuntu/ feisty main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty main restricted universe multiverse

## Updates
deb http://mirrors.kernel.org/ubuntu/ feisty-updates main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty-updates main restricted universe multiverse

## Backports
deb http://mirrors.kernel.org/ubuntu/ feisty-backports main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty-backports main restricted universe multiverse

## Security
deb http://mirrors.kernel.org/ubuntu/ feisty-security main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty-security main restricted universe multiverse

adjust your sources.list accordingly, apt-get update and try again. If that doesn't fix it, it's a problem with some unofficial repo you've added, so you'd have to find out which, remove it and downgrade libwnck et al. to the Ubuntu versions.

#287

Today's update has caused my AWN to become unresponsive (ie it doesn't show apps or launchers).

I've removed ~/.awn and done a gconftool-2 --recursive-unset /apps/avant-window-navigator but no luck. Any ideas?

#288

testube_babies said: Today's update has caused my AWN to become unresponsive (ie it doesn't show apps or launchers).

I've removed ~/.awn and done a gconftool-2 --recursive-unset /apps/avant-window-navigator but no luck. Any ideas?

you have to launch the applet manager application, then add the applet "Launcher/Taskmanager". This will add the launchers and the window list.

You can launch this applicaiton by entering "avant-applets" in a terminal"

#289

Please make this thread a sticky, it helps _A LOT._

#290

How do I control the speed of the auto-hide and pop-up for avant window manager?

#291

reacocard said: Not yet, and it hasn't been requested yet, so you may want to file a feature request for it here: http://code.google.com/p/avant-window-navigator/issues/list

What the.....? Bro.... WT.... OK, let me take a breath here. [FONT="Trebuchet MS"][SIZE="7"]OF COURSE WE WANT THE ZOOM EFFECT.[/SIZE][/FONT] it's the ONLY thing AWN lacks.

#292

dannymichel said: How do I control the speed of the auto-hide and pop-up for avant window manager?

Not possible yet.

dannymichel said: What the.....?

Bro.... WT.... OK, let me take a breath here. [FONT="Trebuchet MS"][SIZE="7"]OF COURSE WE WANT THE ZOOM EFFECT.[/SIZE][/FONT] it's the ONLY thing AWN lacks.

Heh, neil just said today he was going to get the patch for that merged in soon.

#293

Ive got a problem with Avant. The first time I used Avant, I added my icons (firefox, word, etc.) and added avant to sessions in order for it to make it start as default.

The next time I log in, avant has only one icon in it (word), and in the option configure launchers, it's the only one to show up. So I add the Icons that are missing. But after that, I check in Configure Launchers, and I find that each program is repeated at least once (having 3 firefoxes, 2 aMSN, 2 Gweled, but only one Open Office Word etc.) but in avant there are only 4 icons (firefox, aMSN, Gweled and Word.) I close that avant dock, and reopen it through Applicatons>Accesories>Avant Window Navigator, and I have the 3 firefoxes, the 2 aMSN, etc. So I remove the duplicated icons, by the option Mouse Right Click>Remove, because i can't do it in the configure launchers panel. I check the configure launchers panel, and the next thing I know is that again only the OOW launcher appears there, and probably when I log in again it will be the only one there. I try to add launchers through that panel, but I can't. I can neaither remove launchers.

Any help would be greatly appreciated

#294

reacocard said: Not possible yet.

Heh, neil just said today he was going to get the patch for that merged in soon. OMG are you teasing!? How soon?

#295

I have a question about affinity...i got it to install and i can run it from the accessories menu, but it doesn't seem to be linked to my beagle search (which I've had installed for a while now) ... no matter what I search it comes up blank so I assume that has to do with how its linked to beagle... also, beagle has the F12 functionallity which I've grown used to, is it possible to have affinity take over this role so that when i hit F12 affinity comes up instead?

So far I'm loving both AWN and the look of affinity...thanks for the guide!

#296

Andrax said: Ive got a problem with Avant.

The first time I used Avant, I added my icons (firefox, word, etc.) and added avant to sessions in order for it to make it start as default.

The next time I log in, avant has only one icon in it (word), and in the option configure launchers, it's the only one to show up. So I add the Icons that are missing. But after that, I check in Configure Launchers, and I find that each program is repeated at least once (having 3 firefoxes, 2 aMSN, 2 Gweled, but only one Open Office Word etc.) but in avant there are only 4 icons (firefox, aMSN, Gweled and Word.) I close that avant dock, and reopen it through Applicatons>Accesories>Avant Window Navigator, and I have the 3 firefoxes, the 2 aMSN, etc. So I remove the duplicated icons, by the option Mouse Right Click>Remove, because i can't do it in the configure launchers panel. I check the configure launchers panel, and the next thing I know is that again only the OOW launcher appears there, and probably when I log in again it will be the only one there. I try to add launchers through that panel, but I can't. I can neaither remove launchers.

Any help would be greatly appreciated

You have to drag from the menu or from /usr/share/applications. AWN just links to the launcher you give, so the original has to be there.

dannymichel said: OMG are you teasing!?

How soon?

No firm date, but given that he's committing again, I'd say within a week, maybe two.

equinox_child said: I have a question about affinity...i got it to install and i can run it from the accessories menu, but it doesn't seem to be linked to my beagle search (which I've had installed for a while now) ... no matter what I search it comes up blank so I assume that has to do with how its linked to beagle...

also, beagle has the F12 functionallity which I've grown used to, is it possible to have affinity take over this role so that when i hit F12 affinity comes up instead?

So far I'm loving both AWN and the look of affinity...thanks for the guide!

The version in the repo doesn't find beagle, it's an affinity bug. If you compile it yourself, adding --disable-tracker to the ./autogen.sh command, it'll work fine with beagle. As for keybinding, yes, it's possible. The default binding for Affinity is CRTL+ALT+A, but you can change it. Press alt+f2, enter 'gconf-editor', navigate to / > apps > affinity and set the global_key_binding option to whatever you want. You may have to rebind beagle to a different key first, so they don't conflict.

#297

So..... has anyone else had problems with the latest SVN version of AWN? I got it this morning, closed my currently running AWN (which had a memory leak, btw, the longer it ran the more memory it consumed on my system) and launched the new one.... poof.... empty AWN, none of my windows, none of my launchers, nothing showed up in it. Right clicking on it didn't bring up the menu, I had to kill it in gnome-system-monitor. I'm running a fully up to date Feisty with Beryl.

#298

rfdeshon said: So..... has anyone else had problems with the latest SVN version of AWN? I got it this morning, closed my currently running AWN (which had a memory leak, btw, the longer it ran the more memory it consumed on my system) and launched the new one.... poof.... empty AWN, none of my windows, none of my launchers, nothing showed up in it. Right clicking on it didn't bring up the menu, I had to kill it in gnome-system-monitor. I'm running a fully up to date Feisty with Beryl.

The new one is really experimental, there's a new plugins system which is causing a few teething pains. I'll update the packages again sometime today, hopefully it'll be more stable.

#299

Thank you reacocard for helping me out.

Hey I just recently saw vids about the Kiba dock, should I switch to it? IF I did which problems does it has? How do I install it?

#300

Andrax said: Thank you reacocard for helping me out.

Hey I just recently saw vids about the Kiba dock, should I switch to it? IF I did which problems does it has? How do I install it?

I haven't used kiba-dock in a while, but when I did use it, it looked good, but was not terribly useful, and it had a tendency to stick my CPU usage at 100%. IMHO, AWN is the most *useful* dock currently available for Gnome (some KDE docks look pretty good, but the lack of Gnome/GTK integration makes them unusable for me), especially considering the new applets/plugins system. Therefore, I think you should keep using AWN, but there's no reason you can't try out Kiba-dock if you want to, perhaps you'll find you prefer Kiba. For installing, a quick search turned up this guide: http://ubuntuforums.org/showthread.php?t=268645

Hope this helps!

#301

Ill stay in AWN for a while, thanks a lot reacocard.

#302

rfdeshon said: So..... has anyone else had problems with the latest SVN version of AWN? I got it this morning, closed my currently running AWN (which had a memory leak, btw, the longer it ran the more memory it consumed on my system) and launched the new one.... poof.... empty AWN, none of my windows, none of my launchers, nothing showed up in it. Right clicking on it didn't bring up the menu, I had to kill it in gnome-system-monitor. I'm running a fully up to date Feisty with Beryl.

I wish I had read your post first. Exact same thing just happened to me. I've come to depend on AWN, and I don't know what to do without it. :( Hopefully the upcoming fix will work...

Although I'm glad it's being worked on. I can't wait to see what will be new!

#303

From user idn:

Fix the empty AWN by entering "avant-applets" in a terminal to add applets to the dock.

#304

I shouldn't have to do that. Every other time I have relaunched AWN, my currently running applications and my launchers have showed up no problem. I should not have to add applets to the dock every time it runs. That would make the program pretty unuseful don't you think? I'd rather just go back to using the standard gnome panel than having to readd things every time I launch AWN. I could understand losing my launchers really, but the fact that my currently running applications don't even show up is completely unacceptable.

#305

You should only have to add applets once; mine automatically start every time I start AWN.

#306

So I just reinstalled with version 0.1.2+svn200706016+3v1ubuntu0 using Synaptic, I think I'm pulling it from Reacocard's repo.

It fixed my problems, AWN is back up and running. Though I'm not sure if this was an upgrade or a downgrade from what Update Manager installed earlier.

#307

andrewsomething said: So I just reinstalled with version 0.1.2+svn200706016+3v1ubuntu0 using Synaptic, I think I'm pulling it from Reacocard's repo.

It fixed my problems, AWN is back up and running. Though I'm not sure if this was an upgrade or a downgrade from what Update Manager installed earlier.

Nope, that's not my repo, that's Trevino's. My version numbers look like this: 0.1.2-svn186 His is about the same version as mine is right now (maybe a bit older), but I'll be uploading a new one later today (svn199 likely). My build machine crashed yesterday and I had to reinstall Ubuntu, otherwise I'd have updated sooner.

EDIT: repo updated to 0.1.2-svn199

#308

testube_babies said: You should only have to add applets once; mine automatically start every time I start AWN.

I don't mean any disrespect, but you really need to read my problem better. Nothing at all shows up. No currently running applications, no launchers, nothing.

To everyone else, thanks, I hope the update tonight fixes this, I've gotten used to using AWN and really like the way it looks.

#309

rfdeshon said: I don't mean any disrespect, but you really need to read my problem better. Nothing at all shows up. No currently running applications, no launchers, nothing.

To everyone else, thanks, I hope the update tonight fixes this, I've gotten used to using AWN and really like the way it looks.

It's an artifact of the shift to the plugin-based system. Run 'avant-applets' in a terminal, add a 'Launcher/Taskmanager' applet, and AWN should work as before.

If that still doesn't solve it, I would suggest posting on the AWN forums, so that the developer can see your problem and fix it.

#310

The new SVN version that was released tonight resumed functionality for me. Thanks.

#311

Hi, I upgraded the SVN version through the repositories. It's working pretty much exactly as it did before, but when I try to add the workspace switcher applet, nothing happens. I was able to add the trash applet successfully though. I read somewhere that this could be because the schema didn't install correctly for the switcher; how would I fix that?

#312

onero said: Hi, I upgraded the SVN version through the repositories. It's working pretty much exactly as it did before, but when I try to add the workspace switcher applet, nothing happens. I was able to add the trash applet successfully though. I read somewhere that this could be because the schema didn't install correctly for the switcher; how would I fix that?

Yeah, it's the schemas, I need to fix the deb for it. I'll try to get that done tomorrow sometime, I need to sleep now.

#313

Hi everyone

Is there a way to add a menu, like the main menu to avant?

I've tried a quick search, can't find one

Drowner.

#314

drowner said: Hi everyone

Is there a way to add a menu, like the main menu to avant?

I've tried a quick search, can't find one

Drowner.

Not yet, but it would surprise me if one doesn't turn up soon, now that there's an applet system.

#315

I would like to report that there is still a bug in AWN somewhere that is causing it to use massive amounts of RAM. I came back from work today to find it was consuming ~140MB of RAM. After relaunching it, it only consumed ~2.5MB of RAM. Is it possible that this has something to do with the Exaile plugin that displays album art in the AWN tray? Just a thought since that was really the only variable that was changing while at work (I leave exaile playing while I am at work because I have a parakeet.... long story).

#316

Hey Ive got another problem with Avant.

Well, I came home today to find out that avant is no longer working. What happened is that all my icons disappeared, and now I only have a little black rectangle, which I cannot add anything to. When I checked the configure launchers menu, I find out that my icons are there, but not in the little black rectangle. I'll post some screenshots so you can see.

[IMG]http://[[IMG]http://img20.imageshack.us/img20/2818/screenshot2yt6.th.png[/IMG]](http://img20.imageshack.us/my.php?image=screenshot2yt6.png)[/IMG]

[IMG]http://[[IMG]http://img507.imageshack.us/img507/4725/screenshot3uc7.th.png[/IMG]](http://img507.imageshack.us/my.php?image=screenshot3uc7.png)[/IMG]

Any help will be appreciated.

#317

Andrax said: Hey Ive got another problem with Avant.

Well, I came home today to find out that avant is no longer working. What happened is that all my icons disappeared, and now I only have a little black rectangle, which I cannot add anything to. When I checked the configure launchers menu, I find out that my icons are there, but not in the little black rectangle. I'll post some screenshots so you can see.

[IMG]http://[[IMG]http://img20.imageshack.us/img20/2818/screenshot2yt6.th.png[/IMG]](http://img20.imageshack.us/my.php?image=screenshot2yt6.png)[/IMG]

[IMG]http://[[IMG]http://img507.imageshack.us/img507/4725/screenshot3uc7.th.png[/IMG]](http://img507.imageshack.us/my.php?image=screenshot3uc7.png)[/IMG]

Any help will be appreciated.

http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=256&page=1&isLive=true

That should clear it up for you. Basically use 'Configure Applets' to 'add' the taskbar to Awn.

Sorry about the trouble, but it was necassary :)

--Neil

#318

Oh.....Why didn't I thought about that?

Thanx a lot anyway.

#319

hey i got this problem while installing.....please help me fix this...

after ./autogen.sh........ Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files c[COLOR="Red"]odeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.[/COLOR]

Running aclocal-1.9...

[COLOR="Red"]/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF[/COLOR]_SOURCE ..........

then while running make.....

make[2]: Entering directory /home/irti/Linux/avant-windows-navigator/avant-window-navigator/po' [COLOR="Red"]make[2]: * No rule to make target cs.gmo', needed by all-yes'. Stop. make[2]: Leaving directory [/COLOR]/home/irti/Linux/avant-windows-navigator/avant-window-navigator/po' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/home/irti/Linux/avant-windows-navigator/avant-window-navigator' make: *** [all] Error 2 irti@irti-Linux:~/Linux/avant-windows-navigator/avant-window-navigator$

i am running a 64 bit version of ubuntu..............what do i do to fix this????

#320

Irti said: hey i got this problem while installing.....please help me fix this...

after ./autogen.sh........ Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files c[COLOR="Red"]odeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.[/COLOR]

Running aclocal-1.9...

[COLOR="Red"]/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF[/COLOR]_SOURCE ..........

then while running make.....

make[2]: Entering directory /home/irti/Linux/avant-windows-navigator/avant-window-navigator/po' [COLOR="Red"]make[2]: * No rule to make target cs.gmo', needed by all-yes'. Stop. make[2]: Leaving directory [/COLOR]/home/irti/Linux/avant-windows-navigator/avant-window-navigator/po' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/home/irti/Linux/avant-windows-navigator/avant-window-navigator' make: *** [all] Error 2 irti@irti-Linux:~/Linux/avant-windows-navigator/avant-window-navigator$

i am running a 64 bit version of ubuntu..............what do i do to fix this????

You may need to install gconf development libraries, that seems to be causing the issue.

--Neil

#321

nopes.......i installed all the gconf files i could find in the synaptics.....if the gconf development libraries go by any other name...then i dont know...but i searched the whole of synaptic for gconf files...and installed all of the development files i could find linked with gconf...but alas.....no avail.........the problem persists

#322

Hi,

I had a fiddle with avant a little while ago, but I'm without the dock at the moment. Decided I dont need one right now. Affinity, on the other hand, is awesome. A few issues for me though:

No icon: I get a red cross icon when I run it. Is there a way to manually set the icon, or can I drop a file in a certain folder? I installed through Synaptic...

"manage Software" and "Log out" are also without icons. No biggie, but if I can fix it, that'd be good :)

Also, clicking "manage software" does nothing for me.

Awesome work, I love it. Look forward to your reply :)

EDIT:

On other thing, when I search for files that are .odt (ie type their filename into the box) they are not found. If I type odt, the list of all of them appears. This is probably a beryl problem - how to fix?

#323

jackmc said: Hi,

I had a fiddle with avant a little while ago, but I'm without the dock at the moment. Decided I dont need one right now. Affinity, on the other hand, is awesome. A few issues for me though:

No icon: I get a red cross icon when I run it. Is there a way to manually set the icon, or can I drop a file in a certain folder? I installed through Synaptic...

"manage Software" and "Log out" are also without icons. No biggie, but if I can fix it, that'd be good :)

Also, clicking "manage software" does nothing for me.

Awesome work, I love it. Look forward to your reply :)

EDIT:

On other thing, when I search for files that are .odt (ie type their filename into the box) they are not found. If I type odt, the list of all of them appears. This is probably a beryl problem - how to fix?

You're using stable, right? The icons have been corrected in SVN. 'Manage software' can be set to a different program than the default (which doesn't exist on Ubuntu) in affinity-preferences.

As for odt, it's likely either tracker's fault or in how affinity interacts with tracker. you might consider filing a bug report about that.

#324

Thanks for the info, I switched to the SVN, and it is all fixed. I think a reboot helped as well. Maybe I'll give beagle a few more hours of reindexing and see how that goes :)

Thanks again for the quick reply.

jack

edit: if it makes any difference, beagle is finding results that affinity is not at the moment. ie, if I use"desktop search", I get results, but not in affinity...

#325

jackmc said: Thanks for the info, I switched to the SVN, and it is all fixed. I think a reboot helped as well. Maybe I'll give beagle a few more hours of reindexing and see how that goes :)

Thanks again for the quick reply.

jack

edit: if it makes any difference, beagle is finding results that affinity is not at the moment. ie, if I use"desktop search", I get results, but not in affinity...

Affinity in the repo only does Tracker right now, if you need beagle you'll have to compile from source using ./autogen.sh --disable-tracker. Affinity currently can't use both at the same time, I've filed a bug about that.

EDIT: updated the guide to make this and a couple other things clearer.

#326

Irti said: hey i got this problem while installing.....please help me fix this...

after ./autogen.sh........ Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files c[COLOR="Red"]odeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.[/COLOR]

Running aclocal-1.9...

[COLOR="Red"]/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF[/COLOR]_SOURCE ..........

then while running make.....

make[2]: Entering directory /home/irti/Linux/avant-windows-navigator/avant-window-navigator/po' [COLOR="Red"]make[2]: * No rule to make target cs.gmo', needed by all-yes'. Stop. make[2]: Leaving directory [/COLOR]/home/irti/Linux/avant-windows-navigator/avant-window-navigator/po' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/home/irti/Linux/avant-windows-navigator/avant-window-navigator' make: *** [all] Error 2 irti@irti-Linux:~/Linux/avant-windows-navigator/avant-window-navigator$

i am running a 64 bit version of ubuntu..............what do i do to fix this????

Ah bugger, it seems the email I got form ubuntuforums cut out the bottom part of the error!

try this:

Open configure.in, in the source directory, in your favourite editor, and on line 34, add a 'dnl ', thats a d-n-l-space, before ALL_LINGUAS. Underneath that, put:

ALL_LINGUAS=""

and try compiling again. I think its either a 64bit issue, or your are missing the necessary libraries/tools for compiling translations.

--Neil

#327

(avant-window-navigator:22527): Gdk-CRITICAL **: gdk_cairo_create: assertion `GDK_IS_DRAWABLE (drawable)' failed

(avant-window-navigator:22527): GdkPixbuf-CRITICAL **: gdk_pixbuf_composite: assertion `dest != NULL' failed

(avant-window-navigator:22527): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

Those are just warning, avant still "runs".

Also get the evil black box around it.

And yes, I am using beryl, maybe its just a problem with the radeon driver. shrug.

Wish it would work. :/

#328

The last update gave me some broken packages.

Im using synaptic to fix it.

Anybody else have these issues?

#329

drowner said: The last update gave me some broken packages.

Im using synaptic to fix it.

Anybody else have these issues?

I've split libawn out from the main package (thanks mxpxpod!), there might be a little bumpiness because of that. On the other hand, the gconf issues should be fixed, and the separator applet is now available.

#330

Ahh I see! Very nice!!!!

#331

grazzt said: (avant-window-navigator:22527): Gdk-CRITICAL **: gdk_cairo_create: assertion `GDK_IS_DRAWABLE (drawable)' failed

(avant-window-navigator:22527): GdkPixbuf-CRITICAL **: gdk_pixbuf_composite: assertion `dest != NULL' failed

(avant-window-navigator:22527): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

These warnings used to only occur with 0.1. Try this, remove all instances of avant-window-navigator from /usr/bin and /usr/local/bin, and reinstall either the svn deb, or directly from svn. That should fix it.

--Neil

#332

I had to install libxdamage-dev and libxcomposite-dev for the avant-window-manager installation. I couldn't get pass the ./autogen.sh step. I already had libxdamage1 and libxcomposite1 installed but it seems to need the dev packages(headers).

#333

Where it started to fail for me. Can anyone help please? (I'm on Fiesty 64)

anthonii@smurph:~/install/avant-window-navigator$ ./autogen.sh
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...


Running autoheader...


Running automake-1.9...

configure.in: installing `./install-sh'
configure.in: installing `./missing'
applets/notification-area/Makefile.am: installing `./compile'
applets/notification-area/Makefile.am: installing `./depcomp'

Running ./configure --enable-maintainer-mode ...

./configure: line 2002: i: command not found
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for gconftool-2... /usr/bin/gconftool-2
checking for intltool >= 0.34... 0.35.5 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  cs da de_DE el_GR en_GB fi_FI fr_FR it_IT pt_BR ru
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.7... yes
checking for GLIB - version >= 2.8.0... yes (version 2.12.11)
checking for AWN... configure: error: Package requirements ( glib-2.0 gobject-2.0 gtk+-2.0 gdk-2.0 libwnck-1.0 gnome-desktop-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto dbus-glib-1 libglade-2.0 xdamage xcomposite xrender) were not met:

No package 'xdamage' found
No package 'xcomposite' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS
and AWN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

anthonii@smurph:~/install/avant-window-navigator$ make
make: *** No targets specified and no makefile found.  Stop.
anthonii@smurph:~/install/avant-window-navigator$ 

#334

rcatman said: I had to install libxdamage-dev and libxcomposite-dev for the avant-window-manager installation. I couldn't get pass the ./autogen.sh step. I already had libxdamage1 and libxcomposite1 installed but it seems to need the dev packages(headers).

Thanks for catching this, I've fixed the debs for it already but I forgot to update the guide.

jusmurph said: Where it started to fail for me. Can anyone help please? (I'm on Fiesty 64)

anthonii@smurph:~/install/avant-window-navigator$ ./autogen.sh
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...


Running autoheader...


Running automake-1.9...

configure.in: installing `./install-sh'
configure.in: installing `./missing'
applets/notification-area/Makefile.am: installing `./compile'
applets/notification-area/Makefile.am: installing `./depcomp'

Running ./configure --enable-maintainer-mode ...

./configure: line 2002: i: command not found
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for gconftool-2... /usr/bin/gconftool-2
checking for intltool >= 0.34... 0.35.5 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed...  cs da de_DE el_GR en_GB fi_FI fr_FR it_IT pt_BR ru
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.7... yes
checking for GLIB - version >= 2.8.0... yes (version 2.12.11)
checking for AWN... configure: error: Package requirements ( glib-2.0 gobject-2.0 gtk+-2.0 gdk-2.0 libwnck-1.0 gnome-desktop-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto dbus-glib-1 libglade-2.0 xdamage xcomposite xrender) were not met:

No package 'xdamage' found
No package 'xcomposite' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS
and AWN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

anthonii@smurph:~/install/avant-window-navigator$ make
make: *** No targets specified and no makefile found.  Stop.
anthonii@smurph:~/install/avant-window-navigator$ 

See rcatman's post above, you have to install libxdamage-dev and libxcomposite-dev as well now, I'll fix the guide ASAP.

#335

I got AWN working , but have some small problems tho. When i hover with my mouse pointer over a icon text appears as intended but when i move my mouse pointer the text stays there and just wont disapear.

Are there any solutions to this small problem? Been googeling couple hours and looking around in forums but cant find any answers.

#336

Don_Jarmo said: I got AWN working , but have some small problems tho. When i hover with my mouse pointer over a icon text appears as intended but when i move my mouse pointer the text stays there and just wont disapear.

Are there any solutions to this small problem? Been googeling couple hours and looking around in forums but cant find any answers.

hm, never heard of that problem. What method did you use to install, and what graphics card/driver are you using?

#337

reacocard said: hm, never heard of that problem. What method did you use to install, and what graphics card/driver are you using?

Im using Nvidia 100.14.11 drivers , i just followed the How To in page 1 in this thread.. It's really wierd to be honest, only way i can get the text to disapear is to autohide AWN wich is kinda boring coz the bar is so beautiful and i just wanna sit and look at it :)

Im using a Nvidia 8800GTS but i cant really see that it would be the GPU:s fault, Had beryl first same problem, changed to compiz-fusion still same problem but all effects feels faster and smoother wich is a bonus tho :D

Heres a little screen of the problem i have as u can see once i hovered my mouse over a icon text wont disapear when i remove my mouse from it.

[[IMG]http://img530.imageshack.us/img530/816/awnproblemdk7.th.png[/IMG]](http://img530.imageshack.us/my.php?image=awnproblemdk7.png)

#338

Looks like your're not the only one with this problem: http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=301&page=1&sl=0&isLive=true#last

To quote the developer:

This is an issue with certain graphics cards. I haven't yet figured out whats causing this. The only thing you can do is to use the preferences to set the tet and background of the text to totally transparent (for now).

#339

Oh ok :) well good enough for to be honest thanks for the reply :D

#340

I just updated AWN to the latest SVN version and I was EXTREMELY pleased to find the new applets functionality. Now I have a trash icon happily sitting in my dock. While it might seem like a small detail, this makes me so happy it's sort of ridiculous. But I digress......

One problem that popped up is that the other nifty applet feature, namely the workspace switcher, while listed in the applet preferences menu, does not appear in my dock when activated by adding to the applet list.

Has anyone else had similar issues? Perhaps this is something that is a bit buggy in the latest version?

But, like I said, man is that trash icon sweet.

Thanks.

#341

reacocard said:

See rcatman's post above, you have to install libxdamage-dev and libxcomposite-dev as well now, I'll fix the guide ASAP. Thanks, i got it working!

#342

Anyone else experience this with the autohide functionality:

the dock doesn't unhide itself until you move the mouse pointer away from the bottom of the screen

Is this a bug, or is this intended functionality?

#343

russbuss said: I just updated AWN to the latest SVN version and I was EXTREMELY pleased to find the new applets functionality. Now I have a trash icon happily sitting in my dock. While it might seem like a small detail, this makes me so happy it's sort of ridiculous. But I digress......

One problem that popped up is that the other nifty applet feature, namely the workspace switcher, while listed in the applet preferences menu, does not appear in my dock when activated by adding to the applet list.

Has anyone else had similar issues? Perhaps this is something that is a bit buggy in the latest version?

But, like I said, man is that trash icon sweet.

Thanks.

I think you have to log out/in for it to work, gconf has to load the new schemas in.

nchase said: Anyone else experience this with the autohide functionality:

the dock doesn't unhide itself until you move the mouse pointer away from the bottom of the screen

Is this a bug, or is this intended functionality?

That's intended.

#344

reacocard said: I think you have to log out/in for it to work, gconf has to load the new schemas in.

Yep, that did the trick!

Thanks again. AWN is really shaping up to be the best.

#345

I have been having problems with running AWN and Screenlets in Compiz Fusion. With Screenlets installed, AWN doesn't work as intended. I have a thread going if anyone would be willing to help (I would be really grateful if you did). Here is a link to the thread: http://ubuntuforums.org/showthread.php?t=482741

#346

reacocard said: That's intended.

The larger problem at hand is that when it's auto hidden, it sometimes won't come back at all. This seems to happen when a window is maximized.

Has anyone else seen anything like this?

#347

nchase said: The larger problem at hand is that when it's auto hidden, it sometimes won't come back at all. This seems to happen when a window is maximized.

Has anyone else seen anything like this?

hm, it could just be that the maximized window is preventing AWN from receiving the mouseover event. You should see if you can figure out exactly what conditions cause this, then tell Neil (njpatel, the developer) about it, either by filing an issue on Google code or by posting a thread on the AWN forums.

#348

smartboyathome said: I have been having problems with running AWN and Screenlets in Compiz Fusion. With Screenlets installed, AWN doesn't work as intended. I have a thread going if anyone would be willing to help (I would be really grateful if you did). Here is a link to the thread:

http://ubuntuforums.org/showthread.php?t=482741

It could be that the screenlet window and the AWN window are overlapping (I know it doesn't look like that, but judging from your screenshot, they are) and conflicting with each other. Try moving the screenlets well away from the bottom of the screen (twice AWN's hieght should be plenty). If that fixes it, it's just because of the overlap.

#349

I got it fixed by using the development version of AWN. Thanks for your reply, though. :)

#350

How may I set up AWN, so that it apperas at the upper part of the screen, instead of staying down? Is it possible? Thanks in advance.

#351

@cdiem

I don't believe it is posible yet, but it may be in the works...

#352

Thank you for the answer anyway. I wish this were a feature of AWN one day, so I can customize it the way I want.

#353

cdiem said: Thank you for the answer anyway. I wish this were a feature of AWN one day, so I can customize it the way I want.

It's not possible yet, but a preliminary (slightly buggy) patch is available, so it'll come eventually.

#354

reacocard said: You're using stable, right? The icons have been corrected in SVN. 'Manage software' can be set to a different program than the default (which doesn't exist on Ubuntu) in affinity-preferences.

I am using the SVN version but I get the little red icon in the tray and no icon in the menu and in the avant dock. How can I fixed them?

#355

Hello!

I installed Avant the way described on the first page, but for some reason I have nothing in the "configure launchers" menu. Any ideas as to why this is happening? I would have thoroughly checked the thread but its at 36 pages now.

#356

Hey all, I am at the point where you run ./autogen.sh to compile AVN

Here are the out put errors. Any idea on what I can do? I am running Fiesty Fawn 32 Bit. Any help would be greatly appreciated :)

checking pkg-config is at least version 0.7... yes checking for GLIB - version >= 2.8.0... * 'pkg-config --modversion glib-2.0' returned 2.12.12, but GLIB (2.12.11) * was found! If pkg-config was correct, then it is best * to remove the old version of GLib. You may also be able to fix the error * by modifying your LD_LIBRARY_PATH enviroment variable, or by editing * /etc/ld.so.conf. Make sure you have run ldconfig if that is * required on your system. * If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH * to point to the correct configuration files no checking for AWN... configure: error: Package requirements ( glib-2.0 gobject-2.0 gtk+-2.0 gdk-2.0 libwnck-1.0 gnome-desktop-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto dbus-glib-1 libglade-2.0 xdamage xcomposite xrender) were not met:

No package 'libwnck-1.0' found No package 'gnome-desktop-2.0' found No package 'libgnome-2.0' found No package 'gnome-vfs-2.0' found No package 'gconf-2.0' found No package 'x11' found No package 'xproto' found No package 'dbus-glib-1' found No package 'libglade-2.0' found No package 'xdamage' found No package 'xcomposite' found No package 'xrender' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

#357

|Porsche said: Hey all,

I am at the point where you run ./autogen.sh to compile AVN

Here are the out put errors. Any idea on what I can do? I am running Fiesty Fawn 32 Bit. Any help would be greatly appreciated :)

checking pkg-config is at least version 0.7... yes checking for GLIB - version >= 2.8.0... * 'pkg-config --modversion glib-2.0' returned 2.12.12, but GLIB (2.12.11) * was found! If pkg-config was correct, then it is best * to remove the old version of GLib. You may also be able to fix the error * by modifying your LD_LIBRARY_PATH enviroment variable, or by editing * /etc/ld.so.conf. Make sure you have run ldconfig if that is * required on your system. * If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH * to point to the correct configuration files no checking for AWN... configure: error: Package requirements ( glib-2.0 gobject-2.0 gtk+-2.0 gdk-2.0 libwnck-1.0 gnome-desktop-2.0 libgnome-2.0 gnome-vfs-2.0 gconf-2.0 x11 xproto dbus-glib-1 libglade-2.0 xdamage xcomposite xrender) were not met:

No package 'libwnck-1.0' found No package 'gnome-desktop-2.0' found No package 'libgnome-2.0' found No package 'gnome-vfs-2.0' found No package 'gconf-2.0' found No package 'x11' found No package 'xproto' found No package 'dbus-glib-1' found No package 'libglade-2.0' found No package 'xdamage' found No package 'xcomposite' found No package 'xrender' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

You have to install the dependencies first, as the guide says. Run the appropriate 'sudo apt-get install' line from the guide and try again.

#358

When I attempt to remove a launcher from AWN by right clicking on the dock, selecting "Configure Launchers", and making the appropriate clicks in the dialogue window, including "Apply", nothing is removed from my AWN dock.

Anyone have any idea why? And I know there is some file I can manually edit to remove the launcher in question, but I don't which one or where it is. Anyone care to give me nudge in the correct direction?

Thanks in advance for any help.

#359

russbuss said: When I attempt to remove a launcher from AWN by right clicking on the dock, selecting "Configure Launchers", and making the appropriate clicks in the dialogue window, including "Apply", nothing is removed from my AWN dock.

Anyone have any idea why? And I know there is some file I can manually edit to remove the launcher in question, but I don't which one or where it is. Anyone care to give me nudge in the correct direction?

Thanks in advance for any help.

The easiest way to remove an icon from AWN is to right click on it and select remove from the context menu....

#360

reacocard said: I should just drag. Mke sure you have a window or two open first (so you have icons already), then drag them onto the edges of the bar.

To have AWN load at login, add 'avant-window-navigator' to your startup programs in System -> Preferences -> Sessions Sorry for being dim but can you clarify this? Do I need to put 'avant-window-navigator' in the name box or the command box? What do I need to put in the other one in that case?

#361

andrewsomething said: The easiest way to remove an icon from AWN is to right click on it and select remove from the context menu....

Thanks! That worked like a charm.

In retrospect, someone who actually knows something about programming (i.e. not me) might want to check up on the Add/Remove functionality in the "Configure launchers" menu. Maybe it's known not to work right now, or maybe it's a bug.

Either way, AWN still rocks.

Thanks.

#362

Compiled the new svn, had a small issue regarding the two dev packages needed, but I found the fix a couple of posts up. I'm now enjoying my new AWN w/ trash applet. It's the goodness. =]

#363

Matuku said: Sorry for being dim but can you clarify this? Do I need to put 'avant-window-navigator' in the name box or the command box? What do I need to put in the other one in that case?

In command, name can be whatever you want.

#364

This patch by haytjes is really neat...u can make the bar look like the one in Leapord....

I believe this patch is on the latest svn deb in the repo...you can change the angle in apps/avant-window-navigator/bar in gconf-editor

More info at http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=319&page=1&isLive=true

#365

groo028 said: This patch by haytjes is really neat...u can make the bar look like the one in Leapord....

I believe this patch is on the latest svn deb in the repo...you can change the angle in apps/avant-window-navigator/bar in gconf-editor

More info at http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=319&page=1&isLive=true

It is in the deb as of version 0.1.2-svn214, and yes, it does rock. Still a couple of small bugs in it, but it works well and looks better.

#366

thanks reacocard....does the deb have the latest patch with the icons in the center?

now all we need is reflection and a stacks applet ;)

#367

groo028 said: thanks reacocard....does the deb have the latest patch with the icons in the center?

now all we need is reflection and a stacks applet ;)

It has the latest patch labeled as 'stable'.

#368

AWN has really stepped up and become the best dock option for Gnome. It so close to completely replacing the Gnome panel all together for me. Once some one gets a Main Menu applet working I'll be a very happy man. (Battery power, network connection, and volume control would make me so ecstatic that I don't want to think about it.):p Hell, if Neil makes a nice Affinity applet, that might replace the Main Menu for me. (Any one know how to assign a keyboard short cut forAffinity?)

I've seen a notification applet in some screen shots, but don't know how to find it. Is that still just a mock up? Is it a patch?

Once resize and angle make it into the GUI, I think a lot of people who have been waiting will make the jump. The only two things left holding it back from the prime time are the ability to place it where ever you want and a zoom function. Neither of those thing affect me though. I like it right where it is, and I think the OSXish zoom thing is way too distracting. Neil's bouncing icons are much more tasteful.

The new applet system add so much potential!

I've said it before, but I'll say it again anyways.... Thanks Neil!

#369

andrewsomething said: AWN has really stepped up and become the best dock option for Gnome. It so close to completely replacing the Gnome panel all together for me. Once some one gets a Main Menu applet working I'll be a very happy man. (Battery power, network connection, and volume control would make me so ecstatic that I don't want to think about it.):p Hell, if Neil makes a nice Affinity applet, that might replace the Main Menu for me. (Any one know how to assign a keyboard short cut forAffinity?)

Affinity is mapped to CTRL+ALT+A by default, you can change it in gconf.

I've seen a notification applet in some screen shots, but don't know how to find it. Is that still just a mock up? Is it a patch?

It's a patch, I'll see if I can get it into the next version of my debs. Instructions here: http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=273&page=1&isLive=true

Once resize and angle make it into the GUI, I think a lot of people who have been waiting will make the jump. The only two things left holding it back from the prime time are the ability to place it where ever you want and a zoom function. Neither of those thing affect me though. I like it right where it is, and I think the OSXish zoom thing is way too distracting. Neil's bouncing icons are much more tasteful.

I think Neil said he'd get zoom in eventually, but avant-preferences does need work.

The new applet system add so much potential!

Yes indeed, I'm just waiting for the python bindings so that I can start writing applets myself!

#370

@reacocard

And ofcourse I should have added a big thanks to you as well, for maintaining your repo and all the trouble shooting you do in this forum!

#371

Ah! Speaking of trouble shooting...

Have you been able to successfully change Affinity's short cut? I've found the option in gconf, but once I change it the short cut will not work. Not even if I put the default back in.

Even before I change it, the error "this key has no schema" is displayed.

Seems like a bug, but I was wondering if any one has been able to change it...

#372

andrewsomething said: Ah! Speaking of trouble shooting...

Have you been able to successfully change Affinity's short cut? I've found the option in gconf, but once I change it the short cut will not work. Not even if I put the default back in.

Even before I change it, the error "this key has no schema" is displayed.

Seems like a bug, but I was wondering if any one has been able to change it...

It works fine for me, I have it mapped to <Alt>F3. You do have to restart affinity for the change to take effect though. As for the schemas thing, that's just bad packaging on my part, I was lazy and didn't bother to install them. When the next svn rev of affinity comes out I'll fix that.

#373

Hummm... After restarting, the bindings chage. But not to what I wanted. <Ctrl>Space, which seems to not be used for other programs. Probably a problem some where else not with Affinity....

#374

I get some errors when compiling...

/bin/sed: can't read Hacks/Avant/avant-window-navigator/libawn/libawn.la: No such file or directory libtool: link: Hacks/Avant/avant-window-navigator/libawn/libawn.la' is not a valid libtool archive make[3]: * [switcher.la] Error 1 make[3]: Leaving directory /home/jexel/My Hacks/Avant/avant-window-navigator/applets/switcher' make[2]: * [all-recursive] Error 1 make[2]: Leaving directory /home/jexel/My Hacks/Avant/avant-window-navigator/applets' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory /home/jexel/My Hacks/Avant/avant-window-navigator' make: * [all] Error 2

#375

Very helpful thread, AWN is a great application. I have a couple of questions about Affinity, I have installed (affinity-tracker-svn_0.1-svn43_i386). It has no icon for launching, just a square white box. Also next to the search input box no icon just a square box with a cross in it? (there was a reply saying this was fixed with the svn versions), I have tried Ubuntu synaptic and this deb and both are the same. Is there thumbnail support in Affinity as there is in Tracker? Finally, I am new to the whole desktop search thing but can not see any advantage using Affinty over the Tracker search tool, what features does Affinity add?

#376

Campingman said: Very helpful thread, AWN is a great application.

I have a couple of questions about Affinity, I have installed (affinity-tracker-svn_0.1-svn43_i386). It has no icon for launching, just a square white box. Also next to the search input box no icon just a square box with a cross in it? (there was a reply saying this was fixed with the svn versions), I have tried Ubuntu synaptic and this deb and both are the same. Is there thumbnail support in Affinity as there is in Tracker? Finally, I am new to the whole desktop search thing but can not see any advantage using Affinty over the Tracker search tool, what features does Affinity add?

Where did you find affinity-tracker-svn? The feisty repo only has affinity and affinity-svn. Even so svn43 is the newest, so it should work.

Affinity is still very early on in development as compared to AWN. Neil has posted some screenshots of what's yet to come for Affinity, but AWN is receiving most of his development effort right now.

#377

Here you go: Edgy debs but work fine on Feisty for me.

http://syzygy42.tuxfamily.org/dists/edgy/avant-window-navigator/

It has a missing icon though, all the rest works ok. I have switched back to Beagle again now as Tracker was not finding all the files. How long should it take tracker to index? 100gig?

#378

reacocard said: Where did you find affinity-tracker-svn? The feisty repo only has affinity and affinity-svn. Even so svn43 is the newest, so it should work.

Affinity is still very early on in development as compared to AWN. Neil has posted some screenshots of what's yet to come for Affinity, but AWN is receiving most of his development effort right now.

I just noticed these are your deb's anyhow ????? Did you not know they were there?

#379

Campingman said: Here you go: Edgy debs but work fine on Feisty for me.

http://syzygy42.tuxfamily.org/dists/edgy/avant-window-navigator/

It has a missing icon though, all the rest works ok. I have switched back to Beagle again now as Tracker was not finding all the files. How long should it take tracker to index? 100gig?

Tracker shouldn't take too long, but it depends on what data you have. Lots of small files will index much more slowly than fewer large files. You can, of course, compile Affinity with beagle support if you want to use it, but s you noted, it currently doesn't provide much advantage over the default search tools.

Campingman said: I just noticed these are your deb's anyhow ????? Did you not know they were there?

No, I just didn't know you were still on the Edgy repo. If you're using feisty (or even if you're not), upgrading to the feisty repo is highly recommended, as the edgy repo will not be updated.

#380

Thanks reacocard,

I could not get the svn in the Feisty reps to recognise either Beagle or Tracker and the stable version would not work. The screenshots for the proposed enhancements look great, I will look out for the new version.

#381

Is it possible to use AWN with PowerPC? I'm assuming it's not since I get a segmentation fault (core dumped) message when I try run it after a make install...Please if you can offer help let me know!

L

#382

projectxz2005 said: Is it possible to use AWN with PowerPC? I'm assuming it's not since I get a segmentation fault (core dumped) message when I try run it after a make install...Please if you can offer help let me know!

L

I haven't the slightest idea. It wouldn't surprise me if it were impossible though. You might want to post to the AWN forums, there's a section for segfaults even. The AWN developer (njpatel) is a lot more active there than here, and if anyone can help you, it's him.

#383

Check out the new AWN look...

[[IMG]http://img510.imageshack.us/img510/1451/awnnewlookyr8.th.png[/IMG]](http://img510.imageshack.us/my.php?image=awnnewlookyr8.png)

#384

groo028 said: Check out the new AWN look...

[[IMG]http://img510.imageshack.us/img510/1451/awnnewlookyr8.th.png[/IMG]](http://img510.imageshack.us/my.php?image=awnnewlookyr8.png)

I saw that on the AWN forums, sweet isn't it? I'm working on getting a new deb with that patch included built as well, stay tuned for an update.

#385

I hope you can get a deb file for version 214 cause i can seem to compile it

#386

k420 said: I hope you can get a deb file for version 214 cause i can seem to compile it

There's one in the repo, you can download the packages directly from this page: http://syzygy42.tuxfamily.org/dists/feisty/avant-window-navigator/

#387

libawn says there is dependency errors > pkg: error processing /var/cache/apt/archives/libawn-svn_0.1.2-svn214_i386.deb (--unpack): trying to overwrite `/usr/lib/libawn.so.0.0.1', which is also in package libawn0 Errors were encountered while processing: /var/cache/apt/archives/libawn-svn_0.1.2-svn214_i386.deb

#388

k420 said: hey thankyou it worked great now i can resize my awn

hm, was that a question or a statment? ;) If it was a question, you can change the size by running 'gconf-editor', navigating to apps -> avant-window-navigator -> bar and setting bar_height to whatever you want.

Also, for those wanting the reflection effect shown a couple posts back by groo028, there are packages available here: http://download.tuxfamily.org/syzygy42/static/misc/packages/awn214reflect/ . I won't put them in the repo until a couple of issues with the patch are resolved, but you may use these packages if you want to try it in the meantime.

#389

k420 said: pkg: error processing /var/cache/apt/archives/libawn-svn_0.1.2-svn214_i386.deb (--unpack):

trying to overwrite `/usr/lib/libawn.so.0.0.1', which is also in package libawn0 Errors were encountered while processing: /var/cache/apt/archives/libawn-svn_0.1.2-svn214_i386.deb

I've actually run into this issue before.

It seems like your problem lies in the fact that you have two versions of AWN in your repos that have two different naming systems.

You seem to have Reacocard's AWN repo and Trevino's eye candy repo both in you source list. It's not a problem, but can cause issues if you try to install AWN from one while it has been previously installed through the other.

Reacocard's is named Avant-Window-Navigator-svn and depends on libawnsvn. Trevino's is named Avant-Window-Navigator and depends on libawn0.

libawnsvn and libawn0 will conflict.

You just need to be sure to completely uninstall one version prior to installing the other.

Does that get it working?

#390

groo028 said: Check out the new AWN look...

[[IMG]http://img510.imageshack.us/img510/1451/awnnewlookyr8.th.png[/IMG]](http://img510.imageshack.us/my.php?image=awnnewlookyr8.png)

Debs for this are now available: http://download.tuxfamily.org/syzygy42/static/misc/packages/awn214reflect/

#391

reacocard said: Debs for this are now available: http://download.tuxfamily.org/syzygy42/static/misc/packages/awn214reflect/

Hi, Thanks for the link, I installed but it still comes up with all the same preferences as the dock I just uninstalled, I searched and deleted all avant files I could find before installation. Do you know where the preferences are stored and how to completely remove the old version?

#392

Campingman said: Hi,

Thanks for the link, I installed but it still comes up with all the same preferences as the dock I just uninstalled, I searched and deleted all avant files I could find before installation. Do you know where the preferences are stored and how to completely remove the old version?

uninstall instructions are at the end of the guide, to delete the config, run

gconftool-2 --recursive-unset /apps/avant-window-navigator

Note that avant-preferences is the same regardless of the patch, you have to edit the bar/angle and bar/icon_offset options in gconf (apps/avant-window-navigator) by hand.

#393

Thanks reacocard, I did not realise you had to edit gconf. Got it all working now. Wow it is pretty stunning !! Thank you

#394

I want to align it to the bottom left of my monitor, and not center. How can I do this?

#395

~LoKe said: I want to align it to the bottom left of my monitor, and not center. How can I do this?

Not possible yet. Positioning is a planned feature, but may not be implemented for a while yet.

#396

This guy did it, unless he photoshopped it and moved it over (not terribly unlikely).

#397

~LoKe said: This guy did it, unless he photoshopped it and moved it over (not terribly unlikely).

I don't think that's actually a dock. It's just some really stylish icons arranged in a dock-like fashion. I did find the icons though: http://www.deviantart.com/deviation/49978906/

#398

~LoKe said: This guy did it, unless he photoshopped it and moved it over (not terribly unlikely).

That's not AWN.

#399

first, thanks for your packages reacocard :) now, awn looks nice but taskbar grow a lot when you have many windows opened, is there a way to group similar windows in taskbar applet (i looks like i ask for a planned feature) ?

#400

ayoli said: first, thanks for your packages reacocard :)

now, awn looks nice but taskbar grow a lot when you have many windows opened, is there a way to group similar windows in taskbar applet (i looks like i ask for a planned feature) ?

Not yet, but yes, I believe it is a planned feature.

#401

ok , thx. maybe i ve to find a way to tell to awn devs that it is also a very needed feature :)

#402

reacocard said: That's not AWN.

I was thinking they were just desktop icons, but how are they so small? I stretched them, ironically, making them smaller, but they're still large. Is there a gconf key to make them even smaller?

#403

~LoKe said: I was thinking they were just desktop icons, but how are they so small? I stretched them, ironically, making them smaller, but they're still large. Is there a gconf key to make them even smaller?

yes this one:

/apps/avant-window-navigator/bar/bar_height
#404

~LoKe said: I was thinking they were just desktop icons, but how are they so small? I stretched them, ironically, making them smaller, but they're still large. Is there a gconf key to make them even smaller?

I think they're just icons on a fully transparent panel with a special icon theme.

#405

reacocard said: I think they're just icons on a fully transparent panel with a special icon theme.

That sounds possible. I can't seem to use these icons on my panel, though. It doesn't list any of the icons in the folder, is there a reason why they wouldn't show up? They're all png's.

#406

is it just me or is the launcher broken. Its been like this for several days now without any updates. When I go into configure launchers, theres no launchers to configure. When this first happened I dismissed it as a gutsy issue but I am running it on a feisty machine now and still the same problem, this is fairly annoying because without launchers I end up having a gigantic awn menu. Could someone confirm this issue please?

#407

tretle said: is it just me or is the launcher broken. Its been like this for several days now without any updates. When I go into configure launchers, theres no launchers to configure. When this first happened I dismissed it as a gutsy issue but I am running it on a feisty machine now and still the same problem, this is fairly annoying because without launchers I end up having a gigantic awn menu. Could someone confirm this issue please?

I can also confirm this issue- when I go into "Configure Launchers" there's no launchers, and I can't add anything. This is using the latest SVN as of 1:30 PM EST.

#408

I'm not using the SVN, and I can't add launchers. On bootup I get a thin black sliver.

On another note, I've been told the SVN version is better to use than the regular.

#409

CFBauer said: I'm not using the SVN, and I can't add launchers. On bootup I get a thin black sliver.

On another note, I've been told the SVN version is better to use than the regular.

Yes, svn is much better, you should upgrade.

#410

I just got AWN, and I can't get any Launchers to appear, is there any way to add launchers to the menu?

#411

Drag and drop from menu to bar?

#412

xenoph0be said: Drag and drop from menu to bar?

or from /usr/share/applications, that seems to be more reliable.

#413

Awesome. I got the OSX Leopard-looking dock working on two of my computers. One with Ubuntu Feisty and the other with Xubuntu Feisty. I had the older version on them before, but this version seems much more usable. Especially with the trash can and the workspace switcher on it.

Tried to get this version working on Edgy (my laptop), but I have a lot of dependency problems. Is it possible to get the newest verion working on Edgy? I gave up looking through here and google searches to do some other stuff for a while....

#414

reacocard said: It's a problem with your repositories. Perhaps a third-party repo screwed it up, or you don't have all that you need in your list. Make sure there are deb and deb-src lines for all the ubuntu repos, with all components enabled. In it's simplest form, that would look something like this:

## Ubuntu
deb http://mirrors.kernel.org/ubuntu/ feisty main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty main restricted universe multiverse

## Updates
deb http://mirrors.kernel.org/ubuntu/ feisty-updates main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty-updates main restricted universe multiverse

## Backports
deb http://mirrors.kernel.org/ubuntu/ feisty-backports main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty-backports main restricted universe multiverse

## Security
deb http://mirrors.kernel.org/ubuntu/ feisty-security main restricted universe multiverse
deb-src http://mirrors.kernel.org/ubuntu/ feisty-security main restricted universe multiverse

adjust your sources.list accordingly, apt-get update and try again. If that doesn't fix it, it's a problem with some unofficial repo you've added, so you'd have to find out which, remove it and downgrade libwnck et al. to the Ubuntu versions.

To downgrade make sure you have your repo set something like the ones above then run:

 sudo apt-get install libwnck18=2.16.1-0ubuntu1.1.

This will do the trick then you should be able to install all the recommended packages and compile the source.

Hope this helps

#415

Anyone know how the development is structured? Are they trying to come up with a stable 2.0 based on the existing code, and pushng all new untested/ploished code into 3.0alpha?

It seems like at the moment features are being put far infort of stability. Hopefully they refine the code and achieve some distro inclusion.

#416

tehkain said: Anyone know how the development is structured?

Are they trying to come up with a stable 2.0 based on the existing code, and pushng all new untested/ploished code into 3.0alpha?

It seems like at the moment features are being put far infort of stability. Hopefully they refine the code and achieve some distro inclusion.

There's some talk on this, Neil is planning to do a thorough code audit after guadec, so things should improve then.

Also, I've updated the repo packages, svn218 is in now, enjoy!

#417

reacocard said: Also, I've updated the repo packages, svn218 is in now, enjoy!

Thanks. I really like the new active window highlighting. But what's with the grey bar at the bottom of the dock? Any way to remove this?

#418

@ SQuark - the idea is that the bar it sits on is 3d

#419

Hm, I see. I put the angle to 0 (I keep the dock completely transparent, so I don't really care what the angle is) and that got rid of the line. But now the reflections don't go all the way to the bottom of the screen anymore. Anyway, I've asked at the awn forum, so hopefully, this'll be fixed soon.

#420

reacocard said: Debs for this are now available: http://download.tuxfamily.org/syzygy42/static/misc/packages/awn214reflect/

Am I having bad luck or is this site timing out for anyone else? I'm wanting to hop on the new reflecting AWN band-wagon. =] If anyone else could share the deb I'd greatly appreciate it.

#421

notwen said: Am I having bad luck or is this site timing out for anyone else? I'm wanting to hop on the new reflecting AWN band-wagon. =] If anyone else could share the deb I'd greatly appreciate it.

Right now everything from that repository is timing out for me too, actually.

edited for clarity~

#422

Try again because everything appears to be working.

#423

Hip, I'll give it a try when I get back home. Thanks for the update. =]

#424

notwen said: Am I having bad luck or is this site timing out for anyone else? I'm wanting to hop on the new reflecting AWN band-wagon. =] If anyone else could share the deb I'd greatly appreciate it.

That's depreciated now, the repo has the newest stuff (svn226-0!)

#425

I love the new rounded shape icon hilighting! Makes the angled bar look amazing!

Feature freeze and refine from this release!

#426

groo028 said: Check out the new AWN look...

[[IMG]http://img510.imageshack.us/img510/1451/awnnewlookyr8.th.png[/IMG]](http://img510.imageshack.us/my.php?image=awnnewlookyr8.png)

I have installled the latest svn through synaptic, but I'm not getting this spiffy looking AWN dock. Am I missing something here? =p Anyone care to enlighten me? =]

#427

notwen said: I have installled the latest svn through synaptic, but I'm not getting this spiffy looking AWN dock. Am I missing something here? =p Anyone care to enlighten me? =]

You have to set a couple of gconf keys by hand, open gconf-editor and under apps -> avant-window-navigator -> bar,

bar_angle: set to 45 icon_offset: set to 13

then restart AWN and enjoy!

#428

Wow, great work! I love it!

#429

Sweet, I'll give this a try once I get home from work and post my results. Thanks as always. =]

#430

The folder /apps/avant-window-navigator isn't showing up in gconf-editor. What am I doing wrong?

#431

I tried "avant-preferences", and got this:

/usr/share/avant-window-navigator/window.glade

Traceback (most recent call last): File "/usr/bin/avant-preferences", line 274, in <module> app = main() File "/usr/bin/avant-preferences", line 158, in __init__ self.setup_chooser(APP_ACTIVE_PNG, self.wTree.get_widget("activefilechooser")) File "/usr/bin/avant-preferences", line 241, in setup_chooser chooser.set_filename(self.client.get_string(key)) TypeError: GtkFileChooser.set_filename() argument 1 must be string, not None

I tried installing several GNOME/GConf-related development headers, none of which fixed it, on the hunch that a predefined constant wasn't getting passed to the function. What do I need to do? EDIT: Never mind, it worked after starting Compiz.

#432

irideabike said: The folder /apps/avant-window-navigator isn't showing up in gconf-editor. What am I doing wrong?

You have to run AWN at least once before those will show up.

#433

reacocard said: You have to run AWN at least once before those will show up.

It's been running constantly for me and none of those options show up.

#434

I have a strange problem, my first icon is bigger than the others:

http://img105.imageshack.us/my.php?image=screenshotwi9.png

As you can see the firefox icon is bigger for no aparent reason.

This issue solves itself when I "reload" the icon theme or change it and it looks like this:

http://img522.imageshack.us/my.php?image=screenshot1gq2.png

Any ideas on how to solve this for good?

#435
#436

fathefner said: how do make the Avant Dock look like this... http://ubuntuforums.org/attachment.php?attachmentid=27569&d=1174062417

this screenshot just looks like default awn look. here's mine (screen shot attached) @reacocard: again many thanks for your work :)

#437

I am experiencing a bug which causes a white line to appear on the right of the navigator...I would appreciate any advice you have.

-Megaqwerty

#438

Megaqwerty:

I get that white line when I try to add the systray applet. It doesn't seem to work, and that line is all I see. Right click > applets and remove the applet.

Likewise, I just get a small dot for the workspace manager.

#439

loopeando said: I have a strange problem, my first icon is bigger than the others:

http://img105.imageshack.us/my.php?image=screenshotwi9.png

As you can see the firefox icon is bigger for no aparent reason.

This issue solves itself when I "reload" the icon theme or change it and it looks like this:

http://img522.imageshack.us/my.php?image=screenshot1gq2.png

Any ideas on how to solve this for good?

Anyone?

#440

ok i have tried again and when i load mine it looks like its the attachment

#441

fathefner said: ok i have tried again and when i load mine it looks like its the attachment

you don't have compiz or beryl activated. awn work only under compositing ie. compiz or beryl.

#442

NOTICE TO AMD64 USERS ABOUT THE BLOG

Hi, I am the maker of the amd64 blog. I no longer use amd64, so the svn's are out of date. The links may be broken as well. Sorry about that, but amd64 was really annoying me ;)

#443

loopeando said: I have a strange problem, my first icon is bigger than the others:

http://img105.imageshack.us/my.php?image=screenshotwi9.png

As you can see the firefox icon is bigger for no aparent reason.

This issue solves itself when I "reload" the icon theme or change it and it looks like this:

http://img522.imageshack.us/my.php?image=screenshot1gq2.png

Any ideas on how to solve this for good?

Same problem here. Also, it appears that the glass reflection is intermitent. I set the icon_offset parameter and it looked great....then it goes away after a while.

#444

alphane said: Megaqwerty:

I get that white line when I try to add the systray applet. It doesn't seem to work, and that line is all I see. Right click > applets and remove the applet.

Likewise, I just get a small dot for the workspace manager.

Thanks, that fixed it.

#445

loopeando said: I have a strange problem, my first icon is bigger than the others:

http://img105.imageshack.us/my.php?image=screenshotwi9.png

As you can see the firefox icon is bigger for no aparent reason.

This issue solves itself when I "reload" the icon theme or change it and it looks like this:

http://img522.imageshack.us/my.php?image=screenshot1gq2.png

Any ideas on how to solve this for good?

No idea. I saw someone with the same problem in the AWN forums, no solution yet there either.

fathefner said: ok i have tried again and when i load mine it looks like its the attachment

You have to be running a composite manage for AWN to work properly (I believe that is said at least twice in the guide)

#446

gavintlgold said: NOTICE TO AMD64 USERS ABOUT THE BLOG

Hi, I am the maker of the amd64 blog. I no longer use amd64, so the svn's are out of date. The links may be broken as well. Sorry about that, but amd64 was really annoying me ;)

Ah ok, I'll remove it. It'd be gone soon anyway, I'm getting a new computer soon that'll be 64-bit so I'll be able to provide both 32- and 64-bit packages.

#447

Is it normal that AWN's windows list part uses default icon theme? How can i fix this?

#448

I have my new "shiny reflecting" AWN up & running. Neil really seems to be pumping out new svns like crazy, seems like I have had an AWN update every other day for the past week-ish. Keep it up. Thanks again. =]

#449

zekopeko said: you don't have compiz or beryl activated. awn work only under compositing ie. compiz or beryl.

Or Xfce! :razz:

#450

Hi,

I have just updated my system and noticed an update for AWN included, I already had one of the later versions (I cannot remember which, but the patched version for reflection). Since the upgrade I noticed a drop in performance of the pc and the hard disk spinning up a lot more than usual. I tracked it down to AWN when in autohide. I do not like it on the desktop so always autohide it. When AWN is hidden my xorg goes up to 61.3% CPU consumption as opposed to 2% when AWN is displayed ? Does anyone know why this would happen and if it normal?

#451

Campingman said: Hi,

I have just updated my system and noticed an update for AWN included, I already had one of the later versions (I cannot remember which, but the patched version for reflection). Since the upgrade I noticed a drop in performance of the pc and the hard disk spinning up a lot more than usual. I tracked it down to AWN when in autohide. I do not like it on the desktop so always autohide it. When AWN is hidden my xorg goes up to 61.3% CPU consumption as opposed to 2% when AWN is displayed ? Does anyone know why this would happen and if it normal?

This is a known bug with auto-hide on newer versions, just disable auto-hide for now or use the 'force version' option in synaptic to downgrade.

#452

reacocard said: This is a known bug with auto-hide on newer versions, just disable auto-hide for now or use the 'force version' option in synaptic to downgrade.

Thanks, will have it displayed for now. I have only a small monitor so it gets in the way sometimes. Could be a good excuse to go get a new monitor though! :):):)

#453

I like awm and affinity very much, thank you for developing this.

Question: How can I get the notification/systray applet to work? All I get after adding is a white vertical thin stripe ? Or anyy other idea how to get the network manager applet to show up in awm ? This is the last problem i have to solve to get rid of my last gnome-panel...

Help woult be appreciated.

#454

Hi y'all,

I am encountering a problem when checkinstalling AWN.

My system is: VMware : Ubuntu Edgy Appliance uname -r : 2.6.17-11-386

in the Avant Window Navigator folder I do:


./autogen.sh --prefix=/usr

(as per instruction in the README) and it works fine.

then


make

works too :mrgreen:

and finally,


sudo checkinstall -D

Fails with the following messages:

/bin/bash ../../libtool --mode=install /usr/bin/install -c 'switcher.la' '/usr/lib/awn/applets/switcher/switcher.la' libtool: install: error: cannot install switcher.la' to a directory not ending in /usr/local/lib/awn/applets/switcher make[3]: * [install-switcherlibLTLIBRARIES] Error 1 make[3]: Leaving directory /home/lionel/avant-window-navigator/applets/switcher' make[2]: * [install-am] Error 2 make[2]: Leaving directory /home/lionel/avant-window-navigator/applets/switcher' make[1]: * [install-recursive] Error 1 make[1]: Leaving directory /home/lionel/avant-window-navigator/applets' make: * [install-recursive] Error 1

**** Installation failed. Aborting package creation.

Cleaning up...OK

Bye.

Help would be nice!

For your information: the compilation of Affinity went without problems. However, note that I could not get my hands on libbeagle-dev :|

Cheers,

Ar@mi$

#455

I rarely get checkinstall to work without first doing: ``` sudo make install


-Megaqwerty
#456

cywhale said: I like awm and affinity very much, thank you for developing this.

Question: How can I get the notification/systray applet to work? All I get after adding is a white vertical thin stripe ? Or anyy other idea how to get the network manager applet to show up in awm ? This is the last problem i have to solve to get rid of my last gnome-panel...

Help woult be appreciated.

Unfortunately, I have no idea how to do this myself. :( If anyone knows, please share so that we can all enjoy it.

Aramis said: Hi y'all,

I am encountering a problem when checkinstalling AWN.

My system is: VMware : Ubuntu Edgy Appliance uname -r : 2.6.17-11-386

in the Avant Window Navigator folder I do:


./autogen.sh --prefix=/usr

(as per instruction in the README) and it works fine.

then


make

works too :mrgreen:

and finally,


sudo checkinstall -D

Fails with the following messages:

Help would be nice!

For your information: the compilation of Affinity went without problems. However, note that I could not get my hands on libbeagle-dev :|

Cheers,

Ar@mi$

Checkinstall is a dirty hack. AWN and Affinity both support the 'make uninstall' method of removing as said in the last part of the guide, use that instead of relying on checkinstall. As for libbeagle-dev, that may be because you are running edgy (as shown in your profile), but it likely still exists under a different name, search in synaptic for beagle to find it.

#457

Hi there,

Does anybody know how to get the patched version of awn with the reflections in it? I've seen reference to it here and wasn't sure if maybe I haven't gotten it through an update because I have repo that's a bit behind.

I'm using http://download.tuxfamily.org/syzygy42 and have the svn version of the libawn and avant-window-navigator packages install.

Thanks

#458

reacocard said: This is a known bug with auto-hide on newer versions, just disable auto-hide for now or use the 'force version' option in synaptic to downgrade.

Hi Reacocard,

I see there is a patch up in the awn forums for this now, trouble is I have no idea how to apply the patch. Have searched the forums and googled a bit but cannot find a howto for this Could you point me in the right direction? I have had to go back to Kiba-dock and it is pretty ugly compared to awn

Thanks

#459

It's actually not that hard, but it wont hurt to wait a couple of days. Saturday or Sunday Neil (maintainer of the project) is back and will probably add all the patches (there are a nice number of them) including the auto hide patch to the SVN.

If you definitely want to patch you need to fetch the SVN source first (only SVN rev 227 will work)

svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator cd avant-window-navigator patch -p0 < [path_to_the_patch] ./autogen.sh make sudo make install

I'm only not sure of the -p0, it could be -p1 to

greetz

#460

I added

deb http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator

and pasted into terminal

wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg sudo apt-key add 8434D43A.gpg rm 8434D43A.gpg sudo apt-get update

But I don't seem to have the program in my application list

#461

djrobthaman said: Hi there,

Does anybody know how to get the patched version of awn with the reflections in it? I've seen reference to it here and wasn't sure if maybe I haven't gotten it through an update because I have repo that's a bit behind.

I'm using http://download.tuxfamily.org/syzygy42 and have the svn version of the libawn and avant-window-navigator packages install.

Thanks

Take a look at my post a little ways back, which explains how to set the gconf keys to get the new look.

Campingman said: Hi Reacocard,

I see there is a patch up in the awn forums for this now, trouble is I have no idea how to apply the patch. Have searched the forums and googled a bit but cannot find a howto for this Could you point me in the right direction? I have had to go back to Kiba-dock and it is pretty ugly compared to awn

Thanks

haytjes said: It's actually not that hard, but it wont hurt to wait a couple of days. Saturday or Sunday Neil (maintainer of the project) is back and will probably add all the patches (there are a nice number of them) including the auto hide patch to the SVN.

If you definitely want to patch you need to fetch the SVN source first (only SVN rev 227 will work)

svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator cd avant-window-navigator patch -p0 < [path_to_the_patch] ./autogen.sh make sudo make install

I'm only not sure of the -p0, it could be -p1 to

greetz

Thanks for answering haytjes. I'm on vacation right now so I only have intermittent internet access and won't be able to keep my debs up-to-date with the latest patches, although I will try to remain in sync with SVN. If there are any patches that REALLY need to be applied, post here or PM me and I'll include them as soon as I can.

#462

Ludford said: I added

deb http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator

and pasted into terminal

wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg sudo apt-key add 8434D43A.gpg rm 8434D43A.gpg sudo apt-get update

But I don't seem to have the program in my application list

did you do the 'sudo apt-get install avant-window-navigator-svn' part? AWN appears under Applications -> Accessiories when installed.

#463

Nope, I sure am dumb, works now

#464

haytjes said: It's actually not that hard, but it wont hurt to wait a couple of days. Saturday or Sunday Neil (maintainer of the project) is back and will probably add all the patches (there are a nice number of them) including the auto hide patch to the SVN.

If you definitely want to patch you need to fetch the SVN source first (only SVN rev 227 will work)

svn checkout http://avant-window-navigator.googlecode.com/svn/trunk/ avant-window-navigator cd avant-window-navigator patch -p0 < [path_to_the_patch] ./autogen.sh make sudo make install

I'm only not sure of the -p0, it could be -p1 to

greetz

Thanks haytjes

I will wait for the patches to be applied to the deb packages

#465

reacocard said: [...]

Checkinstall is a dirty hack. AWN and Affinity both support the 'make uninstall' method of removing as said in the last part of the guide, use that instead of relying on checkinstall. As for libbeagle-dev, that may be because you are running edgy (as shown in your profile), but it likely still exists under a different name, search in synaptic for beagle to find it.

Ok noted! I will check beagle out via Synaptic and get to you.

To Be Continued.

Ar@mi$

#466

UPDATE,

I found the beagle dev package via synaptic and go it installed no problem. I did the ./autogen.sh and so on as well as the sudo make install - sadly same results again. Same output :(

/bin/bash ../../libtool --mode=install /usr/bin/install -c 'switcher.la' '/usr/lib/awn/applets/switcher/switcher.la' libtool: install: error: cannot install switcher.la' to a directory not ending in /usr/local/lib/awn/applets/switcher make[3]: * [install-switcherlibLTLIBRARIES] Error 1 make[3]: Leaving directory /home/lionel/avant-window-navigator/applets/switcher' make[2]: * [install-am] Error 2 make[2]: Leaving directory /home/lionel/avant-window-navigator/applets/switcher' make[1]: * [install-recursive] Error 1 make[1]: Leaving directory /home/lionel/avant-window-navigator/applets' make: * [install-recursive] Error 1

am I reading the error right? it is simply a folder access problem? or is it something deeper?

Cheers,

Ar@mi$

#467

When I attempt to install the dependencies, it tells me to sudo apt-get -f install, but that doesn't fix anything, and now my update manager is broken. Halp!

#468

Aramis said: UPDATE,

I found the beagle dev package via synaptic and go it installed no problem. I did the ./autogen.sh and so on as well as the sudo make install - sadly same results again. Same output :(

am I reading the error right? it is simply a folder access problem? or is it something deeper?

Cheers,

Ar@mi$

BlahMan_of.Doom said: When I attempt to install the dependencies, it tells me to sudo apt-get -f install, but that doesn't fix anything, and now my update manager is broken. Halp!

Could you both post the full output you get when running your commands? I need a bit more information before I can tell you how to fix it.

#469

I get this error > /usr/include/unistd.h:646: error: stray &#8216;\177&#8217; in program /usr/include/unistd.h:646: error: expected &#8216;=&#8217;, &#8216;,&#8217;, &#8216;;&#8217;, &#8216;asm&#8217; or &#8216;__attribute__&#8217; before &#8216;t&#8217; make[3]: * [awn-task-manager.o] Error 1 make[3]: Leaving directory /installs/avant/avant-window-navigator/src' make[2]: * [all] Error 2 make[2]: Leaving directory /installs/avant/avant-window-navigator/src' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/installs/avant/avant-window-navigator' make: * [all] Error 2

When I try to > make

Any suggestions on what to do?

----------

Hmm now it works. I havent changed anything so I have no idea what just happened.

#470

hi everyone,

i am trying to follow the instructions and i get the following error when i use ./autogen.sh

shift: 364: can't shift that many

can anybody tell me what this is, and how i can avoid it?

#471

I would like to suggest making the following change (debdiff) to the affinity* source packages (a description of the changes is provided in the addition to debian/changelog). Also, I'm curious as to why you built the packages without an orig tarball (they're not native packages). Why don't you look at getting them included into Ubuntu or Debian proper? Look at https://wiki.ubuntu.com/MOTU for more information; REVU being the key tool here.

diff -Nru /tmp/PMhqcw8NDv/affinity-0.1/debian/changelog /tmp/OjY7ppMD5B/affinity-0.1/debian/changelog
--- /tmp/PMhqcw8NDv/affinity-0.1/debian/changelog       2007-04-21 16:57:19.000000000 -0400
+++ /tmp/OjY7ppMD5B/affinity-0.1/debian/changelog       2007-07-24 05:15:47.000000000 -0400
@@ -1,3 +1,9 @@
+affinity (0.1-2) feisty; urgency=low
+
+  * debian/control: Recommend tracker, use ${shlibs:Depends}
+
+ -- Toby Smithe <tsmithe@ubuntu.com>  Tue, 24 Jul 2007 10:15:28 +0100
+
 affinity (0.1-1) feisty; urgency=low
 
   * Switch to feisty
diff -Nru /tmp/PMhqcw8NDv/affinity-0.1/debian/control /tmp/OjY7ppMD5B/affinity-0.1/debian/control
--- /tmp/PMhqcw8NDv/affinity-0.1/debian/control 2007-04-21 16:58:03.000000000 -0400
+++ /tmp/OjY7ppMD5B/affinity-0.1/debian/control 2007-07-24 05:10:36.000000000 -0400
@@ -1,5 +1,5 @@
 Source: affinity
-Section: unknown
+Section: x11
 Priority: optional
 Maintainer: Aren Olson <reacocard@gmail.com>
 Build-Depends: debhelper (>= 5), autotools-dev, libgnome-vfs-dev, libgtk2.0-dev,  libgnome2-dev, libgnome-desktop-dev, libtrackerclient-dev
@@ -7,7 +7,8 @@
 
 Package: affinity
 Architecture: any
-Depends: libgnomevfs2-0, libgtk2.0-0, libgnome2-0, libgnome-desktop-2, libtrackerclient0
+Depends: ${shlibs:Depends}
+Recommends: tracker
 Conflicts: affinity-beagle
 Description: Affinity is a desktop search tool which provides a front-end to various desktop information
  Affinty is a desktop search tool, which hopes to provide
diff -Nru /tmp/PMhqcw8NDv/affinity-0.1/debian/rules /tmp/OjY7ppMD5B/affinity-0.1/debian/rules
--- /tmp/PMhqcw8NDv/affinity-0.1/debian/rules   2007-04-21 16:58:18.000000000 -0400
+++ /tmp/OjY7ppMD5B/affinity-0.1/debian/rules   2007-07-24 05:02:57.000000000 -0400
@@ -96,7 +96,7 @@
        dh_compress
        dh_fixperms
 #      dh_perl
-#      dh_makeshlibs
+       dh_makeshlibs
        dh_installdeb
        dh_shlibdeps
        dh_gencontrol
#472

.t. said: I would like to suggest making the following change (debdiff) to the affinity* source packages (a description of the changes is provided in the addition to debian/changelog). Also, I'm curious as to why you built the packages without an orig tarball (they're not native packages). Why don't you look at getting them included into Ubuntu or Debian proper? Look at https://wiki.ubuntu.com/MOTU for more information; REVU being the key tool here.

It's built without orig.tar.gz because they're quick-and-dirty debs, with the svn ones built automatically by a script. An orig.tar.gz shouldn't really be needed here anyway since the source isn't modified, I put patches into the debian dir to do that if needed. I'm not looking into getting it into ubuntu/debian because 1) I don't think AWN and Affinity are stable enough for that yet (although AWN is close) and 2) I'm not good enough at packaging. I'll get your patch into the packages eventually, but I can't right now since this wifi hotspot won't let me use ftp. :(

#473

Ok, that's cool. I understand the stability concerns, but I feel that everyone started somewhere, and you can only get better at packaging by doing the maintenance. So, when they are more stable, do get them uploaded, and you will feel more confident. (I know I'm getting to that point; this is only the second time I've ever made a debdiff to improve a package). By the way, I wasn't sure of the best way to reach you, so you've probably received an e-mail from me as well. I hope you get to a hotspot soon, and thanks;

Toby

#474

How would I add the OSX look to the AWN? Is it even available? Thanks for this!

Smartboy

#475

smartboyathome said: How would I add the OSX look to the AWN? Is it even available? Thanks for this!

Smartboy

I assume that you mean the Leopard dock? Where the icons appear to sit on a plane...

Right now there is no GUI for that, but you can change it in gconfig. Goto: Apps>Avant-Window-Navigator>bar there you will see settings for bar_angle and icon_offset. Change the angle to 45 and the offset 15 to get the basic look.

#476

Thanks, it worked!

#477

question: I have installed both these wonderful little gadgets, and loving them already. But for affinity search, I am only loving the idea. Cause I am having troubles making it useful. As of yet, it only allows me to search installed applications, but not my home folder. Also, can I add emails from Evolution and address books to the search?

Just the indexing of the home folder (and it's subs) would be great for starters thanks

Thanks

V

#478

Vevmesteren said: question: I have installed both these wonderful little gadgets, and loving them already. But for affinity search, I am only loving the idea. Cause I am having troubles making it useful. As of yet, it only allows me to search installed applications, but not my home folder. Also, can I add emails from Evolution and address books to the search?

Just the indexing of the home folder (and it's subs) would be great for starters thanks

Thanks

V

You need to have Tracker installed and configured properly. The default settings are fine I believe, so just do

sudo apt-get install tracker

and then run

trackerd

to start tracker. Tracker will then index your home folder, and when its done doing that Affinity should be able to search your home just fine. Just remember to add trackerd to your statup programs so that it runs every time you log in.

#479

meono said: hi everyone,

i am trying to follow the instructions and i get the following error when i use ./autogen.sh

shift: 364: can't shift that many

can anybody tell me what this is, and how i can avoid it?

I also get this error... Although I was following the method in this post:

http://ubuntuforums.org/showthread.php?t=514518&highlight=awn

Can anyone offer any assistance?

EDIT: Forgot to add, I'm using Ubuntu 7.04 64bit

#480

AWN has moved from Google Code to Launchpad. See here for new instructions for installing from the most recent source code: http://ubuntuforums.org/showthread.php?t=514518

#481

andrewsomething said: AWN has moved from Google Code to Launchpad. See here for new instructions for installing from the most recent source code: http://ubuntuforums.org/showthread.php?t=514518

Those were the steps I was using -- I figured I'd post here since this seems to be the more popular thread. Still getting stuck on the "Preparing for installation" step.

#482

I get this error when following the instructions:

Failed to fetch http://archive.canonical.com/ubuntu/dists/feisty-commercial/main/binary-i386/Packages.bz2 Sub-process bzip2 returned an error code (2) Failed to fetch http://archive.canonical.com/ubuntu/dists/feisty-commercial/main/binary-i386/Packages.bz2 Sub-process bzip2 returned an error code (2) Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead.

#483

andrewsomething said: AWN has moved from Google Code to Launchpad. See here for new instructions for installing from the most recent source code: http://ubuntuforums.org/showthread.php?t=514518

yeah I'll update the guide eventually, too busy right now, hopefully within a week. Repos has an updated version already, though I'm gonna change the package name soon since the -svn suffix isn't correct anymore (and the rev #s are different now, grr).

#484

I have managed to create a proper deb set for gutsy using the latest svn (as of 19:30 GMT). I haven't had a chance to test it yet (I compiled it remotely using pdebuild and my shell), but it theoretically should work. I used reacocard's debian rules that he used to build the packages found in this thread, so everything should work properly.

Is anyone willing to give them a shot?

#485

reacocard said: yeah I'll update the guide eventually, too busy right now, hopefully within a week.

Cool! I just wanted to get the new info into the thread since I know lot of people use this thread for support. Hell, I point people to it all the time....

#486

I am having a problem getting Affinity to actually figure out I have beagle installed (cant search for Docs within Affinty). Running on a 64bit system running ubuntu 64bit. I don't know if anyone has had this problem. Any help?

#487

Im getting this error:

File "/usr/local/bin/avant-preferences", line 221, in setup_chooser chooser.set_filename(self.client.get_string(key)) TypeError: GtkFileChooser.set_filename() argument 1 must be string, not None

when trying to run awn. Compiled from source according to the directions on this thread. Running Feisty AMD64.

#488

RockoTDF said: Im getting this error:

File "/usr/local/bin/avant-preferences", line 221, in setup_chooser chooser.set_filename(self.client.get_string(key)) TypeError: GtkFileChooser.set_filename() argument 1 must be string, not None

when trying to run awn. Compiled from source according to the directions on this thread. Running Feisty AMD64.

I would use this how-to (http://ubuntuforums.org/showthread.php?t=514518) for AMD64 build. Its working fine for me. Just can't make a *.deb* to post for users like us.

#489

Instead of just shown the windows you have open is there anyway to have it behave like a shortcut dock? like in osx? I was hoping to replace my cheap looking gnome panel finally.

PS: I installved via the repos method, and when I try to add a launcher nothing happens. Also I want to disable having opened windows showing up in the bar. I just want the launchers.

Thanks.

#490

sefs said: Instead of just shown the windows you have open is there anyway to have it behave like a shortcut dock? like in osx? I was hoping to replace my cheap looking gnome panel finally.

PS: I installved via the repos method, and when I try to add a launcher nothing happens. Also I want to disable having opened windows showing up in the bar. I just want the launchers.

Thanks.

Go to the NEW how-to guide (http://ubuntuforums.org/showthread.php?t=514518). It will help you out a lot. The versions in the repos are not the most current version. The newest SVN functions similar to the OSX dock. And just to say, the OSX dock also shows the currently open windows. If you do not like this, I do not know how to get rid of it, but know Kiba-Dock is closer to what you are looking for.

#491

GumbyX said: Go to the NEW how-to guide (http://ubuntuforums.org/showthread.php?t=514518). It will help you out a lot. The versions in the repos are not the most current version. The newest SVN functions similar to the OSX dock. And just to say, the OSX dock also shows the currently open windows. If you do not like this, I do not know how to get rid of it, but know Kiba-Dock is closer to what you are looking for.

um, the repos are the latest, I update them every day

#492

reacocard said: um, the repos are the latest, I update them every day

Then I don't know. :( Me sorry. I compiled from source and am having no problems. I am sorry I made a mistake.

#493

[COLOR="Red"][SIZE="7"]IMPORTANT UPDATE!!![/SIZE][/COLOR]

I have updated the guide and repos now. Those of you currently using the repos will need to use this command to get further updates:

sudo apt-get remove avant-window-navigator-svn libawn libawn-svn
sudo apt-get install avant-window-navigator-bzr
#494

i@reacocard

Cool! Glad to see this.

Is avant-window-navigator-bzr a meta package?

Also, I've been building my own from source for awhile for testing reasons since I've gotten involved more with AWN, but I've noticed that I never removed the residual configs for avant-window-navigator-svn and libawn-svn. If I do so at this point do you know if it will break my current set up? Not a big deal if it does, but just wondering if you'd know.

#495

reacocard said:

I have updated the guide and repos now. Those of you currently using the repos will need to use this command to get further updates:

sudo apt-get remove avant-window-navigator-svn libawn libawn-svn
sudo apt-get install avant-window-navigator-bzr

Will this fix my problems ?


Failed to fetch http://archive.canonical.com/ubuntu/...6/Packages.bz2 Sub-process bzip2 returned an error code (2)
Failed to fetch http://archive.canonical.com/ubuntu/...6/Packages.bz2 Sub-process bzip2 returned an error code (2)
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.

I tried the new instructions as well but they didn't work either.

#496

andrewsomething said: i@reacocard

Cool! Glad to see this.

Is avant-window-navigator-bzr a meta package?

Also, I've been building my own from source for awhile for testing reasons since I've gotten involved more with AWN, but I've noticed that I never removed the residual configs for avant-window-navigator-svn and libawn-svn. If I do so at this point do you know if it will break my current set up? Not a big deal if it does, but just wondering if you'd know.

It is not a metapackage, but it depends on libawn-bzr and they both conflict with other awn package names, so everything should work fine. The reason for that pair of commands is I made a goof in the packaging, next update will fix that and and apt-get install avant-window-navigator-bzr should be all that's needed.

EDIT: Just be sure to remove all your current setup before installing and you'll be fine. Make sure there are no awn executables left over in /usr/local/bin, that's a common source of problems when switching. EDIT2: Just realized you may be asking something different. The residual configs are just old gconf schemas, it shouldn't hurt anything to purge them.

toontastic said: Will this fix my problems ?


Failed to fetch http://archive.canonical.com/ubuntu/...6/Packages.bz2 Sub-process bzip2 returned an error code (2)
Failed to fetch http://archive.canonical.com/ubuntu/...6/Packages.bz2 Sub-process bzip2 returned an error code (2)
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.

I tried the new instructions as well but they didn't work either.

That's not a problem with my repo, looks like the canonical ubuntu-commercial repos (or whatever they're called). Try commenting the lines for that repo out of your sources.list.

#497

@reacocard: what about integrate stack applet patch to your awn package ? would be great ;)

#498

ayoli said: @reacocard: what about integrate stack applet patch to your awn package ? would be great ;)

The stack applet needs a newer GTK than feisty has I believe. I already tried to patch AWN for it actually, and the applet came out as just a white line. When the stacks applet works on Feisty, I'll include it.

#499

reacocard said: The stack applet needs a newer GTK than feisty has I believe. I already tried to patch AWN for it actually, and the applet came out as just a white line. When the stacks applet works on Feisty, I'll include it.

I've actually got it running on Feisty. Did you try a reboot? That did it for me.

#500

reacocard: Do you have any packages which have the option to turn off the glow behind the active icons. I know there is a patch for it somewhere, but i was just wondering if it was included in any packages?

#501

when will a proper way of adding launchers be implemented. Currently I cant add things like applets that i can add to regular gnome panels like sticky notes, desktop revealer etc.

Also I can't get thunderbird icon dragged unto bar. most other apps can be dragged on, but for some reason not thunerbird.

The add button in configure launchers still does nothing.

If i change the icon in for a luncher it reverts back to what it was before after awn is turned off and back on. (how to fix)

#502

reacocard said: The stack applet needs a newer GTK than feisty has I believe. I already tried to patch AWN for it actually, and the applet came out as just a white line. When the stacks applet works on Feisty, I'll include it.

the nofication are applet does the same for me.. though i don't like the way it was done so I wouldn't use it anyways.. ah well

#503

sefs said: when will a proper way of adding launchers be implemented. Currently I cant add things like applets that i can add to regular gnome panels like sticky notes, desktop revealer etc.

Also I can't get thunderbird icon dragged unto bar. most other apps can be dragged on, but for some reason not thunerbird.

The add button in configure launchers still does nothing.

If i change the icon in for a luncher it reverts back to what it was before after awn is turned off and back on. (how to fix)

Gnome-panel-applets are just that. They are only designed to work there. Each applet would need to be individually recoded for AWN. So you'll probably be seeing more coming, but it will take awhile.

A whole new AWN preferences window is almost ready which is a lot more user friendly and covers some of the new things like changing bar angle and icon offset. It's going to combine the preferences, applets, and launchers menus into one tabbed interface. It will also include a themer.

[[IMG]http://img363.imageshack.us/img363/6712/screenshotavantpreferengg5.th.png[/IMG]](http://img363.imageshack.us/my.php?image=screenshotavantpreferengg5.png) [[IMG]http://img361.imageshack.us/img361/2338/screenshotavantpreferenrv2.th.png[/IMG]](http://img361.imageshack.us/my.php?image=screenshotavantpreferenrv2.png)

#504

andrewsomething said: I've actually got it running on Feisty. Did you try a reboot? That did it for me.

Ah, I bet its stupid gconf again. I'll see if I can get it working, thanks for the tip!

EDIT: Nope, not gconf, there are a couple hardcoded /usr/local paths that appear to be messing it up.

#505

luckyd said: reacocard: Do you have any packages which have the option to turn off the glow behind the active icons. I know there is a patch for it somewhere, but i was just wondering if it was included in any packages?

No its not included, but if you point me towards the patch I'll see about getting it in.

#506

andrewsomething said: A whole new AWN preferences window is almost ready which is a lot more user friendly and covers some of the new things like changing bar angle and icon offset. It's going to combine the preferences, applets, and launchers menus into one tabbed interface. It will also include a themer.

[[IMG]http://img363.imageshack.us/img363/6712/screenshotavantpreferengg5.th.png[/IMG]](http://img363.imageshack.us/my.php?image=screenshotavantpreferengg5.png) [[IMG]http://img361.imageshack.us/img361/2338/screenshotavantpreferenrv2.th.png[/IMG]](http://img361.imageshack.us/my.php?image=screenshotavantpreferenrv2.png)

Woo, looking forward to seeing this make its way into the repos.

#507

notwen said: Woo, looking forward to seeing this make its way into the repos.

Heh, it has to be released first. :p

Also, STACKS ARE IN! repo is already updated, enjoy!

#508

I like this bar alot .... i have manged to make some mac users jealous lol while showing off.

#509

reacocard said: Heh, it has to be released first. :p

Also, STACKS ARE IN! repo is already updated, enjoy!

yay, cool ! you rock :D

edit: i've upgraded but cant see stack applet and/or manage to make that work :( did i miss something ?

#510

reacocard said: Heh, it has to be released first. :p

Also, STACKS ARE IN! repo is already updated, enjoy!

Very nice :)

#511

Is anyone else having trouble getting a Thunderbird launcher unto the awn? I can't get it dragged on there for the life of me.

#512

sefs said: Is anyone else having trouble getting a Thunderbird launcher unto the awn? I can't get it dragged on there for the life of me.

try to edit this key in gconf-editor:

/apps/avant-window-navigator/window_manager/launchers

and manually add to te list the path to your thunderbird.desktop file

#513

Thumbs up. That worked!

ayoli said: try to edit this key in gconf-editor:

/apps/avant-window-navigator/window_manager/launchers

and manually add to te list the path to your thunderbird.desktop file

#514

Bug: When using the trash can on the awn bar to empty trash in most cases it sticks at the emptying trash screen, and I have to click on the cancel button. to close that dialog window.

#515

sefs said: Bug: When using the trash can on the awn bar to empty trash in most cases it sticks at the emptying trash screen, and I have to click on the cancel button. to close that dialog window.

but doesn't it empty the trash? mine does this but its not a real issue..

#516

walkerk said: but doesn't it empty the trash? mine does this but its not a real issue..

Ya, it's a known bug that should be fixed soon. The trash does get emptied. Really I think they just need to change the button to say Done instead of Cancel....

#517

andrewsomething said: Ya, it's a known bug that should be fixed soon. The trash does get emptied. Really I think they just need to change the button to say Done instead of Cancel....

i can confirm this bug, but i think it should be a better IHM with the two button cancel and done. About stacks, i still cant manage to have this working with the last update of reacocard, does anyone can ? i've re-launched awn, tried also a reboot (which should not be neccessary for this kind of app on a *nix OS) but still no love :(

#518

ayoli said: i can confirm this bug, but i think it should be a better IHM with the two button cancel and done.

About stacks, i still cant manage to have this working with the last update of reacocard, does anyone can ? i've re-launched awn, tried also a reboot (which should not be neccessary for this kind of app on a *nix OS) but still no love :(

it's an applet. did you add it?

#519

walkerk said: it's an applet. did you add it?

well i would have but i haven't it listed in the applet list :( edit: big oooops, haven't seen it :D </dumb inside> OMG taht rocks , i can go to bed happy now :D

#520

ayoli said: well i would have but i haven't it listed in the applet list :(

edit: big oooops, haven't seen it :D </dumb inside>

Presuming you've added reacocard's new repo:

sudo apt-get upgrade avant-window-navigator-bzr
killall avant-window-navigator

now reload it.. should be good..

#521

walkerk said: Presuming you've added reacocard's new repo:

sudo apt-get upgrade avant-window-navigator-bzr
killall avant-window-navigator

now reload it.. should be good..

thx, i ve just not seen it in the list because of a long day of work and a long night of drink before :D the version of awn was ok but not me :D

#522

I am not sure if this is a bug or a feature, i'm hoping its not a feature. You can let me know if to log in in launchpad. I cannot run multiple instances of an application, such as the terminal, when the launcher is on awn. If you click multiple times on the launcher it brings up the already open app. I look in preferences but nothing in there to control this. How do I get it to work more like a gnome task bar where whenever i click on the launcher it will open a new instance of the app.

Actually ... pidgin is the only launcher that launches another version of the app when clicked upon.

Thanks.

#523

sefs said: I am not sure if this is a bug or a feature, i'm hoping its not a feature. You can let me know if to log in in launchpad. I cannot run multiple instances of an application, such as the terminal, when the launcher is on awn. If you click multiple times on the launcher it brings up the already open app. I look in preferences but nothing in there to control this. How do I get it to work more like a gnome task bar where whenever i click on the launcher it will open a new instance of the app.

Actually ... pidgin is the only launcher that launches another version of the app when clicked upon.

Thanks.

Use the middle click to open a new instance....

#524

that helps a little, but for things like gedit the middle button launces the preferences window instead.

#525

Hey guys,

I have followed the tutorial but awn doesn't work. Each time I launch it through the command line, I get the following error: -

(process:6114): GLib-GObject-CRITICAL **: gtype.c:2242: initialization assertion failed, use IA__g_type_init() prior to this function

(process:6114): GLib-GObject-CRITICAL **: g_object_new: assertion `G_TYPE_IS_OBJECT (object_type)' failed

(process:6114): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

Any ideas folks?

Cheers

EmyrB

#526

Oh by the way, I am using Beryl. Should I be using compiz-fusion for awn to work?

Cheers

EmyrB

#527

Installed and working great from the latest bzr but i dont have a gmenu or an affinity applet listed in my applet list. Any help would be greatly appreciated.

#528

hello.. i just installed both of them. but don't know how to start them. please someone tell me how to run and get both of them configured. thx

#529

reacocard said: Could you both post the full output you get when running your commands? I need a bit more information before I can tell you how to fix it.

Please see attached.

Thanks a lot,

Ar@mi$

#530

What's the difference between (Stable) and (svn)?

#531

Stable means that the majority of the program is stable (for most users) however it doesn't get the newest updates.

SVN is like beta testing. It's where everything new in a program is tested before it makes it to stable.

#532

Is there a way to change the autohide so the dock doesnt actually scroll off of the screen, but rather just hides itself on the desktop, under any open windows? ObjectDock for windows does this really well, i dont like my launchers off of the desktop when i have no windows open. It just bothers me for some reason. Also, is there a way to make a launcher for Nautilus? I have one for my Home Folder, but when i launch it, it puts a "File Browser" icon in the taskbar space instead of a little triangle under the home folder.

#533

Depressed Man said: Stable means that the majority of the program is stable (for most users) however it doesn't get the newest updates.

SVN is like beta testing. It's where everything new in a program is tested before it makes it to stable.

How ever, that's a little misleading in the case of AWN. The whole project is still beta, and the developers encourage you to use the unstable version as the "stable" one contains many more bugs and lacks lots of features.

The idea is that soon there will be a real stable 0.2 release as they're clean up a lot of bugs and trimming the code. Then all new features will be in a 0.3bzr.

#534

Arkus said: Installed and working great from the latest bzr but i dont have a gmenu or an affinity applet listed in my applet list. Any help would be greatly appreciated.

Those are only in patches for now, and from what I've heard they are more experimental than anything else, hence why they are not in the repo packages. If/when they become (mostly) stable, I will add them.

linux123 said: hello.. i just installed both of them. but don't know how to start them. please someone tell me how to run and get both of them configured. thx

There should be menu items for then in Applications>Accessories, or run 'avant-window-navigator' and 'affinity' from the commandline.

NoSmokingBandit said: Is there a way to change the autohide so the dock doesnt actually scroll off of the screen, but rather just hides itself on the desktop, under any open windows? ObjectDock for windows does this really well, i dont like my launchers off of the desktop when i have no windows open. It just bothers me for some reason.

Also, is there a way to make a launcher for Nautilus? I have one for my Home Folder, but when i launch it, it puts a "File Browser" icon in the taskbar space instead of a little triangle under the home folder.

No currently, you may want to post that as a feature request in Launchpad.

#535

I installed AWN, but when I open it I get this:

leon@ubuntu:~$ avant-window-navigator
APPLET : /usr/local/lib/awn/applets/taskman.desktop

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

Can anyone help please?

#536

superbungalow said: I installed AWN, but when I open it I get this:

leon@ubuntu:~$ avant-window-navigator
APPLET : /usr/local/lib/awn/applets/taskman.desktop

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:30620): Wnck-WARNING **: Unhandled action type (nil)

Can anyone help please?

Yeah, happens to me too but AWN still works fine so I wouldn't worry about it.

#537

but when I close the terminal window, it closes AWN, am I doing something wrong?

#538

dont launch awn from the terminal. hit Alt+F2 and launch it from there.

#539

awesome thanks, now I know it works, I'll add it to the start up list! :)

#540

Monday 6th August. Update of AWN. Situation: Total Diasater.

1) AWN loads and Icons are totally out of wack. They are huge!!! pic attached...take a look at the size of all those icons in comparison to the trash bin. I had all those icons set to the same size of the trash bin. The trash bin is the only icon that has maintained the size all icons on the AWN were set too.

2) AWN disappears (I assume it crashes) after emptying the trash bin.

3) Whereas in the previous version when i change an icon for a launcher and it was preserved thru reboots. That no longer happens. What in the world did you do.

4) After it crashes you are unable to restart it without killing the gdm.

5) How can I downgrade to the previous bzr version.

Any fixes for this?

Thanks.

#541

sefs said: Monday 6th August. Update of AWN. Situation: Total Diasater.

1) AWN loads and Icons are totally out of wack. They are huge!!! pic attached...take a look at the size of all those icons in comparison to the trash bin. I had all those icons set to the same size of the trash bin. The trash bin is the only icon that has maintained the size all icons on the AWN were set too.

2) AWN disappears (I assume it crashes) after emptying the trash bin.

3) Whereas in the previous version when i change an icon for a launcher and it was preserved thru reboots. That no longer happens. What in the world did you do.

4) How can I downgrade to the previous bzr version.

Any fixes for this?

Thanks.

I assume you are using the repo? This apt line should downgrade it:

sudo apt-get install avant-window-navigator-bzr=0.1.2-bzr15-2 libawn-bzr =0.1.2-bzr15-2
#542

Ok, so I just made the switch from the svn to the bzr, and now avant-preferences won't open. Here's what I get in terminal.

~$ avant-preferences
/usr/local/share/avant-window-navigator/window.glade
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 273, in <module>
    app = main()
  File "/usr/local/bin/avant-preferences", line 152, in __init__
    self.setup_bool (TITLE_ITALIC, self.wTree.get_widget ("italiccheck"))
  File "/usr/local/bin/avant-preferences", line 261, in setup_bool
    check.set_active(self.client.get_bool(key))
AttributeError: 'NoneType' object has no attribute 'set_active'
#543

JonD25 said: Ok, so I just made the switch from the svn to the bzr, and now avant-preferences won't open. Here's what I get in terminal.

~$ avant-preferences
/usr/local/share/avant-window-navigator/window.glade
Traceback (most recent call last):
  File "/usr/local/bin/avant-preferences", line 273, in <module>
    app = main()
  File "/usr/local/bin/avant-preferences", line 152, in __init__
    self.setup_bool (TITLE_ITALIC, self.wTree.get_widget ("italiccheck"))
  File "/usr/local/bin/avant-preferences", line 261, in setup_bool
    check.set_active(self.client.get_bool(key))
AttributeError: 'NoneType' object has no attribute 'set_active'

This should fix it:

sudo rm /usr/local/bin/avant-*

I hate this little problem, this is like the 30th time its appeared in this thread. :mad:

#544

reacocard said: This should fix it:

sudo rm /usr/local/bin/avant-*

I hate this little problem, this is like the 30th time its appeared in this thread.

Awesome. Thanks. I tried doing a ton of searches, but I couldn't find my answer, and it's hard to search through every post of over 50 pages. Sorry about that.

#545

JonD25 said: Awesome. Thanks. I tried doing a ton of searches, but I couldn't find my answer, and it's hard to search through every post of over 50 pages. Sorry about that.

Quite alright, It would be hard to search for since there are like no keywords for it. It's a simple solution though so I don't much mind reposting it. Only 28 pages for me, I have the number of posts/page set higher than the default.

#546

Is this ok ? I just updated my source list to include the two listed on page one, then updated with keys and such. However, I got this at the end:

Failed to fetch http://download.tuxfamily.org/syzygy42/dists/feissty/avant-window-navigator/binary-i386/Packages.gz 404 Not Found

Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead.

Should I continue on, or do something to rectify this instead ?

#547

Sweet Spot said: Is this ok ? I just updated my source list to include the two listed on page one, then updated with keys and such. However, I got this at the end:

Should I continue on, or do something to rectify this instead ?

just edit your sources.list you misspell *feisty* apparently (in your link, feisty has 2 's') then redo a: sudo apt-get update

#548

ayoli said: just edit your sources.list you misspell *feisty* apparently (in your link, feisty has 2 's')

then redo a: sudo apt-get update

Well, that'll teach me to copy/paste without looking first ! Interesting, and good catch. I'll try that, thanks !

#549

Can someone send me a PM or link walking me through how to compile AWN for 64-bit? I have a 64-bit version of Feisty, and would very much like to add AWN to it. Anyone can walk me through it?! Help much appreciated...

#550

skibum1981 said: Can someone send me a PM or link walking me through how to compile AWN for 64-bit? I have a 64-bit version of Feisty, and would very much like to add AWN to it. Anyone can walk me through it?! Help much appreciated...

The compiling instructions on the first post should work fine for 64-bit. If they don't, let me know so I can post a note saying so.

#551

I just got the latest update from the repos, and things seem to have straightened out. I just have one question.

1) I see in the gconf under the title branch where it looks like you can set the font size of what I assume is the text that pops up when you mouse over each icon. I tried to change this to smaller neater text, but the changes are not reflected even after I restart awn. Is there a way to change that font size?

Thanks.

#552

sefs said: I just got the latest update from the repos, and things seem to have straightened out. I just have one question.

1) I see in the gconf under the title branch where it looks like you can set the font size of what I assume is the text that pops up when you mouse over each icon. I tried to change this to smaller neater text, but the changes are not reflected even after I restart awn. Is there a way to change that font size?

Thanks. yes, thru preferences window (right click on the bar, not on an icon), see screenschot attached.

#553

I followed this installation exactly, but at the end nothing happened. I typed in avant-window-navigator into a terminal and I could get it to run from there, however I cant find out how to run it properly... Please can someone help?

#554

bkkenny said: I followed this installation exactly, but at the end nothing happened. I typed in avant-window-navigator into a terminal and I could get it to run from there, however I cant find out how to run it properly...

Please can someone help?

you must have a avant-window-navigator entry in your Accessories menu. btw, if you want it at startup, just add it to startup apps (menu system > preferences > sessions).

#555

Perfect! Thank you very much.

ayoli said: yes, thru preferences window (right click on the bar, not on an icon), see screenschot attached.

#556

Well, I seem to have everything installed and working, thanks for all the great guides!

Still getting a seg fault when I try to launch affinity, searched high and low to find a fix, but alas I don't think there is one.

Thanks again!

#557

*ahem*

[SIZE="7"]WE NOW HAVE 64-BIT PACKAGES!!![/SIZE]

The repo now contains 64-bit packages for awn and affinity! A huge thank-you to tgm4883 for providing these!

Also note that the -svn AWN packages have been removed from the repo completely now, you must upgrade to avant-window-navigator-bzr.

#558

This guide is quite a bit out of date for AWN. For a simpler way you can:

$ bzr co http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator $ cd avant-window-navigator $ ./autogen.sh && make && sudo make install

the bzr is updated often and I guess the recent update included the stacks with ith.

#559

PurposeOfReason said: This guide is quite a bit out of date for AWN. For a simpler way you can:

$ bzr co http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator $ cd avant-window-navigator $ ./autogen.sh && make && sudo make install

the bzr is updated often and I guess the recent update included the stacks with ith.

Um, its up-to-date, just a bit longer-winded than you because it handles deps and such.

#560

PurposeOfReason said: This guide is quite a bit out of date for AWN. For a simpler way you can:

$ bzr co http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator $ cd avant-window-navigator $ ./autogen.sh && make && sudo make install

the bzr is updated often and I guess the recent update included the stacks with ith.

it's enough up to date for me and many ppl here i guess and has all cool and latest features such as stacks. if it isn't for you feel free to compile it yourself. again BIG THANKS to reacocard for maintaining this :)

#561

i found this a while back, but i hit this problem and dropped it to do later. Well, my WoW server is down for 48 hours (:lolflag:) so here i am.

i downloaded fine and all.

but when i get to the autogen.sh i have various errors :

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
/usr/share/aclocal/smpeg.m4:13: warning: underquoted definition of AM_PATH_SMPEG
/usr/share/aclocal/smpeg.m4:13:   run info '(automake)Extending aclocal'
/usr/share/aclocal/smpeg.m4:13:   or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
checking for GLIB - version >= 2.8.0... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GLIB is incorrectly installed.

Although i've seen the first 2 from other people's so i'm guessing they aren't that bad? :confused: the GLIB is the one i haven't seen too often.

if i ignore them and hit make (like it advises), i get a bunch of output similar to:


awn-applet.c:230: error: expected ')' before '*' token
awn-applet.c:264: error: expected ')' before '*' token
awn-applet.c:299: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
awn-applet.c:337: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
awn-applet.c:363: error: expected ')' before '*' token
awn-applet.c:443: error: expected ')' before '*' token
awn-applet.c:455: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
awn-applet.c:467: error: expected declaration specifiers before 'GtkWidget'
awn-applet.c:480: error: old-style parameter declarations in prototyped function definition
awn-applet.c:480: error: expected '{' at end of input
make[2]: *** [awn-applet.lo] Error 1

I'm guessing that means it configured incorrectly because of the previous errors :-? Sorry if this has been posted multiple times, 57 pages are hard to search through within a good time.

#562

Criminosis said: i found this a while back, but i hit this problem and dropped it to do later. Well, my WoW server is down for 48 hours (:lolflag:) so here i am.

i downloaded fine and all.

but when i get to the autogen.sh i have various errors :

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
/usr/share/aclocal/smpeg.m4:13: warning: underquoted definition of AM_PATH_SMPEG
/usr/share/aclocal/smpeg.m4:13:   run info '(automake)Extending aclocal'
/usr/share/aclocal/smpeg.m4:13:   or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
checking for GLIB - version >= 2.8.0... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GLIB is incorrectly installed.

Although i've seen the first 2 from other people's so i'm guessing they aren't that bad? :confused: the GLIB is the one i haven't seen too often.

if i ignore them and hit make (like it advises), i get a bunch of output similar to:


awn-applet.c:230: error: expected ')' before '*' token
awn-applet.c:264: error: expected ')' before '*' token
awn-applet.c:299: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
awn-applet.c:337: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
awn-applet.c:363: error: expected ')' before '*' token
awn-applet.c:443: error: expected ')' before '*' token
awn-applet.c:455: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
awn-applet.c:467: error: expected declaration specifiers before 'GtkWidget'
awn-applet.c:480: error: old-style parameter declarations in prototyped function definition
awn-applet.c:480: error: expected '{' at end of input
make[2]: *** [awn-applet.lo] Error 1

I'm guessing that means it configured incorrectly because of the previous errors :-? Sorry if this has been posted multiple times, 57 pages are hard to search through within a good time.

Looks like you forgot to install the dependencies (specifically glib), try running this command then starting over from ./autogen.sh:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common
#563

reacocard said: Looks like you forgot to install the dependencies (specifically glib), try running this command then starting over from ./autogen.sh:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common

Pretty sure i didn't skip that step....


Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version.
autotools-dev is already the newest version.
libxdamage-dev is already the newest version.
libxcomposite-dev is already the newest version.
libgnome2-common is already the newest version.
libgnome2-dev is already the newest version.
libgnome-desktop-dev is already the newest version.
libgnome-vfs-dev is already the newest version.
libgtk2.0-dev is already the newest version.
libwnck-dev is already the newest version.
libgconf2-dev is already the newest version.
libglib2.0-dev is already the newest version.
libdbus-glib-1-dev is already the newest version.
libgnomevfs2-0 is already the newest version.
libgnome-desktop-2 is already the newest version.
libgnome2-0 is already the newest version.
libwnck-common is already the newest version.
python-gtk2 is already the newest version.
python-gconf is already the newest version.
bzr is already the newest version.
gnome-common is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#564

Criminosis said: Pretty sure i didn't skip that step....


Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version.
autotools-dev is already the newest version.
libxdamage-dev is already the newest version.
libxcomposite-dev is already the newest version.
libgnome2-common is already the newest version.
libgnome2-dev is already the newest version.
libgnome-desktop-dev is already the newest version.
libgnome-vfs-dev is already the newest version.
libgtk2.0-dev is already the newest version.
libwnck-dev is already the newest version.
libgconf2-dev is already the newest version.
libglib2.0-dev is already the newest version.
libdbus-glib-1-dev is already the newest version.
libgnomevfs2-0 is already the newest version.
libgnome-desktop-2 is already the newest version.
libgnome2-0 is already the newest version.
libwnck-common is already the newest version.
python-gtk2 is already the newest version.
python-gconf is already the newest version.
bzr is already the newest version.
gnome-common is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

it looks like you miss some .m4 files so you may try to checkout the las bzr version again

#565

ayoli said: it looks like you miss some .m4 files so you may try to checkout the las bzr version again

How would i go about doing this?

#566

Criminosis said: How would i go about doing this?

bzr checkout <http://url/of/the/branch>

if you dont have bzr:

sudo apt-get install bzr
#567
 bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator

is the first step, so i have it. but when i do that; it just starts downloading . That is what you meant right? I already redid a download, same outcome.

#568

random@Nessa-desktop:~/installs/avant-window-navigator$ ./autogen.sh

/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

testing autoconf2.50... not found. testing autoconf... found 2.61

checking for automake >= 1.9...

testing automake-1.10... not found. testing automake-1.9... not found. *Error*: You must have automake >= 1.9 installed to build avant-panel-menu. Download the appropriate package for from your distribution or get the source tarball at http://ftp.gnu.org/pub/gnu/automake/automake-1.9.tar.gz

checking for libtool >= 1.5...

testing libtoolize... found 1.5.22

checking for glib-gettext >= 2.2.0...

testing glib-gettextize... found 2.12.11

checking for intltool >= 0.30...

testing intltoolize... found 0.35.5

checking for pkg-config >= 0.14.0...

testing pkg-config... found 0.21 /usr/bin/gnome-autogen.sh: 364: --print-ac-dir: not found ACLOCAL='' AUTOCONF='autoconf' AUTOCONF_VERSION='2.61' AUTOHEADER='autoheader' COLORTERM='gnome-terminal' DBUS_SESSION_BUS_ADDRESS='unix:abstract=/tmp/dbus-AUNZuoPisU,guid=bc8607d652e2330dcad29d0046c2b634' DESKTOP_SESSION='default' DESKTOP_STARTUP_ID='' DIE='1' DISPLAY=':0.0' ECHO_N='' FORBIDDEN_M4MACROS=' gnome-cxx-check.m4' GDMSESSION='default' GDM_XSERVER_LOCATION='local' GLIB_GETTEXTIZE='glib-gettextize' GLIB_GETTEXTIZE_VERSION='2.12.11' GNOME_DESKTOP_SESSION_ID='Default' GNOME_KEYRING_SOCKET='/tmp/keyring-KGsAMN/socket' GTK_RC_FILES='/etc/gtk/gtkrc:/home/random/.gtkrc-1.2-gnome2' HISTCONTROL='ignoreboth' HOME='/home/random' IFS='.' INTLTOOLIZE='intltoolize' INTLTOOLIZE_VERSION='0.35.5' LANG='en_PH.UTF-8' LESSCLOSE='/usr/bin/lesspipe %s %s' LESSOPEN='| /usr/bin/lesspipe %s' LIBTOOLIZE='libtoolize' LIBTOOLIZE_VERSION='1.5.22' LOGNAME='random' LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.flac=01;35:*.mp3=01;35:*.mpc=01;35:*.ogg=01;35:*.wav=01;35:' OLDPWD='/home/random/installs' OPTIND='1' PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games' PKG_CONFIG='pkg-config' PKG_CONFIG_VERSION='0.21' PKG_NAME='avant-panel-menu' PPID='5411' PS1='$ ' PS2='> ' PS4='+ ' PWD='/home/random/installs/avant-window-navigator' REQUIRED_AUTOCONF_VERSION='2.53' REQUIRED_AUTOMAKE_VERSION='1.9' REQUIRED_DOC_COMMON_VERSION='2.3.0' REQUIRED_GETTEXT_VERSION='0.12' REQUIRED_GLIB_GETTEXT_VERSION='2.2.0' REQUIRED_GNOME_DOC_UTILS_VERSION='0.4.2' REQUIRED_GTK_DOC_VERSION='1.0' REQUIRED_INTLTOOL_VERSION='0.30' REQUIRED_LIBTOOL_VERSION='1.5' REQUIRED_M4MACROS=' libtool.m4 glib-gettext.m4 intltool.m4 pkg.m4' REQUIRED_PKG_CONFIG_VERSION='0.14.0' SESSION_MANAGER='local/Nessa-desktop:/tmp/.ICE-unix/5219' SHELL='/bin/bash' SHLVL='1' SSH_AGENT_PID='5259' SSH_AUTH_SOCK='/tmp/ssh-pBmWkW5219/agent.5219' TERM='xterm' USER='random' USERNAME='random' WANT_AUTOCONF_2_5='1' WINDOWID='41943135' XAUTHORITY='/home/random/.Xauthority' _='./autogen.sh' automake_progs='automake-1.10 automake-1.9' boldface='' ch_actual_version='' ch_cur='21' ch_min='14' ch_min_version='1.7' ch_save_IFS=' ' ch_status='0' cm_macrodirs='' configure_ac='./configure.in' configure_files='./configure.in' dirname='.' normal='' srcdir='.' vc_actual_version='0.21' vc_checkprog='pkg-config' vc_checkprogs='pkg-config' vc_comparator='>=' vc_min_version='0.14.0' vc_package='pkg-config' vc_source=''"'"'http://www.freedesktop.org/software/pkgconfig/releases/pkgconfig-0.14.0.tar.gz' vc_status='0' vc_variable='PKG_CONFIG' want_gettext='false' want_glib_gettext='true' want_gnome_doc_utils='false' want_gtk_doc='false' want_intltool='true' want_libtool='true' want_pkg_config='true' shift: 364: can't shift that many

That doesn't seem right. I went to the next step and got this...

random@Nessa-desktop:~/installs/avant-window-navigator$ make

make: *** No targets specified and no makefile found. Stop.

Thanks in advance! (noob here)

#569

Nessa said: That doesn't seem right. I went to the next step and got this...

Thanks in advance! (noob here)

I had that same problem also.

This is where i got my fix http://ubuntuforums.org/showthread.php?t=514518 post number 7

i had to install automake1.9 if i remember correctly.

sudo apt-get install automake1.9

anyone know what's up with my error? :)

#570

Criminosis said: I had that same problem also.

This is where i got my fix http://ubuntuforums.org/showthread.php?t=514518 post number 7

i had to install automake1.9 if i remember correctly.

sudo apt-get install automake1.9

anyone know what's up with my error? :)

ah, thanks for finding that, I'll add it to the deps list.

@Criminosis - does installing this help?

#571

Just wanted add my thanks for this HowTo. After involuntarily reinstalling Feisty for the 3rd time in two months (and mastering the clean install), I've decided that so many "stable" packages seem to screw it up that I can't do any worse by experimenting with some of the better stuff from the leading edge. I installed AWN using the Feisty repository listed in the first post here and all went smoothly. AWN is an awesome piece of work and well worth the time.

#572

reacocard said: ah, thanks for finding that, I'll add it to the deps list.

@Criminosis - does installing this help?

Umm...i'm the one that posted that mate, lol. It got me to where i am now :lolflag:

#573

Criminosis said: Umm...i'm the one that posted that mate, lol. It got me to where i am now :lolflag:

.< this is what I get for answering questions late at night.

as for the missing .m4 files, make sure that autoconf et al are not lying around in /usr/local, that screwed up someone before. Just remove or rename the executables if it is and try again.

#574

I found the .m4 files in my /usr/share/aclocal. I'm guessing that is where they are supposed to be? :confused: How do i add them to the autoconf macro directory?

Hey wait a moment...


from the /usr/local/share/aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.

i only have :

glib-2.0.m4  glib-gettext.m4

in that folder. could this be part of the issue?

Or is this normal? :confused:

#575

I stumbled across

http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=628&page=1&isLive=true

while looking for a fix for this. doing it that way got it up and running in no time. Is this this "stable" version that you were recommending against though? :(

#576

for beginners n for all, i've made a simple step-by-step installation at my blog..check it out..:)

#577

Criminosis said: I stumbled across

http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=628&page=1&isLive=true

while looking for a fix for this. doing it that way got it up and running in no time. Is this this "stable" version that you were recommending against though? :(

No, actually thats my repo, the -bzr package is the devel stuff.

#578

hidden_leaf_sasuke said: for beginners n for all, i've made a simple step-by-step installation at my blog..check it out..:)

cool!

#579

ah, right-o. well it works so i'm good with it \\:D/

Although i've noticed if i move the mouse to the bottom of the screen, it comes up; but it will not re-autohide unless i run the mouse over it again. It is kinda trivial, but is there a fix / option/ plugin / modification....etc for this?

#580

i just wanted to test it out without compiz or beryl or anything like that and now its stuck on my screen how do you turn it off? :lolflag:

#581

A-Sylum said: i just wanted to test it out without compiz or beryl or anything like that and now its stuck on my screen how do you turn it off? :lolflag:

That would depend on how you invoked it....

If you just ran it, then just xkill it, restart your xserver, or simply reboot

If you added it to your sessions list, just delete from that list and reboot

I'm guessing you just mean 'now its stuck" in the simple manner :)

#582

A-Sylum said: i just wanted to test it out without compiz or beryl or anything like that and now its stuck on my screen how do you turn it off? :lolflag:

You have two options:

1) Kill it using the GUI System--->Administration--->System Monitor, from here go to the processes tab and locate avant-window-navigator and kill it.

2) Kill it using the terminal In a terminal type 'ps ux' to show you a list of all running processes, locate avant-window-navigator and i's assigned PID, then type "kill PID#" and you should rid yourself of the big black bar along he bottom of your screen that is caused when you run AWN w/o compositing. =]

Hope this helps.

#583

notwen said: You have two options:

1) Kill it using the GUI System--->Administration--->System Monitor, from here go to the processes tab and locate avant-window-navigator and kill it.

2) Kill it using the terminal In a terminal type 'ps ux' to show you a list of all running processes, locate avant-window-navigator and i's assigned PID, then type "kill PID#" and you should rid yourself of the big black bar along he bottom of your screen that is caused when you run AWN w/o compositing. =]

Hope this helps.

lol thanks i was looking for xubuntus process manager :lolflag:

but its still pretty cool :D

(i didn't feel like logging out :D)

#584

A-Sylum said:

(i didn't feel like logging out :D)

lol no worries, linux is all about preference :lolflag:

Anyone know if that mouse over is normal operation?

#585

Criminosis said: lol no worries, linux is all about preference :lolflag:

Anyone know if that mouse over is normal operation?

if you wait for it to come all the way up before you mouseout, it goes back, but if you mouseout before its done it stays.

#586

reacocard said: if you wait for it to come all the way up before you mouseout, it goes back, but if you mouseout before its done it stays.

Ah, i see. So...the trick is to move slowly...brilliant! :)

.....is there a .conf that i could edit to lower the time? I've become to adept with my touchpad #-o:wink:

#587

Criminosis said: Ah, i see. So...the trick is to move slowly...brilliant! :)

.....is there a .conf that i could edit to lower the time? I've become to adept with my touchpad #-o:wink:

setting apps -> avant-window-navigator -> auto_hide_delay to a smaller value in gconf-editor might help.

#588

reacocard said: setting apps -> avant-window-navigator -> auto_hide_delay to a smaller value in gconf-editor might help.

That did it. Thanks mate :guitar:

#589

Hey, is there a way to put the "Show Desktop" button onto AWM? I had it on my buttom Gnome bar (which is now gone in trade of AWM :lolflag:). I've grown attached to it. I moved it to the top bar, but for the sake of habit and knowledge, i would like to know :).

#590

Criminosis said: Hey, is there a way to put the "Show Desktop" button onto AWM? I had it on my buttom Gnome bar (which is now gone in trade of AWM :lolflag:). I've grown attached to it. I moved it to the top bar, but for the sake of habit and knowledge, i would like to know :).

Not yet.

#591

blast. oh well, win some; lose some

#592

Thanks for the tutorial. It compiles fine on Gutsy Gibbon Tribe 4 (64bit) but when you run it from the terminal you get an error message:

avant-window-navigator: error while loading shared libraries: libawn.so.0: cannot open shared object file: No such file or directory

This is a known bug and I found the solution on launchpad bugtracker. Type this at the Terminal then run avant-window-navigator again:

sudo ldconfig

Works for me!

#593

I get this error when updating my repos Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

#594

kris2pe said: I get this error when updating my repos

Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

make sure you don't have synaptic or any other package manager open when you run the commands.

#595

Excellent guide. Worked straight off with no problems. Thanks :)

#596

I get this error bzr: ERROR: Target directory "avant-window-navigator" already exists. kris2pe@kris2pe:~$ cd avant-window-navigator kris2pe@kris2pe:~/avant-window-navigator$ ./autogen.sh bash: ./autogen.sh: No such file or directory kris2pe@kris2pe:~/avant-window-navigator$ make make: * No targets specified and no makefile found. Stop. kris2pe@kris2pe:~/avant-window-navigator$ sudo make install make: * No rule to make target `install'. Stop.

#597

kris2pe said: I get this error

bzr: ERROR: Target directory "avant-window-navigator" already exists. kris2pe@kris2pe:~$ cd avant-window-navigator kris2pe@kris2pe:~/avant-window-navigator$ ./autogen.sh bash: ./autogen.sh: No such file or directory kris2pe@kris2pe:~/avant-window-navigator$ make make: * No targets specified and no makefile found. Stop. kris2pe@kris2pe:~/avant-window-navigator$ sudo make install make: * No rule to make target `install'. Stop.

remove the avant-window-navigator directory first.

#598

reacocard said: remove the avant-window-navigator directory first.

OKey noob here? How?

#599

kris2pe said: OKey noob here? How?

rm -r avant-window-navigator

or you could just use the filemanager's delete option....

#600

reacocard said:

rm -r avant-window-navigator


or you could just use the filemanager's delete option....

Ok after sudo make install
How do I make it run?
#601

kris2pe said: Ok after sudo make install

How do I make it run?

Applications -> Accessories -> Avant Window Navigator

or in terminal

avant-window-navigator

#602

Hmm it uses beagle as its backend for searching right? (assuming you configured it when compiling from source).

Mine seems to find the files, but it can't find say names inside documents or my chat logs. It can find it from the beagle window (say I type Kristen and beagle will report all the convos that I said Kristen in it). But when I try it from the affinity search window it doesn't find it.

#603

So I finally got AWN installed... I installed Beryl first then AWN but when I launched it I only saw a huge black bar across the bottom of my screen. Then after racking my brain for about 10 minutes I re-read a couple of posts that said 'HEY MAKE SURE YOU HAVE BERYL AS YOUR WINDOWS MANAGER'

DUH!

I changed the window manager to beryl in the beryl settings an wallah!!! IT WORKS, and I'm a HUGE fan of this app. I've attached a screen shot of my desktop, this is a Dell Latitude D620 1.86Ghz, 1GB Ram, 60GB HDD, Intel Graphics with the i915 driver.

Screenshot (Beryl & AWN) [IMG]http://i207.photobucket.com/albums/bb13/white3454/Screenshot.png[/IMG]

#604

How do you get it fully transparent? Mine always has that black bar (not across the screen) just were the dock is (where the icons sit).

#605

Depressed Man said: How do you get it fully transparent? Mine always has that black bar (not across the screen) just were the dock is (where the icons sit).

Use avant-preferences to set all colours to transparent.

#606

Thanks! Now if only I could get the affinity searching with beagle working 100%.

#607

Depressed Man said: Thanks! Now if only I could get the affinity searching with beagle working 100%.

Well Affinity hasn't been updated in months, and it never did get very far in development. I'd recommend just leaving it for now, its a lost cause unless Neil decides to start working on it again. He had some mockups back in April that looked really good, but nothing has come of that yet.

#608

How do I configure or create launchers? What commands to add to make the shortcuts in the lauchers?

#609

kris2pe said: How do I configure or create launchers?

What commands to add to make the shortcuts in the lauchers? Drag some icons from the Applications menu of the top panel into AWN. It will attach them and you can rearrange their positions using "Configure launchers..." menu in AWN.

The add button in that menu never did anything for me.

#610

Is Affinity stable?

#611

kris2pe said: Is Affinity stable?

Its stable, just not very useful at the moment.

#612

If anyone can help me out here it would be greatly appreciated...

I have tried to add the stacks applet, but when I do all I see is a white vertical line. This is the output I get from the terminal:

mike@mike-laptop:~$ avant-window-navigator
LOADED : /home/mike/.local/share/applications/googleearth.desktop
LOADED : /usr/share/applications/firefox.desktop
LOADED : /usr/share/applications/gnome-terminal.desktop
LOADED : /usr/share/applications/opera.desktop
LOADED : /usr/share/applications/synaptic.desktop
LOADED : /usr/share/applications/vlc.desktop
LOADED : /usr/share/applications/ooo-writer.desktop
LOADED : /usr/share/applications/frostwire.desktop
LOADED : /usr/share/applications/nautilus-home.desktop
LOADED : /usr/share/applications/amsn.desktop
APPLET : /usr/lib/awn/applets/taskman.desktop
APPLET : /usr/lib/awn/applets/stack.desktop~

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)
Stack: symbol lookup error: /usr/lib/awn/applets/stack/stack.so: undefined symbol: awn_applet_dialog_add
#613

Mike_88 said: If anyone can help me out here it would be greatly appreciated...

I have tried to add the stacks applet, but when I do all I see is a white vertical line. This is the output I get from the terminal:

mike@mike-laptop:~$ avant-window-navigator
LOADED : /home/mike/.local/share/applications/googleearth.desktop
LOADED : /usr/share/applications/firefox.desktop
LOADED : /usr/share/applications/gnome-terminal.desktop
LOADED : /usr/share/applications/opera.desktop
LOADED : /usr/share/applications/synaptic.desktop
LOADED : /usr/share/applications/vlc.desktop
LOADED : /usr/share/applications/ooo-writer.desktop
LOADED : /usr/share/applications/frostwire.desktop
LOADED : /usr/share/applications/nautilus-home.desktop
LOADED : /usr/share/applications/amsn.desktop
APPLET : /usr/lib/awn/applets/taskman.desktop
APPLET : /usr/lib/awn/applets/stack.desktop~

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)

(avant-window-navigator:32047): Wnck-WARNING **: Unhandled action type (nil)
Stack: symbol lookup error: /usr/lib/awn/applets/stack/stack.so: undefined symbol: awn_applet_dialog_add

what version of stacks and awn? how did you install them? did you reboot after you installed?

#614

I simply followed your guide here to install awn, by adding the repo and then installing avant-window-navigator-bzr through Synaptic. I have rebooted after installation.

Not sure how to determine the version of stacks, but it should be an appropriate one if it came with the package.

#615

Mike_88 said: I simply followed your guide here to install awn, by adding the repo and then installing avant-window-navigator-bzr through Synaptic. I have rebooted after installation.

Not sure how to determine the version of stacks, but it should be an appropriate one if it came with the package.

hm, it should work fine then. Try this:

sudo apt-get install libawn-bzr libawn-bzr-dev

I doubt it will help, but I can't think of anything else to try.

#616

^ Guess I will have to wait until the repo is available again. I see I don't have the dev version of it installed.

Anything's possible...

#617

Mike_88 said: ^ Guess I will have to wait until the repo is available again. I see I don't have the dev version of it installed.

Anything's possible...

yeah forgot my host is down. sorry about that. Hopfullly they'll be back soon.

You're not supposed to need the -dev version for things to work, but you never know.

#618

Well to no one's surprise that did not appear to be effective. Not a big deal though, I can live without it for now.

#619

Woohoo, the applet is working after updating to the latest version that hit the repos!

#620

Hi, it seems to me, that the avant repo is now broken for feisty amd64: http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=682&page=1&isLive=true I found now this thread here, but I just don't know if it's the right place to put the bug report: http://awn.wetpaint.com/page/Ubuntu+Feisty+Repository Should I send an email to the Maintainer? Maintainer: Aren Olson <reacocard [at] gmail.com> Architecture: amd64 Version: 0.1.2-bzr[COLOR="Red"]34-1[/COLOR]

http://download.tuxfamily.org/syzygy42/dists/feisty/avant-window-navigator/binary-amd64/Packages

Package: libawn-bzr

Priority: optional Section: avant\-window\-navigator/libs Installed-Size: 104 Maintainer: Aren Olson <reacocard [at] gmail.com> Architecture: amd64 Source: avant-window-navigator-bzr Version: 0.1.2-bzr[COLOR="Red"]38-1[/COLOR] Replaces: libawn-svn

#621

floogy said: Hi, it seems to me, that the avant repo is now broken for feisty amd64:

http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=682&page=1&isLive=true I found now this thread here, but I just don't know if it's the right place to put the bug report: http://awn.wetpaint.com/page/Ubuntu+Feisty+Repository Should I send an email to the Maintainer? Maintainer: Aren Olson <reacocard [at] gmail.com> Architecture: amd64 Version: 0.1.2-bzr[COLOR="Red"]34-1[/COLOR]

http://download.tuxfamily.org/syzygy42/dists/feisty/avant-window-navigator/binary-amd64/Packages

I've uploaded bzr53 packages to the repo now, does that fix it?

#622

Since the update I can't alter awn preferences. Awn-Preferences seems to load and then crash. Any ideas?

#623

Everything works well here, even the add launcher function works now... Thank you!

#624

how do i actually use affinity? lets say i want to search for an .mp3 ... i type music:manowar and even though i have the entire manowar discography on my comp i get nothing :confused:

#625

walkerk said: Since the update I can't alter awn preferences. Awn-Preferences seems to load and then crash. Any ideas?

Same thing, but i noticed, that it wasnt even launched, just run awn-preferences from terminal, or preferences>awnpreferences from menu.

#626

Chymera said: how do i actually use affinity? lets say i want to search for an .mp3 ... i type music:manowar and even though i have the entire manowar discography on my comp i get nothing :confused:

Affinty needs tracker to be set up right to work properly. It's also worth noting that Affinity has not been updated in months and appears to be a dead project, it will likely be removed from the repo in gutsy.

#627

I've installed AWN, and now none of the windows have their borders (can't close them, or resize).

I am running Compiz, but I've read that I should be sure to have Compiz or Beryl as my Window Manager. How do I verify that Compiz is my Window Manager?

Also, when I select System > Preferences > Awn Manager, nothing happens.

#628

reacocard said: Affinty needs tracker to be set up right to work properly. It's also worth noting that Affinity has not been updated in months and appears to be a dead project, it will likely be removed from the repo in gutsy.

kwl.... so why is it being advertised then?

#629

Chymera said: kwl.... so why is it being advertised then?

Because it is still currently in the repo and I would have to start a new thread as Affinity is in the title of this one. I will start a new thread for gutsy as this one is getting ridiculously long.

#630

Ahh...

with the Stacks plugin, can I change the called file-manager to say Thunar? How?

TIA.

#631

walkerk said: Since the update I can't alter awn preferences. Awn-Preferences seems to load and then crash. Any ideas?

I'm working under feisty/amd64, and there is no more avant-preferences, avant-launcher and so on. In system > preferences You'll find awn-manager instead. Or you can try a right-click on the dock: left-click on preferences. That will hopefully do the trick. This behaviour seems to be changed...

#632

Criminosis said: Hey, is there a way to put the "Show Desktop" button onto AWM? I had it on my buttom Gnome bar (which is now gone in trade of AWM :lolflag:). I've grown attached to it. I moved it to the top bar, but for the sake of habit and knowledge, i would like to know :).

It's in progress. I'm working on it ( NO beta available for the moment )

#633

LordMau said: Ahh...

with the Stacks plugin, can I change the called file-manager to say Thunar? How?

TIA.

hm, it used thunar automatically for me (I use xfce), not sure what causes it to switch, sorry.

#634

I can't open up awn-preferences.. tried from the bar and from the gnome-menu but I get this error:

Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 199, in <module>
    awnmanager = AwnManager()
  File "/usr/bin/awn-manager", line 97, in __init__
    self.launchManager = awnLauncher(self.wTree, self.AWN_CONFIG_DIR)
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 66, in __init__
    self.make_model()
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 124, in make_model
    self.refresh_tree(uris)
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 134, in refresh_tree
    self.model.set_value (row, 0, self.make_icon (i))
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 168, in make_icon
    if "/" in name:
TypeError: argument of type 'NoneType' is not iterable

The glade icon will show on the bar for a second and the vanish.. Anyone else have these problems? I've tried purging and re-installing to no avail.. Any insight would be appreciated..

#635

I got awn-manager running once and only once. in terminal it gives this:

Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 199, in <module>
    awnmanager = AwnManager()
  File "/usr/bin/awn-manager", line 97, in __init__
    self.launchManager = awnLauncher(self.wTree, self.AWN_CONFIG_DIR)
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 66, in __init__
    self.make_model()
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 124, in make_model
    self.refresh_tree(uris)
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 134, in refresh_tree
    self.model.set_value (row, 0, self.make_icon (i))
  File "/usr/share/avant-window-navigator/awn-manager/awnLauncher.py", line 168, in make_icon
    if "/" in name:
TypeError: argument of type 'NoneType' is not iterable

I installed the bzr version.

#636

LordMau said: Ahh...

with the Stacks plugin, can I change the called file-manager to say Thunar? How?

TIA.

Not sure. If you have nautilus installed, you may have to do:

gksu mousepad /usr/share/applications/nautilus-folder-handler.desktop

And change the Exec value to:

Exec=Thunar %U
#637

Just a quick notice, stacks have been temporarily pulled from the repo. This is due to stacks moving into awn-extras and no longer providing patches against awn trunk. I am working on getting an awn-extras package into the repo, if you need stacks you should wait for that before updating.

#638

stacks are back, and they brought company! you can now install the awn-core-applets-bzr package and get stacks, a clock, the gnome menu and a funky animation. enjoy!

this is currently 32bit feisty only, it will become available for 64bit soon.

#639

n/m

#640

darktempest said: reacocard,

awn-core-applets-bzr doesnt seem to be in the repo as of yet.

Sorry, forgot to run the uploader script. Should be fixed now.

#641

hallo everybody :) excuse for my english :lolflag: but why the plugins stack is not avaible in version 77 for avant-window-navigator-bzr

this plugin is very beautiful and nice :guitar:

#642

maxfact said: but why the plugins stack is not avaible in version 77 for avant-window-navigator-bzr

You have to install awn-core-applets-bzr. It gives you stacks, and a couple of other applets.

#643

Rinulin said: I've installed AWN, and now none of the windows have their borders (can't close them, or resize).

I am running Compiz, but I've read that I should be sure to have Compiz or Beryl as my Window Manager. How do I verify that Compiz is my Window Manager?

Also, when I select System > Preferences > Awn Manager, nothing happens. I'm getting the same problem of nothing happenening when I try to open the preferences app.

EDIT: Nevermind, if you get this problem, run the program in the apps menu first, then open prefs, that's what I get for trying to be safe and set things up before using AWN.

#644

SQuark said: You have to install awn-core-applets-bzr. It gives you stacks, and a couple of other applets.

i have install avant for: bzr co http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator

#645

OK, i download AWM, its now sitting on my desktop, how to i start it?

#646

Anyone?

#647

Click on Applications - Accessories - Avant window navigator. If you installed it. If no, search on the forums, there's a thread on how to install it somewhere.

#648

maxfact said: i have install avant for:

bzr co http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator

you'll have to install from the awn-extras source then: https://code.launchpad.net/~awn-extras/awn-extras/trunk

just bzr co the given url there, cd in a few levels to awn-core-applets, then ./autogen.sh, make, sudo make install as usual.

#649

reacocard said: you'll have to install from the awn-extras source then: https://code.launchpad.net/~awn-extras/awn-extras/trunk

just bzr co the given url there, cd in a few levels to awn-core-applets, then ./autogen.sh, make, sudo make install as usual.

my english is not good excuse but a download from bzr co https://code................................. and make ./autogen.sh ask: bash: ./autogen.sh: Nessun file o directory in just directory :confused:

#650

maxfact said: my english is not good excuse

but a download from bzr co https://code................................. and make ./autogen.sh ask: bash: ./autogen.sh: Nessun file o directory in just directory :confused: after downloading with the *bzr* command you have to use the *cd* command in your term to go in a sub-directory called awn-core-applets then run in your term:

./autogen.sh
make
sudo make install
#651

ayoli said: after downloading with the *bzr* command you have to use the *cd* command in your term to go in a sub-directory called awn-core-applets then run in your term:

./autogen.sh
make
sudo make install

thank i am stupid now applets stack is avaible but no funzionality non funziona nice applets clock but is invisible i see only date nice applets awn-menu it is similar stack but little only voice where Applicazion

but awn is very beautiful

Iam italian

#652

maxfact said: now applets stack is avaible but no funzionality non funziona

All functionality for the stack is hidden in gconf for the moment. Run "gconf-editor" and got to /apps/avant-window-navigator/applets/*some number*.

#653

Hi, I've downloaded some python scripts plugins for awn and I'd like to know how do I install them, the plugins are for Firefox download, evolution mail, and ktorrent

I also have a pidgin plugin but no idea of how to install it... could somebody help me in that?? I'm very new at this... I was only able to install plugin for amarok, but it was easy installing it through the scripts manager inside amarok

Any help would be so much appreciated

#654

xcesarfrancox said: Hi, I've downloaded some python scripts plugins for awn and I'd like to know how do I install them, the plugins are for Firefox download, evolution mail, and ktorrent

I also have a pidgin plugin but no idea of how to install it... could somebody help me in that?? I'm very new at this... I was only able to install plugin for amarok, but it was easy installing it through the scripts manager inside amarok

Any help would be so much appreciated

where did you find these plugins, I did'nt heard about ? you jus tease me :)

#655

I have always wondered what the big deal was with all the flashy eye-candy. I mean, it looks great but most of it serves no useful function. Thanks for showing these to me.

#656

ayoli said: where did you find these plugins, I did'nt heard about ? you jus tease me :)

I found them here:

http://awn.wetpaint.com/page/Plugins

http://code.google.com/p/awn-plugins/

#657

Hey if anyone is experiencing choppy desktop effects this site might help http://ubuntu-unleashed.blogspot.com/2007/08/drastically-improve-ubuntu-feisty-704.html

#658

[compiz-fusion] I did the suggested fixes but I still have the black bar at the bottom...

#659

Nessa said: [compiz-fusion] I did the suggested fixes but I still have the black bar at the bottom...

You need to be running Compiz to remove the black blar, try this guide that I found really easy to install & run compiz:

http://forlong.blogage.de/article/2007/8/26/The-best-way-to-install-Compiz-Fusion-on-Ubuntu-Feisty

#660

SQuark said: All functionality for the stack is hidden in gconf for the moment. Run "gconf-editor" and got to /apps/avant-window-navigator/applets/*some number*.

thanks yuo so much SQuark :popcorn:

#661

How can I install it in Gutsy?

#662

saxin said: How can I install it in Gutsy?

Use the same guide, but if you use the repo method of installing replace 'feisty' with 'gutsy' in the lines you add to /etc/apt/sources.list

#663

when i type

make

i'm getting this: (and this is after reinstalling many many packages that it said it was missing)

make[2]: Entering directory /home/ender88/avant-window-navigator/pyawn' *INFO* Generating awn.c from awn.defs Traceback (most recent call last): File "/usr/share/pygtk/2.0/codegen/codegen.py", line 1707, in <module> sys.exit(main(sys.argv)) File "/usr/share/pygtk/2.0/codegen/codegen.py", line 1665, in main p.startParsing() File "/usr/share/pygtk/2.0/codegen/scmexpr.py", line 113, in startParsing for statement in statements: File "/usr/share/pygtk/2.0/codegen/scmexpr.py", line 27, in parse fp = open(filename, 'r') IOError: [Errno 2] No such file or directory: '/usr/share/pygtk/2.0/defs/gconf.defs' make[2]: * [awn.c] Error 1 make[2]: Leaving directory /home/ender88/avant-window-navigator/pyawn' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/home/ender88/avant-window-navigator' make: *** [all] Error 2

any help would be awesome

#664

ninjapig said: when i type

make

i'm getting this: (and this is after reinstalling many many packages that it said it was missing)

make[2]: Entering directory /home/ender88/avant-window-navigator/pyawn' *INFO* Generating awn.c from awn.defs Traceback (most recent call last): File "/usr/share/pygtk/2.0/codegen/codegen.py", line 1707, in <module> sys.exit(main(sys.argv)) File "/usr/share/pygtk/2.0/codegen/codegen.py", line 1665, in main p.startParsing() File "/usr/share/pygtk/2.0/codegen/scmexpr.py", line 113, in startParsing for statement in statements: File "/usr/share/pygtk/2.0/codegen/scmexpr.py", line 27, in parse fp = open(filename, 'r') IOError: [Errno 2] No such file or directory: '/usr/share/pygtk/2.0/defs/gconf.defs' make[2]: * [awn.c] Error 1 make[2]: Leaving directory /home/ender88/avant-window-navigator/pyawn' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/home/ender88/avant-window-navigator' make: *** [all] Error 2

any help would be awesome

Yeah sorry AWN added python bindings the other day and I haven't got around to updating the dependency lists yet. These are the additional packages you will need:

python-dev python-gtk-dev python-cairo-dev python-gconf python-gnome2-dev

#665

when i type make it says

make: *** No targets specified and no makefile found. Stop.

so i searched on the internet then i found a post http://ubuntuforums.org/showthread.php?t=351567&page=2 it said to type "./autogen.sh --prefix=/usr && make && make install"

when i do that it says:

/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

testing autoconf2.50... not found. testing autoconf... found 2.61

checking for automake >= 1.9...

testing automake-1.10... not found. testing automake-1.9... found 1.9.6

checking for libtool >= 1.5...

testing libtoolize... found 1.5.24

checking for glib-gettext >= 2.2.0...

testing glib-gettextize... found 2.14.0

checking for intltool >= 0.30...

testing intltoolize... found 0.36.1

checking for pkg-config >= 0.14.0...

testing pkg-config... found 0.22

Checking for required M4 macros...

Checking for forbidden M4 macros...

Processing ./configure.in

Running libtoolize...

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.

Running intltoolize...

Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...

Running autoheader...

Running automake-1.9...

Running ./configure --enable-maintainer-mode --prefix=/usr ...

checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... yes checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking for library containing strerror... none required checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for a Python interpreter with version >= 2.3.5... python checking for python... /usr/bin/python checking for python version... 2.5 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.5/site-packages checking for python extension module directory... ${exec_prefix}/lib/python2.5/site-packages checking for headers required to compile python extensions... not found configure: error: could not find Python headers

can someone please help

#666

nagla said: when i type make it says

make: *** No targets specified and no makefile found. Stop.

so i searched on the internet then i found a post http://ubuntuforums.org/showthread.php?t=351567&page=2 it said to type "./autogen.sh --prefix=/usr && make && make install"

when i do that it says:

/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

testing autoconf2.50... not found. testing autoconf... found 2.61

checking for automake >= 1.9...

testing automake-1.10... not found. testing automake-1.9... found 1.9.6

checking for libtool >= 1.5...

testing libtoolize... found 1.5.24

checking for glib-gettext >= 2.2.0...

testing glib-gettextize... found 2.14.0

checking for intltool >= 0.30...

testing intltoolize... found 0.36.1

checking for pkg-config >= 0.14.0...

testing pkg-config... found 0.22

Checking for required M4 macros...

Checking for forbidden M4 macros...

Processing ./configure.in

Running libtoolize...

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.

Running intltoolize...

Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...

Running autoheader...

Running automake-1.9...

Running ./configure --enable-maintainer-mode --prefix=/usr ...

checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... yes checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking for library containing strerror... none required checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for a Python interpreter with version >= 2.3.5... python checking for python... /usr/bin/python checking for python version... 2.5 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.5/site-packages checking for python extension module directory... ${exec_prefix}/lib/python2.5/site-packages checking for headers required to compile python extensions... not found configure: error: could not find Python headers

can someone please help

See this post: http://ubuntuforums.org/showpost.php?p=3298318&postcount=664

Once someone confirms that that works I'll update the guide.

#667

This thread is far too huge for me to be able to search it, so I'll just ask.

Will this dev AWN keep up-to-date on its own or will I need to keep rebuilding stuff?

#668

SSB said: This thread is far too huge for me to be able to search it, so I'll just ask.

Will this dev AWN keep up-to-date on its own or will I need to keep rebuilding stuff?

If you're talking about the repo, yeah it'll keep updating, it just ties into the standard ubuntu update system. If you compiled from source, you'll have to update it yourself.

#669

Lovely seg fault on trying to run affinity:

ssb@ssb-desktop:~$ affinity Action Engine : Scanning /home/ssb/.gnome2/affinity/actions Action Engine : Scanning /usr/share/affinity/actions Application Engine : Scanning /home/ssb/.local/share/applications Application Engine : Scanning /home/ssb/.local/share/applications/wine Application Engine : Scanning /home/ssb/.local/share/applications/wine/Programs Application Engine : Scanning /home/ssb/.local/share/applications/wine/Programs/Steam Application Engine : Scanning /home/ssb/.local/share/applications/wine/Programs/Steam/Uninstall Application Engine : Scanning /usr/local/share/applications

(affinity:16315): GLib-CRITICAL **: g_dir_read_name: assertion `dir != NULL' failed

(affinity:16315): GLib-CRITICAL **: g_dir_close: assertion `dir != NULL' failed Application Engine : Scanning /usr/share/applications Application Engine : Scanning /usr/share/applications/screensavers Application Engine : Scanning /usr/share/applications/kde Desktop Search Engine : Tracker

(affinity:16315): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:16315): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:16315): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed Segmentation fault (core dumped)

#670

reacocard said: stacks are back, and they brought company! you can now install the awn-core-applets-bzr package and get stacks, a clock, the gnome menu and a funky animation. enjoy!

this is currently 32bit feisty only, it will become available for 64bit soon.

Today I could update to 0.1.2-bzr78 on amd64/feisty, but I'm not able to install awn-core-applets-bzr:

Couldn't find any package whose name or description matched "awn-core-applets-bzr"

How to handle awn-extra? Like this??

bzr co http://bazaar.launchpad.net/~awn-extras/awn-extras/trunk awn-extras

Because I can't find it in the repository:


$ apt-cache search "(awn\-|avant\-)"
libawn-bzr-dev - library for Avant Window Navigator applets - development files
avant-window-navigator-bzr - Avant Window Navigator
libawn-bzr - library for Avant Window Navigator applets
#671

floogy said: Today I could update to 0.1.2-bzr78 on amd64/feisty, but I'm not able to install awn-core-applets-bzr:

Couldn't find any package whose name or description matched "awn-core-applets-bzr"

How to handle awn-extra? Like this??

bzr co http://bazaar.launchpad.net/~awn-extras/awn-extras/trunk awn-extras

Because I can't find it in the repository:


$ apt-cache search "(awn\-|avant\-)"
libawn-bzr-dev - library for Avant Window Navigator applets - development files
avant-window-navigator-bzr - Avant Window Navigator
libawn-bzr - library for Avant Window Navigator applets

I can find the applets with the same search as yours in the repo

&#9492;&#9472; $ -> apt-cache search "(awn\-|avant\-)"
libawn-bzr - library for Avant Window Navigator applets
avant-window-navigator-bzr - Avant Window Navigator
awn-core-applets-bzr - A collection of applets for avant-window-navigator
libawn-bzr-dev - library for Avant Window Navigator applets - development files
avant-window-navigator - Dock-like window navigator
libawn0 - Avant Window Navigator Library
libawn-dbg - Avant Window Navigator Library (Debug files)
libawn-dev - Avant Window Navigator Library (Development files)

You may need to

sudo apt-get update
#672

floogy said: Today I could update to 0.1.2-bzr78 on amd64/feisty, but I'm not able to install awn-core-applets-bzr:

Couldn't find any package whose name or description matched "awn-core-applets-bzr"

How to handle awn-extra? Like this??

bzr co http://bazaar.launchpad.net/~awn-extras/awn-extras/trunk awn-extras

Because I can't find it in the repository:


$ apt-cache search "(awn\-|avant\-)"
libawn-bzr-dev - library for Avant Window Navigator applets - development files
avant-window-navigator-bzr - Avant Window Navigator
libawn-bzr - library for Avant Window Navigator applets

It is not yet available for 64-bit in the repo, we have been having a few rebuilding issues which will hopefully be resolved soon.

#673

oops, didn't see it was for 64bits. I should have sleep a bit more :)

#674

Seriously, though, how can I get affinity working from this repo? I uninstalled Beagle because I don't want to have to compile it.

#675

SSB said: Seriously, though, how can I get affinity working from this repo? I uninstalled Beagle because I don't want to have to compile it.

Install and configure tracker. Install affinity-svn. If that doesn't work, then I don't really know. Test tracker with tracker-search-tool first to make sure its set up right.

#676

A strange issue with affinity-svn package:

Les NOUVEAUX paquets suivants seront installés :
  affinity-svn gconf libdb3 libgconf11 libglib1.2 libgnome-vfs-common libgnome-vfs0 libgtk1.2

svn package wants to install gtk1.2 but not the stable version ??

#677

ah, found my problem. wasn't using affinity SVN.

really buggy, though :( at least it looks nice.

#678

reacocard said: See this post: http://ubuntuforums.org/showpost.php?p=3298318&postcount=664

Once someone confirms that that works I'll update the guide.

how do i install the other packages? i am very new to ubuntu and linux in general

i would really apreciate any more help

#679

nagla said: how do i install the other packages? i am very new to ubuntu and linux in general

i would really apreciate any more help

sudo apt-get install <packagename>

or just search for it in synaptic.

#680

I seem to be getting a MD5Sum mismatch over the last 2 days, anyone else getting this?

Failed to fetch http://download.tuxfamily.org/syzygy42/dists/feisty/avant-window-navigator/binary-i386/Packages.bz2  MD5Sum mismatch
Failed to fetch http://download.tuxfamily.org/syzygy42/dists/feisty/avant-window-navigator/source/Sources.bz2  MD5Sum mismatch
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.
#681

i have this error on gutsy (with intel i810)


name@name-kubuntu:~$ avant-window-navigator
X Error: BadDevice, invalid or uninitialized input device 171
  Major opcode:  147
  Minor opcode:  3
  Resource id:  0x0
Failed to open device
X Error: BadDevice, invalid or uninitialized input device 171
  Major opcode:  147
  Minor opcode:  3
  Resource id:  0x0
Failed to open device

** (avant-window-navigator:3573): WARNING **: Failed to make connection to session bus: Failed to execute dbus-launch to autolaunch D-Bus session

** (avant-window-navigator:3573): CRITICAL **: dbus_g_proxy_new_for_name: assertion `connection != NULL' failed

** (avant-window-navigator:3573): CRITICAL **: dbus_g_proxy_call: assertion `DBUS_IS_G_PROXY (proxy)' failed

** (avant-window-navigator:3573): WARNING **: There was an error requesting the name:
*** glibc detected *** avant-window-navigator: double free or corruption (fasttop): 0x08214c00 ***

name@name-kubuntu:~$  

please help me!

#682

reacocard said: Yeah sorry AWN added python bindings the other day and I haven't got around to updating the dependency lists yet. These are the additional packages you will need:

python-dev python-gtk-dev python-cairo-dev python-gconf python-gnome2-dev

If python-gtk-dev does not work, try python-gtk2-dev instead.

I guess you should also have: python-gtk-dev python-gnome2-dev

Correct me if I'm wrong.

#683

About dep problems also, still doesn't understand wy affinity-svn from repo wants to install gtk1.2 when stable don't. Gtk1.2 is (almost) obsolete I do not use anymore apps with these libs, I'll prefer gtk 2. What's wrong ?

#684

impazzito said: i have this error on gutsy (with intel i810)


name@name-kubuntu:~$ avant-window-navigator
X Error: BadDevice, invalid or uninitialized input device 171
  Major opcode:  147
  Minor opcode:  3
  Resource id:  0x0
Failed to open device
X Error: BadDevice, invalid or uninitialized input device 171
  Major opcode:  147
  Minor opcode:  3
  Resource id:  0x0
Failed to open device

** (avant-window-navigator:3573): WARNING **: Failed to make connection to session bus: Failed to execute dbus-launch to autolaunch D-Bus session

** (avant-window-navigator:3573): CRITICAL **: dbus_g_proxy_new_for_name: assertion `connection != NULL' failed

** (avant-window-navigator:3573): CRITICAL **: dbus_g_proxy_call: assertion `DBUS_IS_G_PROXY (proxy)' failed

** (avant-window-navigator:3573): WARNING **: There was an error requesting the name:
*** glibc detected *** avant-window-navigator: double free or corruption (fasttop): 0x08214c00 ***

name@name-kubuntu:~$  

please help me!

looks like your dbus isn't set up right

TmP said: If python-gtk-dev does not work, try python-gtk2-dev instead.

I guess you should also have: python-gtk-dev python-gnome2-dev

Correct me if I'm wrong.

Probably right, I was copying from a post by the AWN author.

ayoli said: About dep problems also, still doesn't understand wy affinity-svn from repo wants to install gtk1.2 when stable don't.

Gtk1.2 is (almost) obsolete I do not use anymore apps with these libs, I'll prefer gtk 2. What's wrong ?

Likely bad packaging on an unmaintained app. I should just remove affinity from the repos, without active upstream it really has no future.

#685

reacocard said:

Likely bad packaging on an unmaintained app. I should just remove affinity from the repos, without active upstream it really has no future.

shame, affinity looked like a cool app ...

#686

I don't have time to read through 70 pages of replies to see if this issue has been addressed. I apologise. I do however see python-gtk2 in my synapticPM installed if thats not the same? I am a noob too btw. :D

I am running Feisty with Beryl/XGL.

This is after running ./autogen.sh

checking for PYGTK... configure: error: Package requirements (pygtk-2.0 >= 2.8.0) were not met:

No package 'pygtk-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables PYGTK_CFLAGS
and PYGTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
#687

ethos101 said: I don't have time to read through 70 pages of replies to see if this issue has been addressed. I apologise. I do however see python-gtk2 in my synapticPM installed if thats not the same? I am a noob too btw. :D

I am running Feisty with Beryl/XGL.

This is after running ./autogen.sh

checking for PYGTK... configure: error: Package requirements (pygtk-2.0 >= 2.8.0) were not met:

No package 'pygtk-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables PYGTK_CFLAGS
and PYGTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

try installing python-gtk2-dev

#688

reacocard said: It is not yet available for 64-bit in the repo, we have been having a few rebuilding issues which will hopefully be resolved soon.

When, eventually could we expect these packages in the amd64 repo?

#689

floogy said: When, eventually could we expect these packages in the amd64 repo?

Whenever the rebuilding issues get sorted out. We really do not know how long this will take, unfortunately.

#690

Grrrr I'm getting this error during the ./autogen.sh command, can anyone lead me in the right direction?

checking for headers required to compile python extensions... not found
configure: error: could not find Python headers
#691

weezerisrock said: Grrrr I'm getting this error during the ./autogen.sh command, can anyone lead me in the right direction?

checking for headers required to compile python extensions... not found
configure: error: could not find Python headers

try:

sudo apt-get install python-dev python-gtk-dev python-cairo-dev python-gconf python-gnome2-dev
#692

looks like you discovered the problem, but I guess I don't have the repository?

E: Couldn't find package python-gtk-dev

Here is my sources list.

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

deb http://archive.ubuntu.com/ubuntu/ feisty main restricted
deb-src http://archive.ubuntu.com/ubuntu/ feisty restricted main multiverse universe #Added by software-properties

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ feisty-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu/ feisty-updates main restricted #Added by software-properties

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://archive.ubuntu.com/ubuntu/ feisty universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu/ feisty multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://us.archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu/ feisty-security main restricted
deb-src http://archive.ubuntu.com/ubuntu/ feisty-security restricted main multiverse universe #Added by software-properties
deb http://archive.ubuntu.com/ubuntu/ feisty-security universe
deb http://archive.ubuntu.com/ubuntu/ feisty-security multiverse
deb http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator

Thank you very much with the help!

#693

weezerisrock said: looks like you discovered the problem, but I guess I don't have the repository?

E: Couldn't find package python-gtk-dev

Here is my sources list.

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

deb http://archive.ubuntu.com/ubuntu/ feisty main restricted
deb-src http://archive.ubuntu.com/ubuntu/ feisty restricted main multiverse universe #Added by software-properties

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ feisty-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu/ feisty-updates main restricted #Added by software-properties

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://archive.ubuntu.com/ubuntu/ feisty universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu/ feisty multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://us.archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu/ feisty-security main restricted
deb-src http://archive.ubuntu.com/ubuntu/ feisty-security restricted main multiverse universe #Added by software-properties
deb http://archive.ubuntu.com/ubuntu/ feisty-security universe
deb http://archive.ubuntu.com/ubuntu/ feisty-security multiverse
deb http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator

Thank you very much with the help!

hum, try this one instead: python-gtk2-dev

#694

so will this work if I'm using kubuntu? I noticed a lot of the dependencies were for gnome.

#695

mythik said: so will this work if I'm using kubuntu? I noticed a lot of the dependencies were for gnome.

It does work in kubuntu, it just lacks some of the integration it has in gnome.

#696

mythik said: so will this work if I'm using kubuntu? I noticed a lot of the dependencies were for gnome.

With kubuntu, you may want to try kxdocker.

#697

ayoli said: hum, try this one instead: python-gtk2-dev

Thanks! I'll try it out tonite and let you know!

#698

after doing the stable installation of affinity and running it by typing affinity in the terminal, i'm getting this error:


Action Engine : Scanning /home/apollo/.gnome2/affinity/actions
Action Engine : Scanning /usr/local/share/affinity/actions
Application Engine : Scanning /home/apollo/.local/share/applications
Application Engine : Scanning /home/apollo/.local/share/applications/wine
Application Engine : Scanning /home/apollo/.local/share/applications/wine/Programs
Application Engine : Scanning /home/apollo/.local/share/applications/wine/Programs/Trickster Online
Application Engine : Scanning /usr/local/share/applications
Application Engine : Scanning /usr/share/applications
Application Engine : Scanning /usr/share/applications/screensavers
Application Engine : Scanning /usr/share/applications/kde
Desktop Search Engine : Tracker

(affinity:8943): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:8943): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:8943): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed
Segmentation fault (core dumped)

what do i do? sorry for the easy question, i'm very new to linux.

#699

i don't know if this has been mentioned before (70 page long thread!) but i was having issues getting affinity to work. The guide is missing installing beagle, tracker, svn, and libpanel-applet2-dev packages.

libpanel-applet2-dev is the cure to the following error whilst running make

make[2]: * [affinity-applet] Error 1 make[2]: Leaving directory /home/user/affinity-search/src' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory /home/user/affinity-search' make: *** [all] Error 2

#700

regomodo said: i don't know if this has been mentioned before (70 page long thread!) but i was having issues getting affinity to work. The guide is missing installing beagle, tracker, svn, and libpanel-applet2-dev packages.

libpanel-applet2-dev is the cure to the following error whilst running make

make[2]: * [affinity-applet] Error 1 make[2]: Leaving directory /home/user/affinity-search/src' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory /home/user/affinity-search' make: *** [all] Error 2

how do i fix it?

#701

ayoli said: hum, try this one instead: python-gtk2-dev

Thank you this worked.

#702

NOTICE: Affinity has been removed from the guide as upstream development appears to have ceased. The packages will remain in the repository for your convenience, but they will not be updated or supported. If upstream development resumes, I will add Affinity back to the guide and add new packages to the repo as well. Thank you.

#703

reacocard said: NOTICE: Affinity has been removed from the guide as upstream development appears to have ceased. The packages will remain in the repository for your convenience, but they will not be updated or supported. If upstream development resumes, I will add Affinity back to the guide and add new packages to the repo as well. Thank you.

sad news, but best decision I guess. Btw, it seems that gusty will provide a "native" frontend to tracker.

#704

well..lets say that it just didn't work.. here's my terminal. BTW: I'm an ubuntu newbie..really newbie [PHP] djonah@djonah-laptop:~/avant-window-navigator-0.1.1$ sudo apt-get install build-essential Password: Pakketlijsten worden ingelezen... Klaar Boom van vereisten wordt opgebouwd Reading state information... Klaar De volgende extra pakketten zullen geïnstalleerd worden: dpkg-dev g++ g++-4.1 libc6-dev libstdc++6-4.1-dev linux-libc-dev Voorgestelde pakketten: debian-keyring gcc-4.1-doc lib64stdc++6 glibc-doc manpages-dev libstdc++6-4.1-doc De volgende NIEUWE pakketten zullen geïnstalleerd worden: build-essential dpkg-dev g++ g++-4.1 libc6-dev libstdc++6-4.1-dev linux-libc-dev 0 pakketten opgewaardeerd, 7 nieuwe pakketten geïnstalleerd, 0 verwijderen en 0 niet opgewaardeerd. Er moeten 8054kB aan archieven opgehaald worden. Na het uitpakken zal er 33,7MB extra schijfruimte gebruikt worden. Wilt u doorgaan [J/n]? j Ophalen:1 http://be.archive.ubuntu.com feisty/main libc6-dev 2.5-0ubuntu14 [3018kB] Ophalen:2 http://security.ubuntu.com feisty-security/main linux-libc-dev 2.6.20-16.31 [668kB] Ophalen:3 http://be.archive.ubuntu.com feisty/main libstdc++6-4.1-dev 4.1.2-0ubuntu4 [1632kB] Ophalen:4 http://be.archive.ubuntu.com feisty/main g++-4.1 4.1.2-0ubuntu4 [2581kB] Ophalen:5 http://be.archive.ubuntu.com feisty/main g++ 4:4.1.2-1ubuntu1 [1428B] Ophalen:6 http://be.archive.ubuntu.com feisty/main dpkg-dev 1.13.24ubuntu6 [147kB] Ophalen:7 http://be.archive.ubuntu.com feisty/main build-essential 11.3 [6974B] 8054kB opgehaald in 7s (1117kB/s) Selecteren van voorheen niet geselecteerd pakket linux-libc-dev. (Database inlezen ... 116890 bestanden en mappen geïnstalleerd.) Uitpakken van linux-libc-dev (uit .../linux-libc-dev_2.6.20-16.31_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libc6-dev. Uitpakken van libc6-dev (uit .../libc6-dev_2.5-0ubuntu14_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libstdc++6-4.1-dev. Uitpakken van libstdc++6-4.1-dev (uit .../libstdc++6-4.1-dev_4.1.2-0ubuntu4_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket g++-4.1. Uitpakken van g++-4.1 (uit .../g++-4.1_4.1.2-0ubuntu4_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket g++. Uitpakken van g++ (uit .../g++_4%3a4.1.2-1ubuntu1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket dpkg-dev. Uitpakken van dpkg-dev (uit .../dpkg-dev_1.13.24ubuntu6_all.deb) ... Selecteren van voorheen niet geselecteerd pakket build-essential. Uitpakken van build-essential (uit .../build-essential_11.3_i386.deb) ... Instellen van linux-libc-dev (2.6.20-16.31) ... Instellen van libc6-dev (2.5-0ubuntu14) ... Instellen van dpkg-dev (1.13.24ubuntu6) ... Instellen van libstdc++6-4.1-dev (4.1.2-0ubuntu4) ... Instellen van g++-4.1 (4.1.2-0ubuntu4) ... Instellen van g++ (4.1.2-1ubuntu1) ... Instellen van build-essential (11.3) ... djonah@djonah-laptop:~/avant-window-navigator-0.1.1$ sudo apt-get install libgtk2.0-dev libwnck-dev libwnck-common libgconf2-dev libglib2.0-dev libgnome2-dev libgnome-desktop-2 libgnome-desktop-dev Pakketlijsten worden ingelezen... Klaar Boom van vereisten wordt opgebouwd Reading state information... Klaar libwnck-common is reeds de nieuwste versie. libgnome-desktop-2 is reeds de nieuwste versie. De volgende extra pakketten zullen geïnstalleerd worden: libart-2.0-dev libatk1.0-dev libaudiofile-dev libavahi-client-dev libavahi-common-dev libavahi-glib-dev libbonobo2-dev libbonoboui2-dev libcairo2-dev libdbus-1-dev libesd0-dev libexpat1-dev libfontconfig1-dev libfreetype6-dev libgcrypt11-dev libglade2-dev libgnome-keyring-dev libgnomecanvas2-dev libgnomeui-dev libgnomevfs2-dev libgnutls-dev libgpg-error-dev libice-dev libidl-dev libjpeg62-dev liblzo-dev libopencdk8-dev liborbit2-dev libpango1.0-dev libpng12-dev libpopt-dev libselinux1-dev libsepol1-dev libsm-dev libstartup-notification0-dev libtasn1-3-dev libx11-dev libxau-dev libxcursor-dev libxdmcp-dev libxext-dev libxfixes-dev libxft-dev libxi-dev libxinerama-dev libxml2-dev libxrandr-dev libxrender-dev libxres-dev x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev x11proto-render-dev x11proto-resource-dev x11proto-xext-dev x11proto-xinerama-dev xtrans-dev zlib1g-dev Voorgestelde pakketten: libcairo2-doc libgcrypt11-doc glade-2 glade-gnome-2 libglib2.0-doc libgnome2-doc libgnomecanvas2-doc libgnomeui-doc gnutls-doc gnutls-bin libgtk2.0-doc libpango1.0-doc Aanbevolen pakketten: orbit2 De volgende NIEUWE pakketten zullen geïnstalleerd worden: libart-2.0-dev libatk1.0-dev libaudiofile-dev libavahi-client-dev libavahi-common-dev libavahi-glib-dev libbonobo2-dev libbonoboui2-dev libcairo2-dev libdbus-1-dev libesd0-dev libexpat1-dev libfontconfig1-dev libfreetype6-dev libgconf2-dev libgcrypt11-dev libglade2-dev libglib2.0-dev libgnome-desktop-dev libgnome-keyring-dev libgnome2-dev libgnomecanvas2-dev libgnomeui-dev libgnomevfs2-dev libgnutls-dev libgpg-error-dev libgtk2.0-dev libice-dev libidl-dev libjpeg62-dev liblzo-dev libopencdk8-dev liborbit2-dev libpango1.0-dev libpng12-dev libpopt-dev libselinux1-dev libsepol1-dev libsm-dev libstartup-notification0-dev libtasn1-3-dev libwnck-dev libx11-dev libxau-dev libxcursor-dev libxdmcp-dev libxext-dev libxfixes-dev libxft-dev libxi-dev libxinerama-dev libxml2-dev libxrandr-dev libxrender-dev libxres-dev x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev x11proto-render-dev x11proto-resource-dev x11proto-xext-dev x11proto-xinerama-dev xtrans-dev zlib1g-dev 0 pakketten opgewaardeerd, 66 nieuwe pakketten geïnstalleerd, 0 verwijderen en 0 niet opgewaardeerd. Er moeten 21,7MB aan archieven opgehaald worden. Na het uitpakken zal er 68,4MB extra schijfruimte gebruikt worden. Wilt u doorgaan [J/n]? j Ophalen:1 http://be.archive.ubuntu.com feisty/main x11proto-core-dev 7.0.10-1 [86,3kB] Ophalen:2 http://security.ubuntu.com feisty-security/main libfreetype6-dev 2.2.1-5ubuntu1.1 [640kB] Ophalen:3 http://be.archive.ubuntu.com feisty/main libice-dev 2:1.0.3-1build1 [55,9kB] Ophalen:4 http://be.archive.ubuntu.com feisty/main libsm-dev 2:1.0.2-1build1 [25,6kB] Ophalen:5 http://be.archive.ubuntu.com feisty/main libxau-dev 1:1.0.3-1 [15,5kB] Ophalen:6 http://be.archive.ubuntu.com feisty/main libxdmcp-dev 1:1.0.2-1 [19,8kB] Ophalen:7 http://be.archive.ubuntu.com feisty/main x11proto-input-dev 1.4.1-1 [15,4kB] Ophalen:8 http://be.archive.ubuntu.com feisty/main x11proto-kb-dev 1.0.3-2ubuntu1 [27,0kB] Ophalen:9 http://be.archive.ubuntu.com feisty/main xtrans-dev 1.0.3-1 [69,2kB] Ophalen:10 http://be.archive.ubuntu.com feisty/main libx11-dev 2:1.1.1-1ubuntu3 [8685kB] Ophalen:11 http://security.ubuntu.com feisty-security/main libpng12-dev 1.2.15~beta5-1ubuntu1 [172kB] Ophalen:12 http://be.archive.ubuntu.com feisty/main x11proto-render-dev 2:0.9.2-4ubuntu1 [6960B] Ophalen:13 http://be.archive.ubuntu.com feisty/main libxrender-dev 1:0.9.1-3 [24,4kB] Ophalen:14 http://be.archive.ubuntu.com feisty/main x11proto-xext-dev 7.0.2-5ubuntu1 [42,2kB] Ophalen:15 http://be.archive.ubuntu.com feisty/main x11proto-fixes-dev 1:4.0-0.1ubuntu2 [5662B] Ophalen:16 http://be.archive.ubuntu.com feisty/main libxfixes-dev 1:4.0.3-1 [12,1kB] Ophalen:17 http://be.archive.ubuntu.com feisty/main libxcursor-dev 1:1.1.8-1 [30,6kB] Ophalen:18 http://be.archive.ubuntu.com feisty/main libxext-dev 2:1.0.3-1build1 [81,5kB] Ophalen:19 http://be.archive.ubuntu.com feisty/main libexpat1-dev 1.95.8-3.4build1 [129kB] Ophalen:20 http://be.archive.ubuntu.com feisty/main zlib1g-dev 1:1.2.3-13ubuntu4 [407kB] Ophalen:21 http://be.archive.ubuntu.com feisty/main libfontconfig1-dev 2.4.2-1ubuntu1 [344kB] Ophalen:22 http://be.archive.ubuntu.com feisty/main libxft-dev 2.1.12-1 [60,7kB] Ophalen:23 http://be.archive.ubuntu.com feisty/main libxi-dev 2:1.1.0-1build1 [67,7kB] Ophalen:24 http://be.archive.ubuntu.com feisty/main x11proto-xinerama-dev 1.1.2-4ubuntu1 [5424B] Ophalen:25 http://be.archive.ubuntu.com feisty/main libxinerama-dev 2:1.0.1-4build1 [4196B] Ophalen:26 http://be.archive.ubuntu.com feisty/main x11proto-randr-dev 1.2.1-1 [28,6kB] Ophalen:27 http://be.archive.ubuntu.com feisty/main libxrandr-dev 2:1.2.0-3ubuntu1 [27,5kB] Ophalen:28 http://be.archive.ubuntu.com feisty/main x11proto-resource-dev 1.0.2-4ubuntu1 [3994B] Ophalen:29 http://be.archive.ubuntu.com feisty/main libxres-dev 2:1.0.1-2 [8048B] Ophalen:30 http://be.archive.ubuntu.com feisty/main libart-2.0-dev 2.3.17-1 [77,0kB] Ophalen:31 http://be.archive.ubuntu.com feisty/main libglib2.0-dev 2.12.11-0ubuntu1 [536kB] Ophalen:32 http://be.archive.ubuntu.com feisty/main libatk1.0-dev 1.18.0-0ubuntu1 [112kB] Ophalen:33 http://be.archive.ubuntu.com feisty/main libaudiofile-dev 0.2.6-6ubuntu3 [116kB] Ophalen:34 http://be.archive.ubuntu.com feisty/main libavahi-common-dev 0.6.17-0ubuntu3 [57,0kB] Ophalen:35 http://be.archive.ubuntu.com feisty-updates/main libdbus-1-dev 1.0.2-1ubuntu4 [335kB] Ophalen:36 http://be.archive.ubuntu.com feisty/main libavahi-client-dev 0.6.17-0ubuntu3 [51,5kB] Ophalen:37 http://be.archive.ubuntu.com feisty/main libavahi-glib-dev 0.6.17-0ubuntu3 [27,7kB] Ophalen:38 http://be.archive.ubuntu.com feisty/main libidl-dev 0.8.7-0.1ubuntu2 [102kB] Ophalen:39 http://be.archive.ubuntu.com feisty/main liborbit2-dev 1:2.14.7-0ubuntu1 [459kB] Ophalen:40 http://be.archive.ubuntu.com feisty/main libpopt-dev 1.10-3build1 [38,3kB] Ophalen:41 http://be.archive.ubuntu.com feisty/main libbonobo2-dev 2.18.0-0ubuntu1 [240kB] Ophalen:42 http://be.archive.ubuntu.com feisty/main libcairo2-dev 1.4.2-0ubuntu1 [507kB] Ophalen:43 http://be.archive.ubuntu.com feisty/main libpango1.0-dev 1.16.2-0ubuntu1 [355kB] Ophalen:44 http://be.archive.ubuntu.com feisty/main libgtk2.0-dev 2.10.11-0ubuntu3 [2590kB] Ophalen:45 http://be.archive.ubuntu.com feisty/main libgnomecanvas2-dev 2.14.0-3ubuntu2 [129kB] Ophalen:46 http://be.archive.ubuntu.com feisty/main libxml2-dev 2.6.27.dfsg-1ubuntu3 [672kB] Ophalen:47 http://be.archive.ubuntu.com feisty/main libglade2-dev 1:2.6.0-3 [129kB] Ophalen:48 http://be.archive.ubuntu.com feisty/main libgconf2-dev 2.18.0.1-0ubuntu1 [271kB] Ophalen:49 http://be.archive.ubuntu.com feisty/main libgpg-error-dev 1.4-2build1 [33,7kB] Ophalen:50 http://be.archive.ubuntu.com feisty/main libgcrypt11-dev 1.2.3-2build1 [248kB] Ophalen:51 http://be.archive.ubuntu.com feisty/main libtasn1-3-dev 0.3.6-2build1 [310kB] Ophalen:52 http://be.archive.ubuntu.com feisty/main libopencdk8-dev 0.5.9-2build1 [122kB] Ophalen:53 http://be.archive.ubuntu.com feisty/main liblzo-dev 1.08-3 [109kB] Ophalen:54 http://be.archive.ubuntu.com feisty/main libgnutls-dev 1.4.4-3build1 [358kB] Ophalen:55 http://be.archive.ubuntu.com feisty/main libsepol1-dev 1.14-2build1 [533kB] Ophalen:56 http://be.archive.ubuntu.com feisty/main libselinux1-dev 1.32-3ubuntu1 [203kB] Ophalen:57 http://be.archive.ubuntu.com feisty/main libgnomevfs2-dev 1:2.18.1-0ubuntu1 [533kB] Ophalen:58 http://be.archive.ubuntu.com feisty/main libesd0-dev 0.2.36-3ubuntu4 [24,3kB] Ophalen:59 http://be.archive.ubuntu.com feisty/main libgnome2-dev 2.18.0-0ubuntu1 [112kB] Ophalen:60 http://be.archive.ubuntu.com feisty/main libbonoboui2-dev 2.18.0-0ubuntu1 [286kB] Ophalen:61 http://be.archive.ubuntu.com feisty/main libgnome-keyring-dev 0.8.1-0ubuntu1 [54,1kB] Ophalen:62 http://be.archive.ubuntu.com feisty/main libjpeg62-dev 6b-13 [185kB] Ophalen:63 http://be.archive.ubuntu.com feisty/main libgnomeui-dev 2.17.92-0ubuntu1 [430kB] Ophalen:64 http://be.archive.ubuntu.com feisty/main libstartup-notification0-dev 0.9-1 [24,0kB] Ophalen:65 http://be.archive.ubuntu.com feisty/main libgnome-desktop-dev 1:2.18.1-0ubuntu1 [82,0kB] Ophalen:66 http://be.archive.ubuntu.com feisty/main libwnck-dev 2.18.0-0ubuntu1 [175kB] 21,7MB opgehaald in 25s (855kB/s) Extraheren van sjablonen uit pakketten: 100% Selecteren van voorheen niet geselecteerd pakket x11proto-core-dev. (Database inlezen ... 118640 bestanden en mappen geïnstalleerd.) Uitpakken van x11proto-core-dev (uit .../x11proto-core-dev_7.0.10-1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libice-dev. Uitpakken van libice-dev (uit .../libice-dev_2%3a1.0.3-1build1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libsm-dev. Uitpakken van libsm-dev (uit .../libsm-dev_2%3a1.0.2-1build1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libxau-dev. Uitpakken van libxau-dev (uit .../libxau-dev_1%3a1.0.3-1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libxdmcp-dev. Uitpakken van libxdmcp-dev (uit .../libxdmcp-dev_1%3a1.0.2-1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-input-dev. Uitpakken van x11proto-input-dev (uit .../x11proto-input-dev_1.4.1-1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-kb-dev. Uitpakken van x11proto-kb-dev (uit .../x11proto-kb-dev_1.0.3-2ubuntu1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket xtrans-dev. Uitpakken van xtrans-dev (uit .../xtrans-dev_1.0.3-1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libx11-dev. Uitpakken van libx11-dev (uit .../libx11-dev_2%3a1.1.1-1ubuntu3_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-render-dev. Uitpakken van x11proto-render-dev (uit .../x11proto-render-dev_2%3a0.9.2-4ubuntu1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libxrender-dev. Uitpakken van libxrender-dev (uit .../libxrender-dev_1%3a0.9.1-3_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-xext-dev. Uitpakken van x11proto-xext-dev (uit .../x11proto-xext-dev_7.0.2-5ubuntu1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-fixes-dev. Uitpakken van x11proto-fixes-dev (uit .../x11proto-fixes-dev_1%3a4.0-0.1ubuntu2_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libxfixes-dev. Uitpakken van libxfixes-dev (uit .../libxfixes-dev_1%3a4.0.3-1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libxcursor-dev. Uitpakken van libxcursor-dev (uit .../libxcursor-dev_1%3a1.1.8-1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libxext-dev. Uitpakken van libxext-dev (uit .../libxext-dev_2%3a1.0.3-1build1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libexpat1-dev. Uitpakken van libexpat1-dev (uit .../libexpat1-dev_1.95.8-3.4build1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket zlib1g-dev. Uitpakken van zlib1g-dev (uit .../zlib1g-dev_1%3a1.2.3-13ubuntu4_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libfreetype6-dev. Uitpakken van libfreetype6-dev (uit .../libfreetype6-dev_2.2.1-5ubuntu1.1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libfontconfig1-dev. Uitpakken van libfontconfig1-dev (uit .../libfontconfig1-dev_2.4.2-1ubuntu1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libxft-dev. Uitpakken van libxft-dev (uit .../libxft-dev_2.1.12-1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libxi-dev. Uitpakken van libxi-dev (uit .../libxi-dev_2%3a1.1.0-1build1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-xinerama-dev. Uitpakken van x11proto-xinerama-dev (uit .../x11proto-xinerama-dev_1.1.2-4ubuntu1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libxinerama-dev. Uitpakken van libxinerama-dev (uit .../libxinerama-dev_2%3a1.0.1-4build1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-randr-dev. Uitpakken van x11proto-randr-dev (uit .../x11proto-randr-dev_1.2.1-1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libxrandr-dev. Uitpakken van libxrandr-dev (uit .../libxrandr-dev_2%3a1.2.0-3ubuntu1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket x11proto-resource-dev. Uitpakken van x11proto-resource-dev (uit .../x11proto-resource-dev_1.0.2-4ubuntu1_all.deb) ... Selecteren van voorheen niet geselecteerd pakket libxres-dev. Uitpakken van libxres-dev (uit .../libxres-dev_2%3a1.0.1-2_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libart-2.0-dev. Uitpakken van libart-2.0-dev (uit .../libart-2.0-dev_2.3.17-1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libglib2.0-dev. Uitpakken van libglib2.0-dev (uit .../libglib2.0-dev_2.12.11-0ubuntu1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libatk1.0-dev. Uitpakken van libatk1.0-dev (uit .../libatk1.0-dev_1.18.0-0ubuntu1_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libaudiofile-dev. Uitpakken van libaudiofile-dev (uit .../libaudiofile-dev_0.2.6-6ubuntu3_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libavahi-common-dev. Uitpakken van libavahi-common-dev (uit .../libavahi-common-dev_0.6.17-0ubuntu3_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libdbus-1-dev. Uitpakken van libdbus-1-dev (uit .../libdbus-1-dev_1.0.2-1ubuntu4_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libavahi-client-dev. Uitpakken van libavahi-client-dev (uit .../libavahi-client-dev_0.6.17-0ubuntu3_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libavahi-glib-dev. Uitpakken van libavahi-glib-dev (uit .../libavahi-glib-dev_0.6.17-0ubuntu3_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket libidl-dev. Uitpakken van libidl-dev (uit .../libidl-dev_0.8.7-0.1ubuntu2_i386.deb) ... Selecteren van voorheen niet geselecteerd pakket liborbit2-dev. Uitpakken van liborbit2-dev (uit .../liborbit2-dev_1%3a2.14.7-0ubuntu1_i386.deb) ... E: Sub-process /usr/bin/dpkg exited unexpectedly djonah@djonah-laptop:~/avant-window-navigator-0.1.1$ ./configure checking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking how to create a ustar tar archive... gnutar checking whether to enable maintainer-specific portions of Makefiles... no checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking dependency style of gcc... gcc3 checking for library containing strerror... none required checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ANSI C... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for f90... no checking for xlf90... no checking for pgf90... no checking for epcf90... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for gfortran... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for intltool >= 0.34... 0.35.0 found checking for perl... /usr/bin/perl checking for XML::Parser... ok checking for iconv... /usr/bin/iconv checking for msgfmt... msgfmt checking for msgmerge... msgmerge checking for xgettext... xgettext checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... yes checking for dgettext in libc... yes checking for bind_textdomain_codeset... yes checking for msgfmt... no checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.7... yes checking for GLIB - version >= 2.8.0... yes (version 2.12.11) checking for AWN... configure: error: Package requirements ( glib-2.0 gobject-2.0 gtk+-2.0 gdk-2.0 libwnck-1.0 gconf-2.0) were not met: No package 'gtk+-2.0' found No package 'gdk-2.0' found No package 'libwnck-1.0' found No package 'gconf-2.0' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. djonah@djonah-laptop:~/avant-window-navigator-0.1.1$ make make: * No targets specified and no makefile found. Stop. djonah@djonah-laptop:~/avant-window-navigator-0.1.1$ sudo make install make: * No rule to make target `install'. Stop. djonah@djonah-laptop:~/avant-window-navigator-0.1.1$[/PHP]

Thanks for the help! greetz

#705

shame about affinity, I was just getting to really like it with the panel applet, I found I can use it as a replacement for the start menu being able to search programs by text is so fast compared to menus

#706

I had no trouble installing awn (this was an excellent guide) but for some reason I can't seem to launch the awn manager. Does anybody know what stupid mistake I'm making and how I can fix it? Any help would be greatly appreciated!

#707

ayoli said: sad news, but best decision I guess.

Btw, it seems that gusty will provide a "native" frontend to tracker.

alex_anthony said: shame about affinity, I was just getting to really like it

with the panel applet, I found I can use it as a replacement for the start menu being able to search programs by text is so fast compared to menus

I also liked affinity and am sad to see it go. The mockups Neil posted back in April looked really good, it's really too bad that it hasn't been worked on.

Of course, Neil could always surprise us with a major update that knocks the socks off everything else. :D

I had no trouble installing awn (this was an excellent guide) but for some reason I can't seem to launch the awn manager. Does anybody know what stupid mistake I'm making and how I can fix it? Any help would be greatly appreciated!

try running awn-manager from a terminal and post the output here.

#708

when i add launchers to the dock through the preferences, it won't show up in the dock. what's wrong and how do i fix it?

#709

Okay, this is what came up:

typesour@Freghd:~$ awn-manager

Traceback (most recent call last): File "/usr/bin/awn-manager", line 199, in <module> awnmanager = AwnManager() File "/usr/bin/awn-manager", line 100, in __init__ self.prefManager = awnPreferences(self.wTree) File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 149, in __init__ self.setup_font(TITLE_FONT_FACE, self.wTree.get_widget("selectfontface")) File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 267, in setup_font font_btn.set_font_name(self.client.get_string(key)) TypeError: GtkFontButton.set_font_name() argument 1 must be string, not None typesour@Freghd:~$

#710
ethan@ubuntu:~$ sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common
Password:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version.
autotools-dev is already the newest version.
libxdamage-dev is already the newest version.
libxcomposite-dev is already the newest version.
libgnome2-common is already the newest version.
libgnome2-dev is already the newest version.
libgnome-desktop-dev is already the newest version.
libgnome-vfs-dev is already the newest version.
libgtk2.0-dev is already the newest version.
libwnck-dev is already the newest version.
libgconf2-dev is already the newest version.
libglib2.0-dev is already the newest version.
libdbus-glib-1-dev is already the newest version.
libgnomevfs2-0 is already the newest version.
libgnome-desktop-2 is already the newest version.
libgnome2-0 is already the newest version.
libwnck-common is already the newest version.
python-gtk2 is already the newest version.
python-gconf is already the newest version.
bzr is already the newest version.
gnome-common is already the newest version.
The following packages were automatically installed and are no longer required:
  libwxgtk2.6-0 bittornado libwxbase2.6-0 python-wxversion python-wxgtk2.6
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
ethan@ubuntu:~$ bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator
ethan@ubuntu:~$ cd avant-window-navigator                                      
ethan@ubuntu:~/avant-window-navigator$ ./autogen.sh
/usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

  testing autoconf2.50... 
not found.
  testing autoconf... 
found 2.61

checking for automake >= 1.9...

  testing automake-1.10... 
not found.
  testing automake-1.9... 
found 1.9.6

checking for libtool >= 1.5...

  testing libtoolize... 
found 1.5.22

checking for glib-gettext >= 2.2.0...

  testing glib-gettextize... 
found 2.12.11

checking for intltool >= 0.30...

  testing intltoolize... 
found 0.35.5

checking for pkg-config >= 0.14.0...

  testing pkg-config... 
found 0.21

Checking for required M4 macros...


Checking for forbidden M4 macros...

**Warning**: I am going to run `configure' with no arguments.
If you wish to pass any to it, please specify them on the
`./autogen.sh' command line.


Processing ./configure.in


Running libtoolize...

You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.


Running intltoolize...


Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...


Running autoheader...


Running automake-1.9...

configure.in: installing `./install-sh'
configure.in: installing `./missing'
applets/notification-area/Makefile.am: installing `./compile'
applets/notification-area/Makefile.am: installing `./depcomp'
pyawn/Makefile.am:10: installing `./py-compile'

Running ./configure --enable-maintainer-mode ...

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for a Python interpreter with version >= 2.3.5... python
checking for python... /usr/bin/python
checking for python version... 2.5
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.5/site-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.5/site-packages
checking for headers required to compile python extensions... not found
configure: error: could not find Python headers
ethan@ubuntu:~/avant-window-navigator$ make
make: *** No targets specified and no makefile found.  Stop.

I got this error, anyone help please?

#711

eplymale3043 said:

ethan@ubuntu:~$ sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common Password: Reading package lists... Done Building dependency tree Reading state information... Done build-essential is already the newest version. autotools-dev is already the newest version. libxdamage-dev is already the newest version. libxcomposite-dev is already the newest version. libgnome2-common is already the newest version. libgnome2-dev is already the newest version. libgnome-desktop-dev is already the newest version. libgnome-vfs-dev is already the newest version. libgtk2.0-dev is already the newest version. libwnck-dev is already the newest version. libgconf2-dev is already the newest version. libglib2.0-dev is already the newest version. libdbus-glib-1-dev is already the newest version. libgnomevfs2-0 is already the newest version. libgnome-desktop-2 is already the newest version. libgnome2-0 is already the newest version. libwnck-common is already the newest version. python-gtk2 is already the newest version. python-gconf is already the newest version. bzr is already the newest version. gnome-common is already the newest version. The following packages were automatically installed and are no longer required: libwxgtk2.6-0 bittornado libwxbase2.6-0 python-wxversion python-wxgtk2.6 Use 'apt-get autoremove' to remove them. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. ethan@ubuntu:~$ bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator ethan@ubuntu:~$ cd avant-window-navigator ethan@ubuntu:~/avant-window-navigator$ ./autogen.sh /usr/bin/gnome-autogen.sh

checking for autoconf >= 2.53...

testing autoconf2.50... not found. testing autoconf... found 2.61

checking for automake >= 1.9...

testing automake-1.10... not found. testing automake-1.9... found 1.9.6

checking for libtool >= 1.5...

testing libtoolize... found 1.5.22

checking for glib-gettext >= 2.2.0...

testing glib-gettextize... found 2.12.11

checking for intltool >= 0.30...

testing intltoolize... found 0.35.5

checking for pkg-config >= 0.14.0...

testing pkg-config... found 0.21

Checking for required M4 macros...

Checking for forbidden M4 macros...

Warning: I am going to run configure' with no arguments. If you wish to pass any to it, please specify them on the ./autogen.sh' command line.

Processing ./configure.in

Running libtoolize...

You should add the contents of /usr/share/aclocal/libtool.m4' to aclocal.m4'.

Running glib-gettextize... Ignore non-fatal messages.

Copying file mkinstalldirs Copying file po/Makefile.in.in

Please add the files codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.

Running intltoolize...

Running aclocal-1.9...

/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF /usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE

Running autoconf...

Running autoheader...

Running automake-1.9...

configure.in: installing ./install-sh' configure.in: installing ./missing' applets/notification-area/Makefile.am: installing ./compile' applets/notification-area/Makefile.am: installing ./depcomp' pyawn/Makefile.am:10: installing `./py-compile'

Running ./configure --enable-maintainer-mode ...

checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... yes checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking for library containing strerror... none required checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for a Python interpreter with version >= 2.3.5... python checking for python... /usr/bin/python checking for python version... 2.5 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.5/site-packages checking for python extension module directory... ${exec_prefix}/lib/python2.5/site-packages checking for headers required to compile python extensions... not found configure: error: could not find Python headers ethan@ubuntu:~/avant-window-navigator$ make make: *** No targets specified and no makefile found. Stop.


I got this error, anyone help please?

do this

sudo apt-get install python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev

then do ./autogen.sh again.
#712

I have a problem with AWN: When I click in preferences/Awn manager nothing happens! How can I fix this?

#713

Hi, i'm using Compiz and just finished installing Avant-Window-Navigator (bzr). I followed the directions exactly but once I put in "sudo make install" what's next. I mean I don't see any dock or do I need to activate it?

EDIT: I read the README file but I don't have "Applications->Accessories->Avant Window Navigator" or "System->Preferences(->More Preferences)->Avant Preferences". Any suggestions?

#714

Vanish00 said: Hi, i'm using Compiz and just finished installing Avant-Window-Navigator (bzr). I followed the directions exactly but once I put in "sudo make install" what's next. I mean I don't see any dock or do I need to activate it?

EDIT: I read the README file but I don't have "Applications->Accessories->Avant Window Navigator" or "System->Preferences(->More Preferences)->Avant Preferences". Any suggestions?

open a terminal and type

avant-window-navigator

if that gives you 'command not found' you did something wrong during the install and you'll have to try again.

#715

Hm.

How do you activate the reflection feature? I can't seem to find it in the AWN manager.

#716

Vadi said: Hm.

How do you activate the reflection feature? I can't seem to find it in the AWN manager.

Set the bar type to 3d, then open gconf-editor, navigate to apps->avant-window-navigator->bar and set icon_offset to 10, then restart AWN.

#717

Okay, now I see a tiiiny glimpse of a reflection, only for the icon who's window is currently in focus. It's like 3 pixels from the bottom of the bar itself.

How do I tune that up?

#718

Vadi said: Okay, now I see a tiiiny glimpse of a reflection, only for the icon who's window is currently in focus. It's like 3 pixels from the bottom of the bar itself.

How do I tune that up?

increase icon_offset

#719

Cool, thanks.

#720

When I click on Applications->Accessories->Avant nothing happens; if I try to run it from terminal, I have the foolowing error

Error: Screen isn't composited. Please run compiz (-fusion) or another compositing manager.

I read somewhere to use Beryl and so i installed it, but when I open this program, i don't know what to do with it to make avant to work. Last, i checked on installed applications and I saw i have compiz installed to, but if I run it from a terminal I have the following error:

window manager warning: the value «» in configuration database is not valid for the shortcut «toggle_shaded»
Window manager warning: screen 0 in display «:0.0» has already a window manager; use option --replace to substitute it.

Can you please help?

Thanks a lot in advance

#721

Does anybody know how and if I can change the look for the clock applet?

I tried some googling on it. But couldn't find any mention if it's possible or not.

#722

jobbesat said: When I click on Applications->Accessories->Avant nothing happens; if I try to run it from terminal, I have the foolowing error

Error: Screen isn't composited. Please run compiz (-fusion) or another compositing manager.

I read somewhere to use Beryl and so i installed it, but when I open this program, i don't know what to do with it to make avant to work. Last, i checked on installed applications and I saw i have compiz installed to, but if I run it from a terminal I have the following error:

window manager warning: the value «» in configuration database is not valid for the shortcut «toggle_shaded»
Window manager warning: screen 0 in display «:0.0» has already a window manager; use option --replace to substitute it.

Can you please help?

Thanks a lot in advance you need to run either

compiz --replace

or

beryl --replace

to allow avant-window-navigator to run properly.

#723

Megaqwerty said: you need to run either

compiz --replace

or

beryl --replace

to allow avant-window-navigator to run properly. First of all, thanks for you reply. I didn't solved, even trying both, here's the errors given

jobbe@jobbe-desktop:~$ beryl --replace
**************************************************************
* Beryl system compatibility check                           *
**************************************************************

Detected xserver                                : AIGLX

Checking Display :0.0 ...

Checking for XComposite extension               : failed

No composite extension
beryl: No composite extension

and

jobbe@jobbe-desktop:~$ compiz --replace
/usr/bin/compiz.real: Unknown option '--no-fbo'
/usr/bin/compiz.real: No composite extension
Manager window warning: the value «» in config database is not valid for the shortcut «toggle_shaded»
Manager window warning: the screen 0 in display «:0.0» has already a window manager; use option --replace to substitute

Last, if I click on System->Preferences->Desktop effects, I have this error pop-up window [[IMG]http://img390.imageshack.us/img390/6463/snapshot1uf3.th.png[/IMG]](http://img390.imageshack.us/my.php?image=snapshot1uf3.png) which means "The composite extension is not available"

ps: maybe the problem is in my ati videocard? I tried to run the command: glxinfo | grep 'OpenGL vendor' but I get this: OpenGL vendor string: Mesa project: www.mesa3d.org

Why this mesa? I downloaded all drivers from Ati site regarding my Radeon x600 and I hope to install them correctly??

#724

jobbesat said: First of all, thanks for you reply. I didn't solved, even trying both, here's the errors given

jobbe@jobbe-desktop:~$ beryl --replace
**************************************************************
* Beryl system compatibility check                           *
**************************************************************

Detected xserver                                : AIGLX

Checking Display :0.0 ...

Checking for XComposite extension               : failed

No composite extension
beryl: No composite extension

and

jobbe@jobbe-desktop:~$ compiz --replace
/usr/bin/compiz.real: Unknown option '--no-fbo'
/usr/bin/compiz.real: No composite extension
Manager window warning: the value «» in config database is not valid for the shortcut «toggle_shaded»
Manager window warning: the screen 0 in display «:0.0» has already a window manager; use option --replace to substitute

Last, if I click on System->Preferences->Desktop effects, I have this error pop-up window [[IMG]http://img390.imageshack.us/img390/6463/snapshot1uf3.th.png[/IMG]](http://img390.imageshack.us/my.php?image=snapshot1uf3.png) which means "The composite extension is not available"

ps: maybe the problem is in my ati videocard? I tried to run the command: glxinfo | grep 'OpenGL vendor' but I get this: OpenGL vendor string: Mesa project: www.mesa3d.org

Why this mesa? I downloaded all drivers from Ati site regarding my Radeon x600 and I hope to install them correctly??

I think you need XGL to run compiz on ATI graphic cards. Checkout this thread

#725

I finally did it to run Beryl, so thanks. Now, what i really don't understand, is that i'd like to try this cube windows, but even if Beryl modified the graphics, my windows are still normal. any helping hand? thanks a lot in advance

#726

jobbesat said: I finally did it to run Beryl, so thanks. Now, what i really don't understand, is that i'd like to try this cube windows, but even if Beryl modified the graphics, my windows are still normal. any helping hand?

thanks a lot in advance

this is a bit off topic, you should search, there are many thread about beryl here. Btw, that should be in beryl settings manager under general a setting called 'virtual horizontal size' which should be set to 4

#727

I had to reinstall ubuntu, so what i did to reinstall Avn is just connect via Synaptic, i got the package and everything works fine with one single problem. The problem is that my bar looks like this, which is really "outrageous" :) [[IMG]http://img458.imageshack.us/img458/278/screen1au5.th.png[/IMG]](http://img458.imageshack.us/my.php?image=screen1au5.png) As you can see is really ugly and too much tall, but if i reduce height, the icons reduce too and they become almost invisible. Can anybody please helps? Thanks a lot in advance

#728

You need to have Compiz working to get rid of the black bar :)

Go to System - Preferences - Desktop Effects and enable them.

Keep in mind that that's an *old* version of compiz, and you really don't have any options to configure it. There's a good guide that Forlong posted (clicky) where he shows how to install the newer version.

#729

I installed the packages avant-window-navigator-bzr and awn-core-applets-bzr.

The dock launches fine, but trying to launch preferences gives me:

Traceback (most recent call last): File "/usr/bin/awn-manager", line 40, in <module> import gnomedesktop ImportError: No module named gnomedesktop

Any ideas? I'm running xubuntu / XFCE feisty

Keith

#730

thewump said: I installed the packages avant-window-navigator-bzr and awn-core-applets-bzr.

The dock launches fine, but trying to launch preferences gives me:

Traceback (most recent call last): File "/usr/bin/awn-manager", line 40, in <module> import gnomedesktop ImportError: No module named gnomedesktop

Any ideas? I'm running xubuntu / XFCE feisty

Keith

try this (in a terminal):

sudo apt-get install python-gnome2-desktop

then retry to lanuch awn preferences

#731

I have a problem. I have Fiesty with Compiz. When I run awn-manager from terminal I get:

Traceback (most recent call last): File "/usr/local/bin/awn-manager", line 199, in <module> awnmanager = AwnManager() File "/usr/local/bin/awn-manager", line 100, in __init__ self.prefManager = awnPreferences(self.wTree) File "/usr/local/share/avant-window-navigator/awn-manager/awnPreferences.py", line 151, in __init__ self.setup_font(TITLE_FONT_FACE, self.wTree.get_widget("selectfontface")) File "/usr/local/share/avant-window-navigator/awn-manager/awnPreferences.py", line 278, in setup_font font_btn.set_font_name(self.client.get_string(key)) TypeError: GtkFontButton.set_font_name() argument 1 must be string, not None

I think it has something to do with the font but I'm not sure. Help:confused:

#732

awn-manager is doing absolutely nothing... no traceback, so segfault, just absolutely nothing, any clues???

#733

Ditto,

used apt-get from the repo, and then started from the menu, and it opens a translucent bar, that shrinks then does nothing, cant interact with it at all. ran it again, no change, but now I have two running:


xx        8105     1  0 00:00 ?        00:00:00 avant-window-navigator
xx        8114     1  0 00:02 ?        00:00:00 avant-window-navigator
xx        8210  5212  0 00:15 pts/0    00:00:00 ps -ef
xx        8211  5212  0 00:15 pts/0    00:00:00 bash
xx@desktop:~$ kill -9 8105 8114
jxx@desktop:~$ awn-manager
xx@desktop:~$ avant-window-navigator
APPLET : /usr/lib/awn/applets/taskman.desktop

Awn-manager works, the windows manager not, running feisty 64bit with beryl.

Ideas?

#734

got some troubles with 6.06 dapper trying to install Avant Window Navigator... I am stuck at the following when trying to run ./autogen.sh

Please add the files

codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /usr/share/aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/.

and additionally at the bottom of the code:

No package 'xdamage' found

No package 'xcomposite' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

basically just trying to add Avant Window Navigator dock and started out compiling it caus I couldn't find the package file for it to make life easy... :) I found all the .m4 files in my aclocal directory and copied them over to /home/myusername/avant-window-navigator/ thinking that is the dir it was referencing for the autoconf macro directory.... however, I was wrong and when I tried to execute ./autogen.sh again it returns the same error with the missing m4 files again... everything I reference online seems to want you to use a C++ compiler instead of just telling you where the dir is unless I am mis-understanding it...

next...

on the You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/

tried to obtain these files with wget from this directory and got a 404 error that it re-directed to: http://projects.meuh.org/fbgetty/index.shtml which seems to want to give you only package files of sorts and not sure which one contains these two files and where to put them once I have them..

lastly... have no clue about this part:

No package 'xdamage' found

No package 'xcomposite' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

please direct a newb in the correct direction.... Thanks for any suggestions in advance.

#735

superpenguin79 said: got some troubles with 6.06 dapper trying to install Avant Window Navigator... I am stuck at the

following when trying to run ./autogen.sh

and additionally at the bottom of the code:

Alternatively, you may set the environment variables AWN_CFLAGS and AWN_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

basically just trying to add Avant Window Navigator dock and started out compiling it caus I couldn't find the package file for it to make life easy... :) I found all the .m4 files in my aclocal directory and copied them over to /home/myusername/avant-window-navigator/ thinking that is the dir it was referencing for the autoconf macro directory.... however, I was wrong and when I tried to execute ./autogen.sh again it returns the same error with the missing m4 files again... everything I reference online seems to want you to use a C++ compiler instead of just telling you where the dir is unless I am mis-understanding it...

next...

on the You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/

tried to obtain these files with wget from this directory and got a 404 error that it re-directed to: http://projects.meuh.org/fbgetty/index.shtml which seems to want to give you only package files of sorts and not sure which one contains these two files and where to put them once I have them..

lastly... have no clue about this part:

please direct a newb in the correct direction.... Thanks for any suggestions in advance.

Try this:

sudo apt-get install libxdamage-dev libxcomposite-dev

then run ./autogen.sh again

#736

Aurgh!!! This is so frustrating...I've installed and uninstalled this six million times and it still won't run. If I type "avant-windows-manager" in a terminal it comes up "command not found." What am I doing wrong?! I'm running compiz fusion on feisty...if that information helps at all...and I've tried both installation procedures (with the same results).

#737

typesour said: Aurgh!!! This is so frustrating...I've installed and uninstalled this six million times and it still won't run. If I type "avant-windows-manager" in a terminal it comes up "command not found." What am I doing wrong?! I'm running compiz fusion on feisty...if that information helps at all...and I've tried both installation procedures (with the same results).

the command is avant-window-navigator, not avant-windows-manager

#738

Hi,

If you get command not found try running a find thus:

sudo find / -name avant-windows-manager -print

This should provide you with the full path to the application if it finds it, (as well as a lot of errors, read carefully) then you have to type the whole line to get it to run, or update your PATH environment variable to take account of where the binary is.

#739

praxis22 said: Hi,

If you get command not found try running a find thus:

sudo find / -name avant-windows-manager -print

This should provide you with the full path to the application if it finds it, (as well as a lot of errors, read carefully) then you have to type the whole line to get it to run, or update your PATH environment variable to take account of where the binary is.

um it's avant-window-navigator, not avant-windows-manager, as I just said in my last post. There is nothing about avant-windows-manager anywhere.

#740

I don't have 3D acceleration on this computer... it seems that is a pre-requisite for compiz which is a pre-requisite for awn....

Is there an alternative solution for me?

I would like to play and create a different look than the default gnome install... I heard about Gnome-dock but when i searched it here in ubuntuforums this is the only thread that comes up besides the OSx look...

I'd like an OSx sort of look withe the launchers in the taskbar but more with a gnome look, hence awn seemed ideal, except it requires compiz which my computer doesn't handle...

Thank you in advance for your advice,

-- sophtpaw

#741

I have not tried this but it's supposed to run without needing a composite manager:

http://www.gnomefiles.org/app.php/simdock

I've been running Awn without major problems and I also just started playing with Cairo-Dock, It has features that Awn is moving towards (fish eye scrolling effect), so far it seems stable enough, although most of the config screens are in French.

Here's a screenshot of my desktop with Cario-Dock on top and Awn on bottom; [[IMG]http://img354.imageshack.us/img354/5049/cairodocknewph4.th.png[/IMG]](http://img354.imageshack.us/my.php?image=cairodocknewph4.png) Cairo-Dock download;

http://developer.berlios.de/projects/cairo-dock/

Evidently the devoloper of Cairo-Dock is working on Gnome-Dock (AKA Universal-Dock) as well, basically a shiteload of docks to choose from lol.

#742
#743

sophtpaw said: I don't have 3D acceleration on this computer... it seems that is a pre-requisite for compiz which is a pre-requisite for awn....

Is there an alternative solution for me?

I would like to play and create a different look than the default gnome install... I heard about Gnome-dock but when i searched it here in ubuntuforums this is the only thread that comes up besides the OSx look...

I'd like an OSx sort of look withe the launchers in the taskbar but more with a gnome look, hence awn seemed ideal, except it requires compiz which my computer doesn't handle...

Thank you in advance for your advice,

-- sophtpaw

You could use xcompmgr instead, but your graphics do have to support compositing even if not the 3d.

#744

How old are the bzr packages? I am asking because they just merged in lib-awn-effects and I think AWN-curve.

#745

tehkain said: How old are the bzr packages? I am asking because they just merged in lib-awn-effects and I think AWN-curve.

A week or two. I recently moved my devel box to gutsy and haven't had time to get a feisty builder set up yet.

#746

reacocard said: Try this:

sudo apt-get install libxdamage-dev libxcomposite-dev

then run ./autogen.sh again

THanks, tried this and it seems to have allowed me to do the make with a couple of errors, but the AWN is now running oddly enough by finishing the steps... I will test and see if it remains working. :)

#747

is there a way to edit the dock short of using beryl to get the clear bar instead of the black bar? tried loading beryl and it seems to not be a valid package any longer:

Reading package lists... Done

Building dependency tree... Done Package beryl is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package beryl has no installation candidate

Thanks

#748

superpenguin79 said: is there a way to edit the dock short of using beryl to get the clear bar instead of the black bar? tried loading beryl and it seems to not be a valid package any longer:

Thanks

Not sure what you mean by 'edit the dock', but AWN does need a compositor like beryl, compiz or xcompmgr to work properly (ie not have the black bar).

#749

I have installed AWN but do not have Beryl or Compiz. (I have a 733MHz processor and only 256 RAM.) Is there any way to get AWN running? By the way, I'm very new to linux.

#750

duhsutter said: I have installed AWN but do not have Beryl or Compiz. (I have a 733MHz processor and only 256 RAM.) Is there any way to get AWN running? By the way, I'm very new to linux.

try xcompmgr instead of compiz.

#751

Thanks.... I installed xcompmgr, then tried Compiz. I can install and access the config for compiz, but I can't actually use it. Maybe I'm doing it incorrectly, but I have desktop cube enabled, and I set 4 workspaces, but when I ALT+CTRL+Left or Right, I only switch between two desktops.

#752

reacocard said: Not sure what you mean by 'edit the dock', but AWN does need a compositor like beryl, compiz or xcompmgr to work properly (ie not have the black bar).

yep, attempting to get beryl up and running actually and when I attempt to run commands to get beryl it says its no longer valid basically:

Reading package lists... Done

Building dependency tree... Done Package beryl is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package beryl has no installation candidate

did the beryl installer change perhaps? I can't find ref. to a new package for it... either that or I am looking in the wrong spot. I will try xcompmgr and see what results.. was hoping to find beryl for the theme usage.. Thanks again

#753

duhsutter said: Thanks....

I installed xcompmgr, then tried Compiz. I can install and access the config for compiz, but I can't actually use it. Maybe I'm doing it incorrectly, but I have desktop cube enabled, and I set 4 workspaces, but when I ALT+CTRL+Left or Right, I only switch between two desktops.

Workspaces in gnome and cube sides in Compiz don't really work together. They're actually different things.

What you want to do is open CCSM (System - Preferences - CompizConfig Settings Manger), click on general options, desktop size, and increase horizontal virutal size to four, at which point you'll get a cube.

Also, a tip, in display settings, select 'fast' for a texture filter.

Now point and laugh at vista people who need 2 gigs of ram to run aero :)

#754

I changed the settings in CCSM, my problem is (possibly just and understanding issue) that I don't know how to see the cube. Also, my original issue is that I try to run AWN and nothing happens. The screen refreshes, but no app bar. Thanks for all your help.

P.S. I have OSX on my mac, I've been laughing at Vista users since before vista came out...

#755

superpenguin79 said: yep, attempting to get beryl up and running actually and when I attempt to run commands to get beryl it says its no longer valid basically:

did the beryl installer change perhaps? I can't find ref. to a new package for it... either that or I am looking in the wrong spot. I will try xcompmgr and see what results.. was hoping to find beryl for the theme usage.. Thanks again

Try using compiz instead, or find a third-party repo for beryl.

#756

duhsutter said: I changed the settings in CCSM, my problem is (possibly just and understanding issue) that I don't know how to see the cube. Also, my original issue is that I try to run AWN and nothing happens. The screen refreshes, but no app bar. Thanks for all your help.

P.S. I have OSX on my mac, I've been laughing at Vista users since before vista came out...

ctrl+alt+ left/right arrow, or left-click and hold.

#757

reacocard said: Try using compiz instead, or find a third-party repo for beryl.

Hi Reacocard, tried compiz this morning with no luck unfortunately. seems when I add exec compiz to the .xinitrc and .xsession files and reboot it crashes when I attempt to manually start xwindow. had to reboot into safe mode basically to disable and go back to gnome. any other window managers that may play well with AWN? Thanks

#758

superpenguin79 said: Hi Reacocard, tried compiz this morning with no luck unfortunately. seems when I add exec compiz to the .xinitrc and .xsession files and reboot it crashes when I attempt to manually start xwindow. had to reboot into safe mode basically to disable and go back to gnome. any other window managers that may play well with AWN? Thanks

I'm afraid not. I've heard it's possible to run it under xfwm and xcompmgr, but both have bugs.

#759

Quick announcement: AWN now has an IRC channel! Come visit us in #awn on irc.freenode.net.

#760

I have problem downloading AWN in UBUNTU festy using http://download.tuxfamily.org/syzygy42/ repo Synaptic says: http://download.tuxfamily.org/syzygy42/dists/feisty/Release: No MD5Sum entry in Release file /var/lib/apt/lists/download.tuxfamily.org_syzygy42_dists_feisty_Release

#761

demercel said: I have problem downloading AWN in UBUNTU festy using http://download.tuxfamily.org/syzygy42/ repo

Synaptic says: http://download.tuxfamily.org/syzygy42/dists/feisty/Release: No MD5Sum entry in Release file /var/lib/apt/lists/download.tuxfamily.org_syzygy42_dists_feisty_Release

Me too

#762

reacocard said: I'm afraid not. I've heard it's possible to run it under xfwm and xcompmgr, but both have bugs.

Thanks, in the mean time unfortunately I had to un-install and back out the window managers I installed due to some other issues and took out AWN as well... Running Gdesklets starterbar now though which seems stable for Gnome and might try AWN again later down the road on a different box when I get it up and running. Thanks again for all the help.

#763

demercel said: I have problem downloading AWN in UBUNTU festy using http://download.tuxfamily.org/syzygy42/ repo

Synaptic says: http://download.tuxfamily.org/syzygy42/dists/feisty/Release: No MD5Sum entry in Release file /var/lib/apt/lists/download.tuxfamily.org_syzygy42_dists_feisty_Release

x3

#764

demercel said: I have problem downloading AWN in UBUNTU festy using http://download.tuxfamily.org/syzygy42/ repo

Synaptic says: http://download.tuxfamily.org/syzygy42/dists/feisty/Release: No MD5Sum entry in Release file /var/lib/apt/lists/download.tuxfamily.org_syzygy42_dists_feisty_Release

Same issue here with gutsy repo:

Konnte http://download.tuxfamily.org/syzygy42/dists/gutsy/Release nicht holen  No Hash entry in Release file /var/lib/apt/lists/download.tuxfamily.org_syzygy42_dists_gutsy_Release
Paketlisten werden gelesen... Fertig
E: Einige Indexdateien konnten nicht heruntergeladen werden, sie wurden ignoriert oder alte an ihrer Stelle benutzt.

I downloaded and added the key before:


wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg 
sudo apt-key add 8434D43A.gpg
rm 8434D43A.gpg
sudo apt-get update

Thanks for any help!

#765

in the mean time, i just manually cmpiled from bzr ..

#766

Sorry guys, last update borked the repo, I'll try to get it fixed tonight.

#767

You should add AWN Curves patch :) Its very nice

#768

fizz said: You should add AWN Curves patch :) Its very nice

It is nice, but it is also not available as a patch, only a branch, so a package for it means I would then have to maintain and support two versions of AWN, which I am not willing to do. Curves will get merged into trunk eventually, at which point it will of course end up in my packages as well.

#769

Repo is operational again. Note to self: never try to install a deb for feisty under gutsy.

#770

That's odd, for some reason I'm stuck with the 78-1 version, while your site says you have 94-1... and your repository is checked and everything.

#771

Vadi said: That's odd, for some reason I'm stuck with the 78-1 version, while your site says you have 94-1... and your repository is checked and everything.

94-1 (and now 101-1) is currently only available on gutsy i386, all others are still on the old version. Once PPA comes out of beta I will be using that to do rebuilds for the different archs and versions which should help with update frequency on archs other than the one I use. :D

#772

Vadi said: That's odd, for some reason I'm stuck with the 78-1 version, while your site says you have 94-1... and your repository is checked and everything.

try

sudo apt-get update

then check again. EDIT: I've tried that, no updates, also at rev 78 EDIT-2: ah, my post wasz very useful :-|

#773

I installed it but its no where to be found how do u use it. please help me

#774

Applications - Accessories, it'll be near the top. Click on it and it will start.

#775

Dwiman89 said: I installed it but its no where to be found how do u use it. please help me

Click your applications menu, then click on accessories, and the Avant Window Navigator.

#776

I'm using gutsy and have the repository from the first post, I noticed there was an update for avant today but when I try to download and install it I'm getting the following errors.`` E: /var/cache/apt/archives/awn-core-applets-bzr_0.1.0-bzr65-1_i386.deb: trying to overwrite /usr/lib/awn/applets/trash.desktop', which is also in package avant-window-navigator-bzr

W: Failed to fetch http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/avant-window-navigator-bzr_0.1.2-bzr106-1_i386.deb Size mismatch

W: Failed to fetch http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/libawn-bzr_0.1.2-bzr106-1_i386.deb Hash Sum mismatch

#777

hallo i am now here :lolflag:

i have one problem with applets trash

i use awn from : https://code.launchpad.net/~awn-extras/awn-extras/trunk

this is error for applets trash with version 67

In file included from applet.c:32:
trashapplet.h:28:32: error: libawn/awn-effects.h: No such file or directory
In file included from applet.c:32:
trashapplet.h:90: error: expected specifier-qualifier-list before 'AwnEffects'

and

applet.c:78: warning: initialization from incompatible pointer type
make[3]: *** [trash_la-applet.lo] Error 1
make[3]: Leaving directory `/home/max/trunk/awn-applets/awn-core-applets/src/trash'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/max/trunk/awn-applets/awn-core-applets/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/max/trunk/awn-applets/awn-core-applets'
make: *** [all] Error 2

thank yuo for your reply risposta):P

#778

unabatedshagie said: I'm using gutsy and have the repository from the first post, I noticed there was an update for avant today but when I try to download and install it I'm getting the following errors.```

E: /var/cache/apt/archives/awn-core-applets-bzr_0.1.0-bzr65-1_i386.deb: trying to overwrite `/usr/lib/awn/applets/trash.desktop', which is also in package avant-window-navigator-bzr

W: Failed to fetch http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/avant-window-navigator-bzr_0.1.2-bzr106-1_i386.deb Size mismatch

W: Failed to fetch http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/libawn-bzr_0.1.2-bzr106-1_i386.deb Hash Sum mismatch


This should be fixed now, update your package lists and try again.

> **maxfact said:**
> hallo i am now here :lolflag:

i have one problem with applets trash

i use awn from :
[https://code.launchpad.net/~awn-extras/awn-extras/trunk](https://code.launchpad.net/~awn-extras/awn-extras/trunk)

this is error for applets trash with version 67

In file included from applet.c:32: trashapplet.h:28:32: error: libawn/awn-effects.h: No such file or directory In file included from applet.c:32: trashapplet.h:90: error: expected specifier-qualifier-list before 'AwnEffects'

and

applet.c:78: warning: initialization from incompatible pointer type make[3]: * [trash_la-applet.lo] Error 1 make[3]: Leaving directory /home/max/trunk/awn-applets/awn-core-applets/src/trash' make[2]: * [all-recursive] Error 1 make[2]: Leaving directory /home/max/trunk/awn-applets/awn-core-applets/src' make[1]: * [all-recursive] Error 1 make[1]: Leaving directory `/home/max/trunk/awn-applets/awn-core-applets' make: * [all] Error 2


thank yuo for your reply risposta):P

You need a newer version of AWN to build that version of awn-core-applets.
#779

Hello. I am a new user of AWN, and very happy with it too - I especially like the way it replaces the "active windows" bar. I would eventually like to get rid of this bar completely- so my question is, how do I stick the ubuntu main menu, notification area, and hard disks on the AWN bar?

I've seen vids of people using the "stacks" feature, and I downloaded the awn-extras package, but I have no idea how to install it. I'd appreciate some help on installing this and, of course, the curves feature... Info on the net seems seriously lacking in these areas!

#780

@reacocard

You need a newer version of AWN to build that version of awn-core-applets.

i dont understand i do at upgrade of awn plugins newer version of AWN where try?? I install AWN from repo and after upgrade plugins from https://code.launchpad.net/~awn-extras/awn-extras/trunk :confused:

my english is very very :frown: excuse me :(

#781

hoboken said: Hello. I am a new user of AWN, and very happy with it too - I especially like the way it replaces the "active windows" bar. I would eventually like to get rid of this bar completely- so my question is, how do I stick the ubuntu main menu, notification area, and hard disks on the AWN bar?

I've seen vids of people using the "stacks" feature, and I downloaded the awn-extras package, but I have no idea how to install it. I'd appreciate some help on installing this and, of course, the curves feature... Info on the net seems seriously lacking in these areas!

Install the awn-core-applets-bzr package from the repo. This includes the main menu, systray, stacks and several other appplets.

maxfact said: @reacocard

i dont understand i do at upgrade of awn plugins newer version of AWN where try?? I install AWN from repo and after upgrade plugins from https://code.launchpad.net/~awn-extras/awn-extras/trunk :confused:

my english is very very :frown: excuse me :(

Oh, sorry I thought you were building AWN from source too. You'll need to install libawn-bzr-dev from the repo to be able to build plugins. Note that there are applets in the repo too as awn-core-applets-bzr.

#782

Nice - I have some questions. Can I change the main menu element icon? How can I get "places" and "system" functionality? How can I add my own folders to the dock to explore them using stacks?

#783

I hate the "requires composter" part. Because compiz is down for me (bars don't appear on top of windows including the file and all that. Don't know why) and I can't use avant now.

#784

hoboken said: Nice - I have some questions. Can I change the main menu element icon? How can I get "places" and "system" functionality? How can I add my own folders to the dock to explore them using stacks?

There is currently no way that I am aware of to get places and system. You can set a stack to a folder by right-clicking it and selecting properties, then choosing the folder you wish to have in that stack.

nikoPSK said: I hate the "requires composter" part. Because compiz is down for me (bars don't appear on top of windows including the file and all that. Don't know why) and I can't use avant now.

It is a slight downside, perhaps xcompmgr or xfwm would work better for you than compiz.

#785

nikoPSK, I had the exact same problem with compiz - I think it's down to compatibility issues with compiz and its window decorator that arise when you install it from the repos. You have 2 options. 1- Install from source, as in, download the packages directly then install them the classic way (which didn't work for me, but that could be down to my own lack of knowledge), or

2-Install beryl through the repos, then use heliodor instead of emerald to decorate the windows. Beryl is not as slick as compiz, but heliodor does a fine job. sudo apt-get install heliodor worked well enough for me. Good luck.

As for AWN, It is GREAT right now, but still feels like an incomplete product, which it is, obviously... But just a suggestion for the devs - PLEASE don't listen to the people who whine and say "bleh, it's just a copy of the OSX dock, can't linux devs come up with anything original?" Honestly, this is tripe. The OSX dock is a fantastic utility and provides features which SHOULD be copied, and indeed will continue to be copied until AWN has the same or superior functionality. Just because apple came up with it first doesn't mean we shouldn't copy good software. It's this kind of silly spite and cockiness which gets in the way of a better linux experience for all users.

#786

When I tried to changed the preferences in AWN I am getting this error in the terminal.


Failed to execute child process "awn-manager" (No such file or directory)

Sorry when I upgraded this must have been a new package all is fine now.

#787

I have a weird problem. Awn (bzr .deb's) runs fine on my fglrx/compiz/gnome/gutsy, but several applets are invisible. I cannot see clock, notification area, blingswitcher. showdesktop and volumecontrol. They appear in the list in the preference window, but are not shown on the bar when I add them to the "Active Applets" window. Cairo clock is working fine. Anybody knows anything about this? Can I give more relevant information?

#788

Wise Ferret said: I have a weird problem. Awn (bzr .deb's) runs fine on my fglrx/compiz/gnome/gutsy, but several applets are invisible. I cannot see clock, notification area, blingswitcher. showdesktop and volumecontrol. They appear in the list in the preference window, but are not shown on the bar when I add them to the "Active Applets" window.

Cairo clock is working fine. Anybody knows anything about this? Can I give more relevant information?

python applets are currently broken. I know what the problem is, school just isn't leaving me enough time to fix it. Hopefully I'll have time to repair it this weekend.

#789

I gotz a question about stacks.. I see where I can add a stack, but it defaults to my ~/ directory. Is it possible to create a custom stack? Everytime i right click on a stack and goto properties, the stack dissappears.

Thanks in advance.. Im running self built from bzr, i build every morning with the following script

****EDIT: Updated today and now i can change stack location...

#790

Back up. Some plug-ins can't be located though...

#791

When I go through the instructions, everything goes good except for the last command. "sudo apt-get update"

I get this error:


Fetched 6963kB in 39s (175kB/s)                                                                   
Failed to fetch http://archive.canonical.com/ubuntu/dists/gutsy/commercial/binary-i386/Packages.gz  404 Not Found
Failed to fetch http://archive.canonical.com/ubuntu/dists/gutsy/commercial/source/Sources.gz  404 Not Found
E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

#792

Do you have Synaptic or Update manager open or something? Another process is managing software

#793

How do I get it to be all see through and glass like? Is there a physics engine I can download for it like the one for kiba?:KS

#794

It's not working properly and I want to reinstall awn. How do I uninstall it?

It's not in synaptic anymore. I can't find the folder that I installed it into. Please help..

#795

Nessa said: It's not working properly and I want to reinstall awn. How do I uninstall it?

It's not in synaptic anymore. I can't find the folder that I installed it into. Please help..

do this:

which avant-window-navigator

If that gives /usr/bin/avant-window-navigator then it's still in synaptic somewhere and you'll have to remove it that way. If it gives /usr/local/bin/avant-window-navigator, then you installed from source. In this case, follow the install from source part of the guide up through ./autogen.sh. Then do

sudo make uninstall

and AWN should be gone. Then you can continue the compiling with make or use the repo.

#796

Thank you so much! It uninstalled but Avant Preferences is still in system>preferences and it opens up. Does that mean I did something wrong?

There's an avant-window-manager folder in my home folder. Should I delete that?

#797

Nessa said: Thank you so much! It uninstalled but Avant Preferences is still in system>preferences and it opens up. Does that mean I did something wrong?

There's an avant-window-manager folder in my home folder. Should I delete that?

ah, you had an older source version installed so it missed a couple things in make uninstall. This should clear it up:

sudo rm /usr/local/bin/avant*
sudo rm /usr/share/applications/avant*

as for the folder in /home, it doesn't matter whether you delete it or not.

#798

I have version: 0.1.2-bzr78-1 is it possible to get newer versions like I've read on here: http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=957&page=1&isLive=true

Is the repo from the first post updated ? So should I compile from source then?, first uninstalling the repo version. I want to do this because im having problems with awn manager.

#799

ST.x said: I have version: 0.1.2-bzr78-1 is it possible to get newer versions like I've read on here: http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=957&page=1&isLive=true

Is the repo from the first post updated ? So should I compile from source then?, first uninstalling the repo version. I want to do this because im having problems with awn manager.

newer versions are currently only available for gutsy i386, I am planning to move to launchpad PPA for other archs eventually, but in the meantime if you want newer stuff you will have to install from source (be sure to remove the repo version first if you do!).

#800

reacocard said: ah, you had an older source version installed so it missed a couple things in make uninstall. This should clear it up:

sudo rm /usr/local/bin/avant*
sudo rm /usr/share/applications/avant*

as for the folder in /home, it doesn't matter whether you delete it or not.

The avant preferences is still in my system preferences but it doesn't open anymore. I guess that means it's uninstalled. How do I remove it from preferences?

#801

Hello,

I am running Kubuntu Gutsy + Compiz/fussion and I acquired AWN from this repository: deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

I installed the following packages: avant-window-navigator-bzr (ver 0.1.2-bzr112-1), awn-core-applets-bzr (ver 0.1.2-bzr71-1), libawn-bzr (ver 0.1.2-bzr112-1), libawn-bzr-dev

Now... AWN is working properly, but the "preferences" and awn-manager are not. If a click on the "preferences" on the AWN or I start it form Kmenu->settings->awn manager ABSOLUTELY NOTHING HAPPENS. From the terminal I get: user@My1:~$ awn-manager user@My1:~$

There was somewhere a post saying that this is because on of the launchers does not have a icon (or something assigned), but in the /home/user/.config/awn/ I am missing a launchers folder altogether.

Please help me get the preferences running or at least how to change the preferences without using the awn-manager.

#802

Nessa said: The avant preferences is still in my system preferences but it doesn't open anymore. I guess that means it's uninstalled. How do I remove it from preferences?

like this :

sudo rm /usr/share/applications/awn-manager.desktop
#803

Ok, but even if I remove it, how can I change the preferences (or can I preferences from the context menu on the AWN)?

#804

It looks great even under 7.10:KS

#805

It doesn't work on Gutsy/Amd64. It keeps crahsing with the following error message :

Traceback (most recent call last): File "/usr/local/bin/awn-manager", line 199, in <module> awnmanager = AwnManager() File "/usr/local/bin/awn-manager", line 100, in __init__ self.prefManager = awnPreferences(self.wTree) File "/usr/local/share/avant-window-navigator/awn-manager/awnPreferences.py", line 152, in __init__ self.setup_font(TITLE_FONT_FACE, self.wTree.get_widget("selectfontface")) File "/usr/local/share/avant-window-navigator/awn-manager/awnPreferences.py", line 279, in setup_font font_btn.set_font_name(self.client.get_string(key)) TypeError: GtkFontButton.set_font_name() argument 1 must be string, not None

#806

Nessa said: The avant preferences is still in my system preferences but it doesn't open anymore. I guess that means it's uninstalled. How do I remove it from preferences?

ah sorry, typo in my command, try this one:

sudo rm /usr/local/share/applications/avant*
#807

deepdraft said: Hello,

I am running Kubuntu Gutsy + Compiz/fussion and I acquired AWN from this repository: deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

I installed the following packages: avant-window-navigator-bzr (ver 0.1.2-bzr112-1), awn-core-applets-bzr (ver 0.1.2-bzr71-1), libawn-bzr (ver 0.1.2-bzr112-1), libawn-bzr-dev

Now... AWN is working properly, but the "preferences" and awn-manager are not. If a click on the "preferences" on the AWN or I start it form Kmenu->settings->awn manager ABSOLUTELY NOTHING HAPPENS. From the terminal I get: user@My1:~$ awn-manager user@My1:~$

There was somewhere a post saying that this is because on of the launchers does not have a icon (or something assigned), but in the /home/user/.config/awn/ I am missing a launchers folder altogether.

Please help me get the preferences running or at least how to change the preferences without using the awn-manager.

very odd, I don't know what would cause that. In the meantime, all the settings are accessible, just press Alt+f2, enter 'gconf-editor', and then navigate to apps->avant-window-navigator, all the settings are in there.

#808

revenant_org said: It doesn't work on Gutsy/Amd64. It keeps crahsing with the following error message :

Traceback (most recent call last): File "/usr/local/bin/awn-manager", line 199, in <module> awnmanager = AwnManager() File "/usr/local/bin/awn-manager", line 100, in __init__ self.prefManager = awnPreferences(self.wTree) File "/usr/local/share/avant-window-navigator/awn-manager/awnPreferences.py", line 152, in __init__ self.setup_font(TITLE_FONT_FACE, self.wTree.get_widget("selectfontface")) File "/usr/local/share/avant-window-navigator/awn-manager/awnPreferences.py", line 279, in setup_font font_btn.set_font_name(self.client.get_string(key)) TypeError: GtkFontButton.set_font_name() argument 1 must be string, not None

did you install from repo or source?

#809

I have a question:

How do I make it like leopard all glass and reflective?

#810

nikoPSK said: I have a question:

How do I make it like leopard all glass and reflective?

In awn-manager, set general->appearance->look to '3d look' then fiddle with the colors in the 'glass engine' tab until you like it.

Or you can use my current theme, it's attached. Just drag it onto the theme tab in awn-manager to install it.

#811

thanks. But compiz is down (AGAIN!!!) so I can't use awn... Read my thread if you want to...:(

#812

reacocard said: Hello,

I am running Kubuntu Gutsy + Compiz/fussion and I acquired AWN from this repository: deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

I installed the following packages: avant-window-navigator-bzr (ver 0.1.2-bzr112-1), awn-core-applets-bzr (ver 0.1.2-bzr71-1), libawn-bzr (ver 0.1.2-bzr112-1), libawn-bzr-dev

Now... AWN is working properly, but the "preferences" and awn-manager are not. If a click on the "preferences" on the AWN or I start it form Kmenu->settings->awn manager ABSOLUTELY NOTHING HAPPENS. From the terminal I get: user@My1:~$ awn-manager user@My1:~$

There was somewhere a post saying that this is because on of the launchers does not have a icon (or something assigned), but in the /home/user/.config/awn/ I am missing a launchers folder altogether.

Please help me get the preferences running or at least how to change the preferences without using the awn-manager.very odd, I don't know what would cause that. In the meantime, all the settings are accessible, just press Alt+f2, enter 'gconf-editor', and then navigate to apps->avant-window-navigator, all the settings are in there.

I am running Kubuntu 7.10 with KDE 3.5.7 and I have no gnome. So could this be a KDE issue...? Anyway I got the settings for AWN form gconf-editor. Thanks ^_^

#813

You can run awn in KDE if you have all of the gnome libraries installed. I wouldn't recommend installing the whole ubuntu-desktop package, but you may have to install gnome on your Kubuntu to get it working. It's hard for most to differentiate as, often people have both desktop environments installed and don't realize when a program is accessing the other DE's libraries.

#814

reacocard said: did you install from repo or source?

Both produce the same error message . First, I tried the repository and once it failed I tried compiling the source.

#815

Followed the instructions to compile from source though I have no additional applets.

#816

go to synaptic and search "avant" or "awn" and you will see a package of applets :)

#817

does anyone have a step by step tutorial on how to turn this...

[IMG]http://img.photobucket.com/albums/v669/matts_skinz/Screenshot-4.png[/IMG]

into this..

http://bp3.blogger.com/_Xie1ydrCav4/RujzdfVU8ZI/AAAAAAAAAIU/9sRKAIwxytE/s1600-h/withreflection2089.png

I've just installed AWN and at the mo it's just a useless grey box that won't auto hide.

#818

unfortunately no, actually go to their wetpaint site then code and look for it. I saw it there... You're using ubuntu studio right? what skin is that... :P

#819

nikoPSK said: unfortunately no, actually go to their wetpaint site then code and look for it. I saw it there... You're using ubuntu studio right? what skin is that... :P

It's just the normal one that comes with it.

#820

Cool, What other features does ubu studio have? Did you find the dock style?:)

#821

nikoPSK said: Cool, What other features does ubu studio have? Did you find the dock style?:)

the main differences is that you can choose to install all the best sound, video, and imaging software when you install the OS.

The spash screen is different, theres a different start up sound.

Oh, and I noticed that it ran ALOT better on my laptop. But that may just be me.

#822

I follow instruction from the first page and what I got was:

vandetta@vandetta-linux:~$ wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg --07:49:11-- http://download.tuxfamily.org/syzygy42/8434D43A.gpg => 8434D43A.gpg' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [application/octet-stream] 100%[====================================>] 1,682 --.--K/s 07:49:11 (407.99 KB/s) - 8434D43A.gpg' saved [1682/1682] vandetta@vandetta-linux:~$ sudo apt-key add 8434D43A.gpg Password: OK vandetta@vandetta-linux:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package avant-window-navigator-bzr vandetta@vandetta-linux:~$

What should I do? Sorry I'm a newbie :(

#823

nikoPSK said: go to synaptic and search "avant" or "awn" and you will see a package of applets :)

I tried that (I'm trying to get it working in Gutsy) and it installed. But the applets were buggy in Gutsy so I tried compiling from source instead. May just be a result of Gutsy.

#824

Depressed Man said: Followed the instructions to compile from source though I have no additional applets.

the source install guide doesn't have the applets yet, but you can compile them from this bzr repo: https://code.launchpad.net/~awn-extras/awn-extras/trunk

#825

vandetta said: I follow instruction from the first page and what I got was:

vandetta@vandetta-linux:~$ wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg --07:49:11-- http://download.tuxfamily.org/syzygy42/8434D43A.gpg => 8434D43A.gpg' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [application/octet-stream] 100%[====================================>] 1,682 --.--K/s 07:49:11 (407.99 KB/s) - 8434D43A.gpg' saved [1682/1682] vandetta@vandetta-linux:~$ sudo apt-key add 8434D43A.gpg Password: OK vandetta@vandetta-linux:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package avant-window-navigator-bzr vandetta@vandetta-linux:~$

What should I do? Sorry I'm a newbie :(

looks like you either forgot to add the deb lines to /etc/apt/sources.list, or you forgot to sudo apt-get update after you added them. Double check to make sure you added the correct lines and then apt-get update and try again.

#826

Yes, you're right! I added the deb line but forgot to update. Now my AWN works! Thanks!

#827

So does anyone know how to get it looking like the 3d glassy one shown on thier site., Like leopard.

#828

You can download pre configured themes and such. Just go to prefrences and mess around.:)

#829

When I go to perferances I can't see anything about themes. Also is it normal for there to be no icons on the bar?

I can't right click the bar either.

also which one should I download from they're site for the OSX leopard style bar and the icons? They're site is not laid out well at all

#830

Can you make it show up above the panel?

#831

And, is there anyway to open AWN Manager in terminal, mine won't open from System > peferances > AWN Manager

#832

The applets clock and gmail checker are iconless in the configuration page, I add them but are not shown in the bar. An ideas?

#833

Ludford said: So does anyone know how to get it looking like the 3d glassy one shown on thier site., Like leopard.

http://ubuntuforums.org/showpost.php?p=3446824&postcount=810

Ludford said: When I go to perferances I can't see anything about themes. Also is it normal for there to be no icons on the bar?

I can't right click the bar either.

also which one should I download from they're site for the OSX leopard style bar and the icons? They're site is not laid out well at all

Who's site? And what version of AWN?

Nessa said: Can you make it show up above the panel?

AWN is intended to replace your bottom panel, so no, that is not currently possible.

Ludford said: And, is there anyway to open AWN Manager in terminal, mine won't open from System > peferances > AWN Manager

should just be 'awn-manager'

lolcese said: The applets clock and gmail checker are iconless in the configuration page, I add them but are not shown in the bar. An ideas?

clock needs cairo-clock to be installed to work, gmail checker is a python applet, which are currently broken in my repo, I have not yet had time to fix them.

#834

It turns out I had an old version of AWN that was conflicting, but I Sudo make uninstalled it, purged, redownloaded a different one now it works. Now I'm just trying to figure out how to apply a plugin

#835

Thanks reacocard, but I install cairo-clock and is the same, I need to reinstall awn?

#836

this thing constantly crashes for me

is there a debug option when I restart it in a terminal to capture what the crash message is?

#837

on gutsy i use this one working perfectly with all effect included

deb http://download.tuxfamily.org/syzygy42 gutsy all

:guitar:have fun

#838

ykpaiha said: on gutsy i use this one working perfectly

with all effect included

deb http://download.tuxfamily.org/syzygy42 gutsy all

:guitar:have fun

that's what I use, crash crash crash

#839

Please update the 64 bit version. Is rather old, while the 32 bit has been updated today.

#840

ilarrain said: Please update the 64 bit version. Is rather old, while the 32 bit has been updated today.

I don't have a 64-bit computer to do that on, and my 64-bit maintainer has apparently stopped building them. I'll see if I can get in touch with him and find out why, because it really does need to be updated.

#841

reacocard said: I don't have a 64-bit computer to do that one, and my 64-bit maintainer has apparently stopped building them. I'll see if I can get in touch with him and find out why, because it really does need to be updated.

If the 64-bit one was updated, I'd too be a happy Ubuntu kool-aid drinker!

#842

I tried again... AWN worked with Compiz-Fusion! Happy me!

#843

Yes, all docks (I think require windows composters.:)

#844

Only 2 things are the problem for me is applets not showing up (which was addressed in a earlier post) and Avant not showing up on all desktops.

#845

For the desktops thing try fiddling around the preferences.:KS

#846

Poene said: If the 64-bit one was updated, I'd too be a happy Ubuntu kool-aid drinker!

The you're now a happy Ubuntu kool-aid drinker! tgm4883 came through with a new set of packages for gutsy 64bit which should now be in the repo. Enjoy!

#847

reacocard said: The you're now a happy Ubuntu kool-aid drinker! tgm4883 came through with a new set of packages for gutsy 64bit which should now be in the repo. Enjoy!

Thanks!!

#848

thnx

#849

ilarrain said: Thanks!!

boob11 said: thnx

thank tgm4883, not me. He's done an awesome job with resolving the problems with the 64bit builds, and hopes to keep updates more regular from now on, so expect more updates for gutsy 64bit.

Now before anyone asks, no, there are no plans to keep updating the Feisty versions, but the packages that exist will remain up indefinitely, and if anyone backports the gutsy debs to feisty I will certainly host them in the repo.

Also, AWN 0.2 is due out this weekend, so once its out I will try to get the guide updated for that ASAP, as well as finally adding a stable release to the repo and fixing the packaging so that python applets actually work.

#850

Is there a way to shift the dock left or right? I do not care for it in the middle of my desktop seeing how it gets split. (Dual Monitors)

Thanks in advance. :)

#851

infamousdd said: Is there a way to shift the dock left or right? I do not care for it in the middle of my desktop seeing how it gets split. (Dual Monitors)

Thanks in advance. :)Not AFAIK, strange thing is I'm running dual monitors and awn is positioned in the middle of my left hand monitor. It's always done this.

#852

infamousdd said: Is there a way to shift the dock left or right? I do not care for it in the middle of my desktop seeing how it gets split. (Dual Monitors)

Thanks in advance. :)

yes, you can. Press Alt+F2, enter 'gconf-editor', and navigate to apps->avant-window->navigator. Enable 'force_monitor' and set monitor_height and monitor_width to the size of your left monitor. Restart AWN and it should be properly centered on the left monitor.

#853

Is dual screens good though? I have a screen or to lying around. Shoul I give it a try? Do I need some special screen conector or something?:KS

#854

How can I uninstall awn? I don't remember how I installed it in the first place, and I don't have the source folder. I guess I'll have to manually delete it but I don't know how. I want to uninstall it to install a newer version because the one I have right now doesen't work. I'll apreciate any help.

#855

santiump said: How can I uninstall awn? I don't remember how I installed it in the first place, and I don't have the source folder. I guess I'll have to manually delete it but I don't know how.

I want to uninstall it to install a newer version because the one I have right now doesen't work. I'll apreciate any help.

Ok, this long set of commands *should* do it:

sudo rm /usr/bin/awn*
sudo rm -f /usr/bin/avant*
sudo rm -rf /usr/lib/awn
sudo rm -f /usr/share/locale/*/LC_MESSAGES/avant-window-navigator.mo
sudo rm -f /usr/share/applications/avant*
sudo rm -f /usr/share/applications/awn*
sudo rm -rf /usr/share/avant-window-navigator
sudo rm -f /usr/lib/libawn*
sudo rm -rf /usr/include/libawn
sudo rm -f /usr/lib/libawn*
sudo rm -f /usr/lib/pkgconfig/awn.pc
sudo rm -rf /usr/share/awn-core-applets
sudo rm /usr/local/bin/awn*
sudo rm -f /usr/local/bin/avant*
sudo rm -rf /usr/local/lib/awn
sudo rm -f /usr/local/share/locale/*/LC_MESSAGES/avant-window-navigator.mo
sudo rm -f /usr/local/share/applications/avant*
sudo rm -f /usr/local/share/applications/awn*
sudo rm -rf /usr/local/share/avant-window-navigator
sudo rm -f /usr/local/lib/libawn*
sudo rm -rf /usr/local/include/libawn
sudo rm -f /usr/local/lib/libawn*
sudo rm -f /usr/local/lib/pkgconfig/awn.pc
sudo rm -rf /usr/local/share/awn-core-applets
#856

so anyone have any idea why mine crashes constantly?

It's random, every 5 min to 24 hours it will crash

using gusty & the repo recommended on the first post of this howto

~$ avant-window-navigator Screen is composited. APPLET : /usr/lib/awn/applets/main-menu.desktop APPLET : /usr/lib/awn/applets/taskman.desktop APPLET : /usr/lib/awn/applets/trash.desktop

(awn-applet-activation:6699): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:6699): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:24751): GLib-GObject-CRITICAL **: g_type_instance_get_private: assertion `instance != NULL && instance->g_class != NULL' failed

(awn-applet-activation:24753): GLib-GObject-CRITICAL **: g_type_instance_get_private: assertion `instance != NULL && instance->g_class != NULL' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): Gtk-CRITICAL **: gtk_widget_queue_draw: assertion `GTK_IS_WIDGET (widget)' failed

(avant-window-navigator:6697): GLib-GObject-WARNING **: instance of invalid non-instantiatable type `<invalid>'

(avant-window-navigator:6697): GLib-GObject-WARNING : invalid uninstantiatable type <invalid>' in cast to GtkWidget' Segmentation fault (core dumped) megadeth@megadeth-laptop:~$ (awn-applet-activation:6701): GLib-GObject-WARNING : instance with invalid (NULL) class pointer

(awn-applet-activation:6701): GLib-GObject-CRITICAL **: g_signal_handlers_destroy: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed

(awn-applet-activation:6701): GLib-GObject-WARNING **: instance with invalid (NULL) class pointer

(awn-applet-activation:6701): GLib-GObject-CRITICAL **: g_signal_handlers_destroy: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed

(awn-applet-activation:6701): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

(awn-applet-activation:6701): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

(awn-applet-activation:6701): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

(awn-applet-activation:6701): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

#857

reacocard said: Ok, this long set of commands *should* do it:

Long set of commands

Thanks a lot! Now I'm going to try and get it working with a newer version. I'll keep the source folder this time.

#858

I just can't seem to get Avant working. I installed using the instructions, however, when i start avant-manager, i get this error: > /usr/share/avant-window-navigator/awn-manager/awnPreferences.py:182: DeprecationWarning: raising a string exception is deprecated raise "\nKey: "+key+" isn't set.\nRestarting AWN usually solves this issue\n" Traceback (most recent call last): File "/usr/bin/awn-manager", line 199, in awnmanager = AwnManager() File "/usr/bin/awn-manager", line 100, in __init__ self.prefManager = awnPreferences(self.wTree) File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 162, in __init__ self.setup_color(TITLE_TEXT_COLOR, self.wTree.get_widget("textcolor")) File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 182, in setup_color raise "\nKey: "+key+" isn't set.\nRestarting AWN usually solves this issue\n" Key: /apps/avant-window-navigator/title/text_color isn't set. Restarting AWN usually solves this issue Of course i already tried restarting AWN, but it keeps giving me this error.

#859

martijntje said: I just can't seem to get Avant working. I installed using the instructions, however, when i start avant-manager, i get this error: Of course i already tried restarting AWN, but it keeps giving me this error.

Did you install from source or the repo? What version of Ubuntu are you using?

#860

reacocard said: Did you install from source or the repo? What version of Ubuntu are you using?

Using Gutsy, installed avant through the repos.

#861

martijntje said: Using Gutsy, installed avant through the repos.

hm. how did you restart awn? just killing it, or right-click->close? if not the second one, try that. If all else fails, you can always try setting the key it wants manually in gconf-editor.

#862

reacocard said: hm. how did you restart awn? just killing it, or right-click->close? if not the second one, try that. If all else fails, you can always try setting the key it wants manually in gconf-editor.

No need to kill it. It simply exits immediately after starting it, no window even pops up. EDIT: Fixed. Started avant-window-navigator, after which avant-manager works.

#863

Okay, I have AWN installed via this guide in Gutsy, how do I go about updating it to 0.2?

Edit: I tried using the Reload button in Synaptic to see if there was an update available and I got this error:

http://download.tuxfamily.org/syzygy42/dists/gutsy/Release: Unable to find expected entry  avant-window-navigato/source/Sources in Meta-index file (malformed Release file?)

Edit: It seems the tuxfamily repo has updated and 0.2 is in there now, yay.

#864

Why is it soo sluggish! especially when you close a window & the dock shrinks in size!

#865

is there a bzr checkout for awn-themes?

#866

if i remove awn through the repos to compile .2 on my own, will I lose all my old launchers?

#867

foundation said: Okay, I have AWN installed via this guide in Gutsy, how do I go about updating it to 0.2?

Edit: I tried using the Reload button in Synaptic to see if there was an update available and I got this error:

http://download.tuxfamily.org/syzygy42/dists/gutsy/Release: Unable to find expected entry  avant-window-navigato/source/Sources in Meta-index file (malformed Release file?)

Edit: It seems the tuxfamily repo has updated and 0.2 is in there now, yay.

the lastest -bzr packages in my repo are the same as 0.2, just said a different way. I'll get true stable packages up eventually.

kris2pe said: Why is it soo sluggish! especially when you close a window & the dock shrinks in size!

This is an issue with certain graphics cards, not much I can do to help.

fizz said: is there a bzr checkout for awn-themes?

It appears not.

#868

SSB said: if i remove awn through the repos to compile .2 on my own, will I lose all my old launchers?

are you usin bzr? if so you already have a newer version.. see if you have 3d turn with spotlight as a icon behavior..

#869

Now I may just be going about this entirely wrong, but I don't see an option for icon behavior in the preferences.

#870

sorry didn't read all 87 pages of posts so if it has been covered sorry. first i can't seem to figure out how to move the dock, i want it on the side of my desktop instead of the bottom, but i can't seem to find a setting for it, and it doesn't want to drag over there. second there is a white line sticking up from the dock as well. is this a bug, or is there some way to get rid of it?

thanks!

#871

SSB said: Now I may just be going about this entirely wrong, but I don't see an option for icon behavior in the preferences.

Should be in awn-manager on the first page if you have the latest (0.2.0-bzr129-1).

linedpaper said: sorry didn't read all 87 pages of posts so if it has been covered sorry. first i can't seem to figure out how to move the dock, i want it on the side of my desktop instead of the bottom, but i can't seem to find a setting for it, and it doesn't want to drag over there. second there is a white line sticking up from the dock as well. is this a bug, or is there some way to get rid of it?

thanks!

You cannot reposition AWN yet, but its a planned feature. As for the white line, it sounds like you have an applet trying to load but isn't being able to, open awn-manager and remove the offending applet to get rid of the line.

SSB said: if i remove awn through the repos to compile .2 on my own, will I lose all my old launchers?

no, settings are preserved.

#872

reacocard said: Should be in awn-manager on the first page if you have the latest (0.2.0-bzr129-1).

You cannot reposition AWN yet, but its a planned feature. As for the white line, it sounds like you have an applet trying to load but isn't being able to, open awn-manager and remove the offending applet to get rid of the line.

no, settings are preserved.

thanks for the info!

#873

I still can't get awn to work. I compiled from source following this guide but when I try to start t from the terminal I get this error:


LOADED : /home/santiago/.config/awn/launchers/awn_launcher.desktop
APPLET : /usr/local/lib/awn/applets/taskman.desktop
(avant-window-navigator:13782): Wnck-WARNING **: Unhandled action type (nil)

The last line repeats a lot of times. I'm starting to think awn hates me.

#874

The border settings stopped working

#875

I checked those directories I posted and the files referred in the error don't exist. Am I missing something?

 /home/santiago/.config/awn/launchers/awn_launcher.desktop
 /usr/local/lib/awn/applets/taskman.desktop

Edit: Nevermind, it works now. I didn't know uninstalling left so many files behind. Now it works like a charm :)

#876

hi! thx for the repos, it installed just great =D im using kubuntu gutsy 64bits, but i have a problem: when i do clic to preferences, this is the error that i get:

Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 40, in <module>
    import gnomedesktop
ImportError: No module named gnomedesktop

i hope u can help here, cause i cant configure the awn whitout this, despite the error the awn keep running.

thx in advance

#877

GokuH12 said: hi! thx for the repos, it installed just great =D im using kubuntu gutsy 64bits, but i have a problem: when i do clic to preferences, this is the error that i get:

Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 40, in <module>
    import gnomedesktop
ImportError: No module named gnomedesktop

i hope u can help here, cause i cant configure the awn whitout this, despite the error the awn keep running.

thx in advance

you need to install the python-gnome2-desktop package. Thanks for finding this, I'll fix it in the packaging for the next update so noone else will ever have this problem again. :D

#878

thx!! it works now :D thx again for fast answer =D

#879
checking for DEPS... configure: error: Package requirements (gtk+-2.0
                  awn
                  libwnck-1.0
                  libglade-2.0
                  libgnome-menu
                  gnome-desktop-2.0
                  librsvg-2.0
                  libgtop-2.0) were not met:

No package 'librsvg-2.0' found
No package 'libgtop-2.0' found

I am having problems making the applets, I suspect because of this. Anyone else get that? Solution?

#880

Got it to work, the packages are librsvg2-dev and libgtop2-dev. They weren't installed on my computer. I just searched for them in synaptic and it worked.

#881

Islington said: Got it to work, the packages are librsvg2-dev and libgtop2-dev. They weren't installed on my computer. I just searched for them in synaptic and it worked.

Glad you figured it out. I need to add an applet section to my guide sometime, I'll do that after I get the 0.2 packages and instructions up.

#882

reacocard said: Glad you figured it out. I need to add an applet section to my guide sometime, I'll do that after I get the 0.2 packages and instructions up.Oh me too >:3, this weather applet is gorgeous. An applet guide would be pretty cool if you get the time, until then I suppose there is : http://awn.wetpaint.com/page/AWN-Extras

#883

Islington said: Oh me too >:3, this weather applet is gorgeous. An applet guide would be pretty cool if you get the time, until then I suppose there is : http://awn.wetpaint.com/page/AWN-Extras

Oh nice find! I'll link to that, it's a good interim solution.

#884

Is anyone else having problems with the stacks applet? It doesn't seem to cut off the bottom of the filenames.

So it'd be like.

PSYC432

But you can only see the top half of the PSYC432.

#885

I added the source lists (im gutsy) and have done everything else. Then when i type this:


sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr

It says it cant find "avant-window-navigator.bzr"

? Thanks

#886

nvm. Did it in synapitc. Now it works:)

#887

hi .. i installed awn.. it was working very well .. untill i changed sth in the applet.. i choosed the option in awn-manger / applets ..moved the task manager in the acitvie applet to available applet.. and the awn tool bar diaapeard.. i moved it bak but the tool bar is not bak up again.. i have unistalled .. and reinstalled thru apt.. synaptic but of no use. i could see the awn-manager up and running.. but cant find the tool bar on the bottom!! pls tell me how to get it bak.. i m sure its some option i got to choose.. but donknow what is it?????????? desperate to make it work!!

thanx in advance

ishwar

#888

hey no bother.. got it bak!!!!!!!!!!!!!just found an option in accsesories -- avant-windows navigator!!cool it rocks

but i dont know how to add new theme thru awn or active lauch bars!! any suggestions would be helpful

cheers

#889

ishwar said: hey no bother.. got it bak!!!!!!!!!!!!!just found an option in accsesories -- avant-windows navigator!!cool it rocks

but i dont know how to add new theme thru awn or active lauch bars!! any suggestions would be helpful

cheers

To install an AWN theme, just drag the tarball onto the Themes panel in awn-manager.

#890

Speaking of themes, unless you have your current config saved, is there a way to go back (un-applying a theme)without redoing everything?

#891

Islington said: Speaking of themes, unless you have your current config saved, is there a way to go back (un-applying a theme)without redoing everything?

No, you just have to save your current config as a theme first then import that to reset.

#892

This looks great! I can't believe how much better AWN has got in the last year.

I have it running on Gutsy beta (plus all updates to RC) and am trying to replace gnome-panel altogether but running into some hurdles -

  • The stack applet crashes when I hover over it.
  • The clock icon never appears (just a slight gap where it should be)
  • The volume control applet never appears (just a divider)
  • I have tried creating a launcher for my home directory (due to stack not working) and it works fine but I get a separate task icon displayed rather than just putting the little arrow under the launcher

Also, does anyone know of applets that replicate the functions of the Run and Force Quit gnome-panel applets?

Lastly, is there any way to turn off gnome-panel altogether? I have it hidden in the corner but I can still see the little restore button.

Any ideas would be greatly appreciated.

Thanks,

Allan

#893

axcairns said: This looks great! I can't believe how much better AWN has got in the last year.

I have it running on Gutsy beta (plus all updates to RC) and am trying to replace gnome-panel altogether but running into some hurdles -

The stack applet crashes when I hover over it.

Timon is working on a new version of stacks, rewritten in python, it should be available soon.

The clock icon never appears (just a slight gap where it should be)

install cairo-clock

The volume control applet never appears (just a divider)

No idea, try running awn from a terminal and see if it gives an error when you try to add this applet.

I have tried creating a launcher for my home directory (due to stack not working) and it works fine but I get a separate task icon displayed rather than just putting the little arrow under the launcher

This is due to the way AWN matches the launchers to the windows, no way to fix yet.

Also, does anyone know of applets that replicate the functions of the Run and Force Quit gnome-panel applets?

Not AFAIK, but you might be able to make launchers for these if you can find where the program for each is.

Lastly, is there any way to turn off gnome-panel altogether? I have it hidden in the corner but I can still see the little restore button.

I think you cna just delete the last panel, but if not, open up System->Preferences->Sessions and switch to the 'Current Session' tab. Highlight the entry for gnome-panel, and set the style to trash, then press apply. Next time you log in, gnome-panel should not start.

#894

Got audio working. Running AWN from terminal revealed -

You need to install the alsaaudio-python module and the python-gconf !

A quick search in synaptic revealed python-gconf and python-alsaaudio. Installed these and volume working fine.

Thanks,

Allan

#895

axcairns said: Also, does anyone know of applets that replicate the functions of the Run and Force Quit gnome-panel applets?

For Force Quit, create a launcher for xkill. In Xfce, you can create a launcher for xfrun4 to get the Run Program dialogue. In GNOME, it will a bit more complicated.

#896

Ludford said: does anyone have a step by step tutorial on how to turn this...

[IMG]http://img.photobucket.com/albums/v669/matts_skinz/Screenshot-4.png[/IMG]

into this..

http://bp3.blogger.com/_Xie1ydrCav4/RujzdfVU8ZI/AAAAAAAAAIU/9sRKAIwxytE/s1600-h/withreflection2089.png

I've just installed AWN and at the mo it's just a useless grey box that won't auto hide.

Here yare' made a thread since I had seen this question so many times: http://ubuntuforums.org/showthread.php?t=572019&highlight=awn+curves :)

#897

nikoPSK said: Here yare' made a thread since I had seen this question so many times: http://ubuntuforums.org/showthread.php?t=572019&highlight=awn+curves

:)

Very nice! You may want to add a line to apt-get all the dependencies of AWN though.

#898

Ok, Its just that Ive seen stuff just about everywhere asking how to do that so I figure lets do something about this. It wasn't just ubuntuforums it was yahoo answers and other forums. So I will add the awn dependencies to it, or could i just link it to your thread and say that it requires awn so here is the best way to install it?

Niko

#899

nikoPSK said: Ok, Its just that Ive seen stuff just about everywhere asking how to do that so I figure lets do something about this. It wasn't just ubuntuforums it was yahoo answers and other forums. So I will add the awn dependencies to it, or could i just link it to your thread and say that it requires awn so here is the best way to install it?

Niko

Just copy my apt-get line for it, specifically this:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev

It's easier than forcing people to come over here and search through my whole long guide for this one line. :)

Also, I've added your guide to my FAQ now.

#900

where do i get then how do i install applets?

i'd really like the rhythmbox one...

thanks.

#901

dmber said: where do i get then how do i install applets?

i'd really like the rhythmbox one...

thanks.

awn-core-applets-bzr from the repo, otherwise compile from source out of bzr: https://code.launchpad.net/~awn-extras/awn-extras/trunk

#902

when i did a sudo apt-get install awn-core-applets-bzr it told me i already had them installed...but i don't have the media player one or any of the non-"normal" ones.

would you mind explaining how to compize from source using the link you posted?

thank you.

#903

dmber said: when i did a sudo apt-get install awn-core-applets-bzr it told me i already had them installed...but i don't have the media player one or any of the non-"normal" ones.

would you mind explaining how to compize from source using the link you posted?

thank you.

hm, none of them? They should just show up in awn-manager.

Anyway, quick'n'dirty compile guide:

bzr co http://bazaar.launchpad.net/~awn-extras/awn-extras/trunk
cd trunk/awn-applets/awn-core-applets
./autogen.sh
make
sudo make install

If it complains that it can't find some packages, just search synaptic for packages ending in -dev that correspond to what it asks for and install them, then start again from ./autogen.sh.

#904

Sorry if this has come up before on this thread, but after running through the tutorial at the beginning, my GUI apps stopped working. I rebooted, and now have no GUI whatsoever. Before the reboot, every app gave an error when I tried to run it from the terminal: /usr/lib/gtk-x11-2.0.so.0: undefined symbol: g_signal_accumulator_true_handled.

Please help as I am stewing in LiveCD at this moment contemplating a reinstall. And that was the first thing I did this morning.

#905

SQuark said: For Force Quit, create a launcher for xkill.

In Xfce, you can create a launcher for xfrun4 to get the Run Program dialogue. In GNOME, it will a bit more complicated.

xkill works if I have launched AWN from a terminal but not if it was launched on session start.

I tried the run dialog from your link but get errors on compile -

allan@study:~$ gcc gnome-run.c -o gnome-run -L/usr/X11R6/lib -lX11
gnome-run.c:1:19: error: stdio.h: No such file or directory
gnome-run.c:2:20: error: stdlib.h: No such file or directory
gnome-run.c:3:22: error: X11/Xlib.h: No such file or directory
gnome-run.c: In function ‘die’:
gnome-run.c:7: error: ‘stderr’ undeclared (first use in this function)
gnome-run.c:7: error: (Each undeclared identifier is reported only once
gnome-run.c:7: error: for each function it appears in.)
gnome-run.c:8: warning: incompatible implicit declaration of built-in function ‘exit’
gnome-run.c: At top level:
gnome-run.c:11: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘get_atom’
gnome-run.c: In function ‘main’:
gnome-run.c:21: error: ‘Display’ undeclared (first use in this function)
gnome-run.c:21: error: ‘display’ undeclared (first use in this function)
gnome-run.c:22: error: ‘Atom’ undeclared (first use in this function)
gnome-run.c:22: error: expected ‘;’ before ‘gnome_panel_atom’
gnome-run.c:23: error: ‘XClientMessageEvent’ undeclared (first use in this function)
gnome-run.c:23: error: expected ‘;’ before ‘event’
gnome-run.c:25: error: ‘NULL’ undeclared (first use in this function)
gnome-run.c:29: error: ‘gnome_panel_atom’ undeclared (first use in this function)
gnome-run.c:30: error: ‘run_atom’ undeclared (first use in this function)
gnome-run.c:32: error: ‘event’ undeclared (first use in this function)
gnome-run.c:32: error: ‘ClientMessage’ undeclared (first use in this function)
gnome-run.c:37: error: ‘Time’ undeclared (first use in this function)
gnome-run.c:37: error: expected ‘;’ before numeric constant
gnome-run.c:39: error: ‘False’ undeclared (first use in this function)
gnome-run.c:39: error: ‘StructureNotifyMask’ undeclared (first use in this function)
gnome-run.c:40: error: ‘XEvent’ undeclared (first use in this function)
gnome-run.c:40: error: expected expression before ‘)’ token

Cheers,

Allan

#906

Turns out the easiest way to get a run dialog working is to install xfce4-utils. Only about 600k of downloads.

Allan

#907

reacocard said: I think you cna just delete the last panel, but if not, open up System->Preferences->Sessions and switch to the 'Current Session' tab. Highlight the entry for gnome-panel, and set the style to trash, then press apply. Next time you log in, gnome-panel should not start.

That only appears to affect the current session.

I ended up putting the following as a startup program in my session -

gnome-session-remove gnome-panel

Cheers,

Allan

#908

reacocard said: Just copy my apt-get line for it, specifically this:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev

It's easier than forcing people to come over here and search through my whole long guide for this one line. :)

Also, I've added your guide to my FAQ now.

Thanks! Glad I could be of service :)

#909

dmber said: when i did a sudo apt-get install awn-core-applets-bzr it told me i already had them installed...but i don't have the media player one or any of the non-"normal" ones.

would you mind explaining how to compize from source using the link you posted?

thank you.

I think you're looking for the python applets. To retrieve them, run the following command: ``` bzr co http://bazaar.launchpad.net/~im-tehk/awn-py-applets/trunk


This will download all of the python applets (Including the Media Applet you mentioned.) You now merely have to move the applets you want into **~/.config/awn/applets** for them to be accessible by awn.

Hope that helps,

Megaqwerty
#910

sci-fi guy said: Sorry if this has come up before on this thread, but after running through the tutorial at the beginning, my GUI apps stopped working. I rebooted, and now have no GUI whatsoever. Before the reboot, every app gave an error when I tried to run it from the terminal:

/usr/lib/gtk-x11-2.0.so.0: undefined symbol: g_signal_accumulator_true_handled.

Please help as I am stewing in LiveCD at this moment contemplating a reinstall. And that was the first thing I did this morning.

that's very very very very odd, I have no idea why it would do that, but it looks like somehow your GTK got messed up. Try reinstalling GTK and see if that solves it. If not, you'll have to ask elsewhere as I have very little experience with this sort of problem.

#911

Not quite the same as the kill applet but I ended up installing and using xfce4-taskmanager.

XFCE4 is turning out to be very handy, modular and light. Adding discrete components without weighing down the system is easy.

Here's my desktop -

[[IMG]http://img341.imageshack.us/img341/195/screenshotup2.th.png[/IMG]](http://img341.imageshack.us/my.php?image=screenshotup2.png)

The icons are -

  • Main menu
  • Firefox
  • Thunderbird
  • Gnome Terminal
  • Home Folder
  • Run (xfrun4)
  • Task Manager (xfce4-taskmanager)
  • Weather
  • Trash
  • Show Desktop
  • Workspace Switcher
  • Volume
  • Quit

On the right are two gkrellm instances (one for this box and one for the box under the stairs) and Cairo clock.

Once stack gets updated I'll replace the Home launcher and maybe file away some of the less used launchers in a stack folder.

Thanks for everyone's help.

Allan

#912

reacocard said: that's very very very very odd, I have no idea why it would do that, but it looks like somehow your GTK got messed up. Try reinstalling GTK and see if that solves it. If not, you'll have to ask elsewhere as I have very little experience with this sort of problem.

Which packages are likely to be the ones I need? I won't be able to browse synaptic looking for whatever looks promising.

#913

sci-fi guy said: Which packages are likely to be the ones I need? I won't be able to browse synaptic looking for whatever looks promising.

I think libgtk2.0-0 is the one you need, synaptic says that that file mentioned in the error is in that package.

#914

I'm going to tell people though this doesnt change your icons into OSX style. I could give you a different picture or give link to an OSX icon pack.:)

#915

My systray applet isn't working: a thin white bar appears where it should be. I know other people have run an applet in terminal, but how do I do that?

** ERROR **: There is already another notification area running on this screen

I am retarded, I post these posts and 2 seconds later I understand how to do it.. to get rid of this error I just get rid of notification area on panel, right?

#916

Problem: Works fine, but when i open a window, and than close it, its icon still stays in a dock with its icon and text above "no name" and i cant do anything about that, except restarting the app.. please help

#917

Islington said: My systray applet isn't working: a thin white bar appears where it should be. I know other people have run an applet in terminal, but how do I do that?

** ERROR **: There is already another notification area running on this screen

I am retarded, I post these posts and 2 seconds later I understand how to do it.. to get rid of this error I just get rid of notification area on panel, right?

Exactly. You can only have one systray at a time.

#918

Can this setup be moved to the left side of the screen? I am on a widescreen laptop and that would use space more efficiently than otherwise. Searching brought up nothing indicating that AWN does or does not support this, so I must ask.

#919

No, last time I checked (and I share your pain).

#920

unimeister said: Can this setup be moved to the left side of the screen? I am on a widescreen laptop and that would use space more efficiently than otherwise. Searching brought up nothing indicating that AWN does or does not support this, so I must ask.

no, not yet.

#921

Question:

Is this available in edgy eft? I've had this question by a person on my thread:popcorn:

#922

nikoPSK said: Question:

Is this available in edgy eft? I've had this question by a person on my thread:popcorn:

Not from the repo, but it may be possible to build it from source.

#923

And how would that be done?:)

#924

nikoPSK said: And how would that be done?:)

same way.

#925

hey i have a problem, I followed this guide and the curve guide and then AWN stops working!

What do I do to bring up the AWN

#926

please post problems on my awn curves thread them.:KS

#927

I installed it like said on first page on gutsy.. and now i cant see it anywerhe ? not in menu nothing :(

#928

mech7 said: I installed it like said on first page on gutsy.. and now i cant see it anywerhe ? not in menu nothing :(

goto terminal, and type

avant-window-navigator

if you want it to show up in the menu right click the apps menu then edit menus, look for it in accessories then make sure it's checked.:guitar:

#929

this app crashes for me every 10 minutes

is there any way to find out why?

#930

How do I start it? I installed it, everything worked fine, but it didn't autostart

#931

Guardian-Mage said: How do I start it? I installed it, everything worked fine, but it didn't autostart

Applications->Accessories->Avant Window Navigator

#932

So after updating to gutsy most of my applets are broken.

Main-menu Stacks Clock Awn System Monitor Trash ..and here is the kicker..

Separator.

Terminal gives me this: ``` Screen is composited. LOADED : /usr/share/applications/firefox.desktop LOADED : /usr/share/applications/evolution-mail.desktop LOADED : /usr/share/applications/kde/amarok.desktop LOADED : /usr/share/applications/gnome-system-monitor.desktop LOADED : /home/islington/.config/awn/launchers/awn_launcher.desktop APPLET : /usr/local/lib/awn/applets/taskman.desktop APPLET : /usr/local/lib/awn/applets/showdesktop.desktop APPLET : /usr/local/lib/awn/applets/volume-control.desktop APPLET : /usr/local/lib/awn/applets/quit-applet.desktop

(awn-applet-activation:24171): WARNING : Unable to load module /usr/local/lib/awn/applets/awnsystemmonitor/awnsystemmonitor.so

(awn-applet-activation:24171): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24171): WARNING : Could not create plug

APPLET : /usr/local/lib/awn/applets/awn-system-monitor.desktop APPLET : /usr/local/lib/awn/applets/separator.desktop APPLET : /usr/local/lib/awn/applets/stack.desktop APPLET : /usr/local/lib/awn/applets/main-menu.desktop

(awn-applet-activation:24177): WARNING : Unable to load module /usr/local/lib/awn/applets/separator/separator.so

(awn-applet-activation:24177): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24177): WARNING : Could not create plug

APPLET : /usr/local/lib/awn/applets/clock.desktop

(showdesktop.py:24175): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed APPLET : /usr/local/lib/awn/applets/awngmail.desktop

(awn-applet-activation:24185): WARNING : Unable to load module /usr/local/lib/awn/applets/clock/clock.so

(awn-applet-activation:24185): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24185): WARNING : Could not create plug

(awn-applet-activation:24179): WARNING : Unable to load module /usr/local/lib/awn/applets/stack/stack.so

(awn-applet-activation:24179): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24179): WARNING : Could not create plug

APPLET : /usr/local/lib/awn/applets/trash.desktop

(awn-applet-activation:24181): WARNING : Unable to load module /usr/local/lib/awn/applets/mainmenu/mainmenu.so

(awn-applet-activation:24181): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24181): WARNING : Could not create plug

The gconf key is empty.

(quit-applet.py:24183): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

(awn-applet-activation:24189): WARNING : Unable to load module /usr/local/lib/awn/applets/trash/trash.so

(awn-applet-activation:24189): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24189): WARNING : Could not create plug

(avant-window-navigator:24163): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed Traceback (most recent call last): File "/usr/local/lib/awn/applets/gmail/gmail.py", line 12, in <module> import libgmail File "/usr/local/lib/awn/applets/gmail/libgmail.py", line 41, in <module> from lgconstants import * ImportError: No module named lgconstants

(volume-control.py:24173): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

(volume-control.py:24173): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

(avant-window-navigator:24163): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed



 libwnck-1.so.18 which I think may be the package ***libwnck18*** in synaptic gives me the following error if I try to install : ```
libwnck18:

Package libwnck18 has no available version, but exists in the database.
This typically means that the package was mentioned in a dependency and never uploaded, has been obsoleted or is not available with the contents of sources.list

this is proabaly because* libwnck22, libwnck-dev, libwnck-common* are already installed.

So... what do I do now? Please help ;_;

#933

Islington said: So after updating to gutsy most of my applets are broken.

Main-menu Stacks Clock Awn System Monitor Trash ..and here is the kicker..

Separator.

Terminal gives me this: ``` Screen is composited. LOADED : /usr/share/applications/firefox.desktop LOADED : /usr/share/applications/evolution-mail.desktop LOADED : /usr/share/applications/kde/amarok.desktop LOADED : /usr/share/applications/gnome-system-monitor.desktop LOADED : /home/islington/.config/awn/launchers/awn_launcher.desktop APPLET : /usr/local/lib/awn/applets/taskman.desktop APPLET : /usr/local/lib/awn/applets/showdesktop.desktop APPLET : /usr/local/lib/awn/applets/volume-control.desktop APPLET : /usr/local/lib/awn/applets/quit-applet.desktop

(awn-applet-activation:24171): WARNING : Unable to load module /usr/local/lib/awn/applets/awnsystemmonitor/awnsystemmonitor.so

(awn-applet-activation:24171): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24171): WARNING : Could not create plug

APPLET : /usr/local/lib/awn/applets/awn-system-monitor.desktop APPLET : /usr/local/lib/awn/applets/separator.desktop APPLET : /usr/local/lib/awn/applets/stack.desktop APPLET : /usr/local/lib/awn/applets/main-menu.desktop

(awn-applet-activation:24177): WARNING : Unable to load module /usr/local/lib/awn/applets/separator/separator.so

(awn-applet-activation:24177): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24177): WARNING : Could not create plug

APPLET : /usr/local/lib/awn/applets/clock.desktop

(showdesktop.py:24175): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed APPLET : /usr/local/lib/awn/applets/awngmail.desktop

(awn-applet-activation:24185): WARNING : Unable to load module /usr/local/lib/awn/applets/clock/clock.so

(awn-applet-activation:24185): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24185): WARNING : Could not create plug

(awn-applet-activation:24179): WARNING : Unable to load module /usr/local/lib/awn/applets/stack/stack.so

(awn-applet-activation:24179): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24179): WARNING : Could not create plug

APPLET : /usr/local/lib/awn/applets/trash.desktop

(awn-applet-activation:24181): WARNING : Unable to load module /usr/local/lib/awn/applets/mainmenu/mainmenu.so

(awn-applet-activation:24181): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24181): WARNING : Could not create plug

The gconf key is empty.

(quit-applet.py:24183): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

(awn-applet-activation:24189): WARNING : Unable to load module /usr/local/lib/awn/applets/trash/trash.so

(awn-applet-activation:24189): WARNING : libwnck-1.so.18: cannot open shared object file: No such file or directory

(awn-applet-activation:24189): WARNING : Could not create plug

(avant-window-navigator:24163): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed Traceback (most recent call last): File "/usr/local/lib/awn/applets/gmail/gmail.py", line 12, in <module> import libgmail File "/usr/local/lib/awn/applets/gmail/libgmail.py", line 41, in <module> from lgconstants import * ImportError: No module named lgconstants

(volume-control.py:24173): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

(volume-control.py:24173): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

(avant-window-navigator:24163): CRITICAL : awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed



 libwnck-1.so.18 which I think may be the package ***libwnck18*** in synaptic gives me the following error if I try to install : ```
libwnck18:

Package libwnck18 has no available version, but exists in the database.
This typically means that the package was mentioned in a dependency and never uploaded, has been obsoleted or is not available with the contents of sources.list

this is proabaly because* libwnck22, libwnck-dev, libwnck-common* are already installed.

So... what do I do now? Please help ;_;

You need to switch to the gutsy AWN repository. Open /etc/apt/sources.list, remove the old line, add the new one from the guide, save and exit. Now open a terminal and do

sudo apt-get update && sudo apt-get upgrade

that should upgrade you to the gutsy versions of the packages, which use wnck22 and fix your problem.

#934

GAh! it was that simple? Cant believe i missed that. Thanks reacocard, I love this thread <3

#935

mega said: this app crashes for me every 10 minutes

is there any way to find out why?

Yes, run it from the terminal ``` avant-window-navigator


Examine the output it gives you when it crashes. If you can't figure out what the error means, feel free to post it here, and I'm sure someone will be more than happy to help you figure out what is wrong.

Hope that helps,

Megaqwerty
#936

datelus said: Problem:

Works fine, but when i open a window, and than close it, its icon still stays in a dock with its icon and text above "no name" and i cant do anything about that, except restarting the app.. please help

I have this problem too. When I close windows, the icons don't ever go away, and they have the text "no name." Has anyone else seen this and do you have any suggestions?

I'm on gutsy with a brand new install from the avn gutsy repo

#937

I have finally gotten AWN installed, but it won't run. If I run it from the terminal I get: ``` Segmentation fault (core dumped)

What gives?
#938

So I'm in a battle over either Kiba or AWN. I have Kiba doing pretty much everything I want it to do, except a system tray and some kind of alert when I get an IM through pidgin.

AWN is also up and running, and has the IM alert for pidgin (which is huge), but I have many issues:

  • The separators will not show themselves
  • The system tray applet is available (which is nice), but doesn't work
  • The clock doesn't work
  • The icons can't be made any bigger (I'm a sucker for details and they're just too small!)
  • AWN groups launchers and their corresponding windows together, I'd rather have them separate for multiple windows of the same application
  • The trash icon is fugly! (Same for kiba... I found a nice alternative and I want to be able to customize it!)
  • Volume applet doesn't work
  • AWN system monitor should bring up the system monitor when clicked, but instead shows a buggy version of that window, and can't be used to kill programs

If I find a fix to *some* of those problems I'll drop Kiba like a hot potato, because AWN has some nice applets out, but until then, kiba just seems to have more functionality and user-friendly customization at the moment, and they are both equally buggy.

My goal is basically to eliminate the need for the gnome-panel, the first dock to do that wins!

#939

This morning, Gutsy 7.10 update-manager gave me an error stating the public key for the AWN repository could not be found, error 404.

#940

Originally Posted by dmontalvao View Post

Hi! I had the same problem and found this thread. I have this working now on Gutsy. Here's what I did after starting reading the whole thread:

1) Post #1 (page 1) from nikoPSK - I followed his steps. PROBLEM: AWN stopped running (If I restarted it).

2) Post #16 (page 2) from nikoPSK - I removed, then reinstalled, as he said, but the problem seemed to persist. I don't think this step is needed.

3) Post #21 (page 3) from nikoPSK - I installed compizconfig-settings-manager in Synaptic, went to System->Preferences->Appearance->Visual Effects and chose custom. After this, AWN was still not running.

4) Post#27 (page 3) by datelus and Post#33 (page 4) by nikoPSK - This is what first confused me, but what made it work. lol. When I went to Synpatic i noticed these were not installed in my machine: awn-core-applets-bzr and libawn-bzr-dev. Well, instead of removing as they said, I added :P. And now I have it working perfectly.

I have no idea what I did. Maybe that's why "newb" and "noob" sound similar .

I hope this helps.

Cheers! aka Lord Von M

hmmm....

#941

I am following the instructions on the first page, and i get a 404 error for:

wget http://download.tuxfamily.org/syzygy42/reacocard.asc

:S i am on gutsy btw. help?

#942

silvercliff said: I am following the instructions on the first page, and i get a 404 error for:

wget http://download.tuxfamily.org/syzygy42/reacocard.asc

:S i am on gutsy btw. help?

Ah sorry, forgot to upload the new key after I changed it, should be fixed now.

#943

Rizlaw said: This morning, Gutsy 7.10 update-manager gave me an error stating the public key for the AWN repository could not be found, error 404.

I changed my GPG key, use this to fix the warning:

wget http://download.tuxfamily.org/syzygy42/reacocard.asc
sudo apt-key add reacocard.asc
rm reacocard.asc
sudo apt-get update
#944

reacocard said: Ah sorry, forgot to upload the new key after I changed it, should be fixed now.

As of 2:35pm New York time, I'm still getting the same 404 error about the key.

Followed "reacocard's" instructions in the post above, and I'm still getting a problem with the key not being found.

Seems since this is release day for Gutsy, the servers are being overworked and are very slow. Nevertheless, after trying 3 times, I finally got the key and everything seems OK now.

#945

upgraded from Feisty. AWN is still in my Accessories Menu. Doesn't do anything when I click on it. Ran through the instructions from the first page, get this when i try to start AWN with the terminal.

$ avant-window-navigator avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory [1]+ Exit 127 avant-window-navigator

#946

dmber said: upgraded from Feisty. AWN is still in my Accessories Menu. Doesn't do anything when I click on it. Ran through the instructions from the first page, get this when i try to start AWN with the terminal.

$ avant-window-navigator avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory [1]+ Exit 127 avant-window-navigator

You need to switch to the gutsy AWN repository. Open /etc/apt/sources.list, remove the old line, add the new one from the guide, save and exit. Now open a terminal and do


sudo apt-get update && sudo apt-get upgrade

that should upgrade you to the gutsy versions of the packages, which use wnck22 and fix your problem.

#947

I tried re-installing AWN to see if that would solve my problem. It didn't, and I still get the save error when trying to run it:``` Segmentation fault (core dumped)


And when I run awn-manager:```
/usr/share/avant-window-navigator/awn-manager/awnPreferences.py:182: DeprecationWarning: raising a string exception is deprecated
  raise "\nKey: "+key+" isn't set.\nRestarting AWN usually solves this issue\n"
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 199, in <module>
    awnmanager = AwnManager()
  File "/usr/bin/awn-manager", line 100, in __init__
    self.prefManager = awnPreferences(self.wTree)
  File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 162, in __init__
    self.setup_color(TITLE_TEXT_COLOR, self.wTree.get_widget("textcolor"))
  File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 182, in setup_color
    raise "\nKey: "+key+" isn't set.\nRestarting AWN usually solves this issue\n"

Key: /apps/avant-window-navigator/title/text_color isn't set.

What gives?

#948

I can't figure out how to accomplish the first step. I realize I probably just gave away my nubeness. It says root owns my sources file. How can I add those lines?

#949

jimmytango2354 said: I can't figure out how to accomplish the first step. I realize I probably just gave away my nubeness. It says root owns my sources file. How can I add those lines?

You need to add the word sudo in the front of the command. For example: ``` sudo nano /etc/apt/sources.list


Hope that helps,

Megaqwerty
#950

Once I do that, how do I save?

#951

Ctrl+X, Y, Enter

#952

Got it to work to on Gusty, thanks:guitar:

#953

I had feisty with AWN, and had that shared lib18 problem too, with avant not starting. Poked around and found my solution: http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=566&page=1&isLive=true Works!

#954

newmster said: I had feisty with AWN, and had that shared lib18 problem too, with avant not starting. Poked around and found my solution:

http://www.planetblur.org/hosted/awnforum/index.php?shard=forum&action=g_reply&ID=566&page=1&isLive=true Works!

BAD!!!

Proper solution is to switch to using the gutsy packages if you're using the repo, or to recompile if from source. You should never have to install older libraries.

#955

I just compiled from source and I had to link /usr/local/lib/libawn.so.0 /usr/lib to get it to work.

#956

I'm trying to get AWN (latest version from the repositories) to work with Kubuntu 7.10. I've installed compiz (which works) and AWN.

AWN loads perfectly when I run avant-window-navigator, but when I right-click AWN and click "Preferences," nothing shows up. When I first had this problem, I tried running "awn-manager," and nothing happened - no error messages or anything. I thought that I must be missing a library or something (considering that I'm using KDE and AWN is a GTK app), so I installed Gedit to see if it had the same dependencies that AWN needs. Now when I start awn-manager, I get this error message:

me1on@me1on:~$ awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 199, in <module>
    awnmanager = AwnManager()
  File "/usr/bin/awn-manager", line 94, in __init__
    self.appletManager = awnApplet(self.wTree)
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 75, in __init__
    self.make_model()
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 351, in make_model
    self.refresh_tree (applets)
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 415, in refresh_tree
    icon, text = self.make_row(path)
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 360, in make_row
    return self.make_icon (item.get_string(gnomedesktop.KEY_ICON)), text
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 380, in make_icon
    icon = gtk.gdk.pixbuf_new_from_file_at_size (name, 32, 32)
gobject.GError: Unrecognized image file format
me1on@me1on:~$

Does anybody else know what I need to install to get this working? I've searched for this problem but couldn't find anything. Some people have got awn-manager working in Kubuntu by installing some Gnome libraries, but I'm not sure which libraries I need to install.

#957

me1on said: I'm trying to get AWN (latest version from the repositories) to work with Kubuntu 7.10. I've installed compiz (which works) and AWN.

AWN loads perfectly when I run avant-window-navigator, but when I right-click AWN and click "Preferences," nothing shows up. When I first had this problem, I tried running "awn-manager," and nothing happened - no error messages or anything. I thought that I must be missing a library or something (considering that I'm using KDE and AWN is a GTK app), so I installed Gedit to see if it had the same dependencies that AWN needs. Now when I start awn-manager, I get this error message:

me1on@me1on:~$ awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 199, in <module>
    awnmanager = AwnManager()
  File "/usr/bin/awn-manager", line 94, in __init__
    self.appletManager = awnApplet(self.wTree)
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 75, in __init__
    self.make_model()
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 351, in make_model
    self.refresh_tree (applets)
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 415, in refresh_tree
    icon, text = self.make_row(path)
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 360, in make_row
    return self.make_icon (item.get_string(gnomedesktop.KEY_ICON)), text
  File "/usr/share/avant-window-navigator/awn-manager/awnApplet.py", line 380, in make_icon
    icon = gtk.gdk.pixbuf_new_from_file_at_size (name, 32, 32)
gobject.GError: Unrecognized image file format
me1on@me1on:~$

Does anybody else know what I need to install to get this working? I've searched for this problem but couldn't find anything. Some people have got awn-manager working in Kubuntu by installing some Gnome libraries, but I'm not sure which libraries I need to install.

install the gnome-icon-theme package

#958

Does the AWN dock show open windows like a normal task bar would? If if does could some please tell me how to enable it.

#959

^ Enable Window Previews in the compiz settings manager.

#960

Rizlaw said: As of 2:35pm New York time, I'm still getting the same 404 error about the key.

Followed "reacocard's" instructions in the post above, and I'm still getting a problem with the key not being found.

Seems since this is release day for Gutsy, the servers are being overworked and are very slow. Nevertheless, after trying 3 times, I finally got the key and everything seems OK now.

I follow step by step this http://wiki.awn-project.org/index.php?title=DistributionGuides to install AWM on my Ubuntu gutsy.

But i get this in my terminal after I typed this last line

sudo apt-get update

Immediate respons: --------------------------- ... .... Ign http://dowload.tuxfamily.org gutsy Release Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages 404 Not Found Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources 404 Not Found Fetched 3B in 0s (6B/s) Failed to fetch http://dowload.tuxfamily.org/syzygy42/d … ackages.gz 404 Not Found Failed to fetch http://dowload.tuxfamily.org/syzygy42/d … Sources.gz 404 Not Found Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead. ---------------------------------- so those URLS don't work anymore on WIKI? How can I install AWM and see it in my repo? Somebody suceeded in this recentely?

#961

^ Enable Window Previews in the compiz settings manager.

Sorry, I didn't explain very clearly. I meant when I open up for example Firefox, should it then appear on the AWN dock? I'm sure it did when I first installed it, or am I just being dumb? :confused:

#962

Add the Launcher/Taskmanager applet.

#963

omg that was simple, I was for that for hours last night, damn I feel stupid.

Thanks a lot

#964

verbruggher said: I follow step by step this http://wiki.awn-project.org/index.php?title=DistributionGuides to install AWM on my Ubuntu gutsy.

But i get this in my terminal after I typed this last line

sudo apt-get update

Immediate respons: --------------------------- ... .... Ign http://dowload.tuxfamily.org gutsy Release Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages 404 Not Found Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources 404 Not Found Fetched 3B in 0s (6B/s) Failed to fetch http://dowload.tuxfamily.org/syzygy42/d &#8230; ackages.gz 404 Not Found Failed to fetch http://dowload.tuxfamily.org/syzygy42/d &#8230; Sources.gz 404 Not Found Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead. ---------------------------------- so those URLS don't work anymore on WIKI? How can I install AWM and see it in my repo? Somebody suceeded in this recentely?

Try again using the instructions on the first page of this thread, they're likely better. And also, next time make sure the entire message gets pasted correctly, I cannot read all of this one (the two 'failed to fetch' lines), so it's impossible to diagnose.

#965

Hello, is on site http://nekohayo.googlepages.com/icons I download icons mac os x,

Every icon is not to change?

How all change?

I am under ubuntu V7.10

#966

hi,

i get this: shane@lotus:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.13.7-1ubuntu5 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.11.6-1ubuntu3 is to be installed Depends: libpango1.0-0 (>= 1.18.2) but 1.17.5-1ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr129-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.13.7-1ubuntu5 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.11.6-1ubuntu3 is to be installed Depends: libpango1.0-0 (>= 1.18.2) but 1.17.5-1ubuntu1 is to be installed Depends: librsvg2-2 (>= 2.18.1) but 2.18.0-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages shane@lotus:~$

please help what do i do?

thanks guys...

#967

In the Launcher/Taskmanager applet some icons are blurry/fuzzy. For example the evolution icon is blurry and Open Office document icons are also, but the Awn Manager and Firefox icons are sharp and clear.

Why is this and can I do something to make them all sharp?

Along those lines is it possible to make them smaller?

Thanks in advance

#968

Can I just say wow. I was using an old deb package. The newer version in these repos is very impressive, I considered compiling it from source about a week ago but never got round to it. This was much simpler & I am very happy.

#969

waldorf said: In the Launcher/Taskmanager applet some icons are blurry/fuzzy. For example the evolution icon is blurry and Open Office document icons are also, but the Awn Manager and Firefox icons are sharp and clear.

Why is this and can I do something to make them all sharp?

Along those lines is it possible to make them smaller?

Thanks in advance

It's because Open Office and Evolution are hardcoded to use small icons, I think. Only way around it is right click > change icon and choose a higher res version from your icon theme.

You can change the icon size for the entire bar in awn-manager: General>Bar Appearance>Bar height.

#970

I found out on my own how to get awn-curves in gutsy. Ive updated the guide now and everythings fine:)

#971

swiftsam said: I have this problem too. When I close windows, the icons don't ever go away, and they have the text "no name." Has anyone else seen this and do you have any suggestions?

I'm on gutsy with a brand new install from the avn gutsy repo

I'm also having the same issue as mentioned here. I've searched this thread and the AWN forums and bug reports and don't seen anything mentioned. Does anyone know what is going on or if there is a fix?

#972

AWN is also up and running, and has the IM alert for pidgin (which is huge), but I have many issues:

I've experienced the same issues and have found fixes for some of them (actually contained within this thread in various places)

> * The system tray applet is available (which is nice), but doesn't work Most likely because its already running in gnome panel. Get rid of that and then restart it in awn.

* The icons can't be made any bigger (I'm a sucker for details and they're just too small!)

Increase "Bar Height" under "Bar Appearance" in the awn preferences.

* The trash icon is fugly! (Same for kiba... I found a nice alternative and I want to be able to customize it!)

Try Installing a different icon set/theme. Check out gnome-look.org perhaps.

* Volume applet doesn't work

Run awn in the terminal, add the applet and it will tell you why its not working. I just had to install two files and it started working.

My goal is basically to eliminate the need for the gnome-panel...

Me too! I'm looking for solutions to the rest of the problems...

#973

Thanks

#974

I get an Error when im typing : sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done [COLOR="Red"]E: Couldn't find package avant-window-navigator-bzr[/COLOR]

What is wrong??

#975

johantc said: I get an Error when im typing :

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done [COLOR="Red"]E: Couldn't find package avant-window-navigator-bzr[/COLOR]

What is wrong??

You either didn't add the line correctly or you forgot to apt-get update afterwards.

#976

johantc said: I get an Error when im typing :

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done [COLOR="Red"]E: Couldn't find package avant-window-navigator-bzr[/COLOR]

What is wrong??

Looks like your sources are wrong :D Make sure you've correctly added ``` deb http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 feisty avant-window-navigator


edit: Reacocard was faster ;)
#977

I used synaptic to find and install the packages. But affinity doesn't show up as a package. I've downloaded the source and will see if I can compile it (I had done it a long time ago).

Shomati

#978

Ii just installed AWN to Xubuntu 7.10 ... but i dont know how to add lauchers to Avant dock ... can anybody help me? thanks . or is it an issue?..

#979

shomati_sen said: I used synaptic to find and install the packages. But affinity doesn't show up as a package. I've downloaded the source and will see if I can compile it (I had done it a long time ago).

Shomati

Affinity is no longer in my repo, sicne upstream has not updated in a long time. Compiling should be no trouble though.

voxar said: Ii just installed AWN to Xubuntu 7.10 ... but i dont know how to add lauchers to Avant dock ... can anybody help me? thanks . or is it an issue?..

Open /usr/share/applications in the file browser and drag the ones you want onto avant.

#980

I'm having the same problem as johantc

Couldn't find package avant-window-navigator-bzr

my /etc/apt/sources.list is up to date, but * sudo apt-get install avant-window-navigator-bzr* gives me..

greg@shadow:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr

Reading package lists... Done Building dependency tree Reading state information... Done Package avant-window-navigator-bzr is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package avant-window-navigator-bzr has no installation candidate

*edit:* Think I've worked it out... http://download.tuxfamily.org/ doesn't seem to be there any more!

Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gutsy/Release.gpg Could not connect to download.tuxfamily.org:80 (88.191.250.18). - connect (113 No route to host)

Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/i18n/Translation-en_GB.bz2 Could not connect to download.tuxfamily.org:80 (88.191.250.18). - connect (113 No route to host) Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/binary-i386/Packages.gz Could not connect to download.tuxfamily.org:80 (88.191.250.18). - connect (113 No route to host) Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/source/Sources.gz Could not connect to download.tuxfamily.org:80 (88.191.250.18). - connect (113 No route to host) Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead.

#981

reacocard said: install the gnome-icon-theme package

Thanks, it works on Kubuntu now. :)

#982

it's back up!

#983

managed to get AWN installed using the manual source installation instead of the specific gutsy one, but now having issues with awn extras - I'm up to and completed /autogen.sh, but when I try to 'make', I get the following..

greg@shadow:~/awn-extras/awn-applets/awn-core-applets$ make

make: *** No targets specified and no makefile found. Stop.

help! :p

schlort said: it's back up!

typical ;)

#984

SCGreg said: I'm having the same problem as johantc

my /etc/apt/sources.list is up to date, but * sudo apt-get install avant-window-navigator-bzr* gives me..

*edit:* Think I've worked it out... http://download.tuxfamily.org/ doesn't seem to be there any more!

Odd, tuxfamily.org is up and working fine for me right now, try it again.

EDIT: should read all the posts before replying :D

#985

:)

I can't ./autogen.sh when trying to install AWN applets - it is trying to reference to libsexy, but I don't have it installed - libsexy2 is, though

Ideas? :D

____

just had a hard reboot, now my autogen.sh has apparently disappeared..

greg@shadow:~/awn-extras/awn-applets/awn-core-applets$ /autogen.sh

bash: /autogen.sh: No such file or directory

#986

SCGreg said: :)

I can't ./autogen.sh when trying to install AWN applets - it is trying to reference to libsexy, but I don't have it installed - libsexy2 is, though

Ideas? :D

____

just had a hard reboot, now my autogen.sh has apparently disappeared..

redownload the applets to get auotgen back, then make sure you have the -dev package for libsexy installed and try again.

#987

Is the awn-manager thing just happening for curves? I have lots of reports of problems and have seen quite a few here. Thanks

#988

Ok, I've almost completely gotten rid of the need for gnome panel by using awn. Now the question is, how can I turn "Places" and "System" from the menu bar into launchers of some sort for awn? Also, has anyone got the system monitor applet working? After I add the applet, the first time I click on it, it disappears. Thanks

#989

reacocard said: redownload the applets to get auotgen back, then make sure you have the -dev package for libsexy installed and try again.

will do

nikoPSK said: Is the awn-manager thing just happening for curves? I have lots of reports of problems and have seen quite a few here. Thanks

nope, I didn't have curves installed - I've just this second added it to test it out, and it works fine

#990

pretty sure this bit of code you gave me is broken:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev

:confused:

#991

SQuark said: It's because Open Office and Evolution are hardcoded to use small icons, I think. Only way around it is right click > change icon and choose a higher res version from your icon theme.

You can change the icon size for the entire bar in awn-manager: General>Bar Appearance>Bar height.

Are there any good icon themes you'd suggest to replace them?

#992

reacocard said: Try again using the instructions on the first page of this thread, they're likely better. And also, next time make sure the entire message gets pasted correctly, I cannot read all of this one (the two 'failed to fetch' lines), so it's impossible to diagnose.

Okay Reacocard, I folowed exact the instructions on the first page of this thread. But I have the same problem. Here is the full message from my terminal in gutsy.

I'm already trying more then a week, can the servers be down for such long time? I suppose not no?


verbruggher@rien:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc
--19:49:10--  http://download.tuxfamily.org/syzygy42/reacocard.asc
           => `reacocard.asc.1'
Resolving download.tuxfamily.org... 88.191.250.18
Connecting to download.tuxfamily.org|88.191.250.18|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682         --.--K/s             

19:49:10 (1.88 MB/s) - `reacocard.asc.1' saved [1682/1682]

verbruggher@rien:~$ sudoapt-key add reacocard.asc
bash: sudoapt-key: command not found
verbruggher@rien:~$ sudo apt-key add reacocard.asc
[sudo] password for verbruggher:
OK
verbruggher@rien:~$ rm reacocard.asc
verbruggher@rien:~$ sudo apt-get update
Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/main Translation-en_US
Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/restricted Translation-en_US
Get:1 http://be.archive.ubuntu.com gutsy Release.gpg [191B]                    
Ign http://be.archive.ubuntu.com gutsy/main Translation-en_US                  
Ign http://be.archive.ubuntu.com gutsy/restricted Translation-en_US            
Ign http://be.archive.ubuntu.com gutsy/universe Translation-en_US             
Ign http://be.archive.ubuntu.com gutsy/multiverse Translation-en_US           
Get:2 http://security.ubuntu.com gutsy-security Release.gpg [191B]             
Ign http://security.ubuntu.com gutsy-security/main Translation-en_US           
Get:3 http://be.archive.ubuntu.com gutsy-updates Release.gpg [191B]            
Ign http://be.archive.ubuntu.com gutsy-updates/main Translation-en_US          
Ign http://be.archive.ubuntu.com gutsy-updates/restricted Translation-en_US    
Ign http://be.archive.ubuntu.com gutsy-updates/universe Translation-en_US     
Ign http://be.archive.ubuntu.com gutsy-updates/multiverse Translation-en_US   
Hit http://be.archive.ubuntu.com gutsy Release                                
Ign http://security.ubuntu.com gutsy-security/restricted Translation-en_US     
Ign http://security.ubuntu.com gutsy-security/universe Translation-en_US       
Ign http://security.ubuntu.com gutsy-security/multiverse Translation-en_US     
Get:4 http://security.ubuntu.com gutsy-security Release [51.2kB]               
Hit http://be.archive.ubuntu.com gutsy-updates Release                         
Hit http://be.archive.ubuntu.com gutsy/main Packages                           
Ign http://dowload.tuxfamily.org gutsy Release.gpg                        
Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Translation-en_US
Hit http://be.archive.ubuntu.com gutsy/restricted Packages
Hit http://be.archive.ubuntu.com gutsy/main Sources                        
Hit http://be.archive.ubuntu.com gutsy/restricted Sources                  
Hit http://be.archive.ubuntu.com gutsy/universe Packages                   
Hit http://be.archive.ubuntu.com gutsy/universe Sources                    
Hit http://be.archive.ubuntu.com gutsy/multiverse Packages                 
Hit http://be.archive.ubuntu.com gutsy/multiverse Sources                  
Ign http://dowload.tuxfamily.org gutsy Release                             
Hit http://be.archive.ubuntu.com gutsy-updates/main Packages               
Hit http://be.archive.ubuntu.com gutsy-updates/restricted Packages          
Hit http://be.archive.ubuntu.com gutsy-updates/main Sources                 
Hit http://be.archive.ubuntu.com gutsy-updates/restricted Sources           
Hit http://be.archive.ubuntu.com gutsy-updates/universe Packages            
Hit http://be.archive.ubuntu.com gutsy-updates/universe Sources             
Hit http://be.archive.ubuntu.com gutsy-updates/multiverse Packages          
Hit http://be.archive.ubuntu.com gutsy-updates/multiverse Sources           
Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages      
Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources
Get:5 http://security.ubuntu.com gutsy-security/main Packages [5409B]
Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages
  404 Not Found
Get:6 http://security.ubuntu.com gutsy-security/restricted Packages [14B]
Get:7 http://security.ubuntu.com gutsy-security/main Sources [1472B]
Get:8 http://security.ubuntu.com gutsy-security/restricted Sources [14B]
Get:9 http://security.ubuntu.com gutsy-security/universe Packages [3711B]
Get:10 http://security.ubuntu.com gutsy-security/universe Sources [885B] 
Get:11 http://security.ubuntu.com gutsy-security/multiverse Packages [599B]
Get:12 http://security.ubuntu.com gutsy-security/multiverse Sources [14B]
Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources
  404 Not Found
Fetched 63.5kB in 0s (106kB/s)
Failed to fetch http://dowload.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/binary-i386/Packages.gz  404 Not Found
Failed to fetch http://dowload.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/source/Sources.gz  404 Not Found
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.
verbruggher@rien:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Couldn't find package avant-window-navigator-bzr
#993

Same problem here as stated above. Same error, too. Clarify? Seems to be running fine until here:

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package avant-window-navigator-bzr

Maybe it's a problem with this: Just add the appropriate lines to your /etc/apt/sources.list: when I type /etc/apt/sources/list, i get permission denied. Kinda new to linux, so any help is appreciated.

#994

nikoPSK said: pretty sure this bit of code you gave me is broken:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev

:confused:

nope, should be good. or have been good, I;ve updated the one in my guide since then, copy that one intsead.

verbruggher said: Okay Reacocard, I folowed exact the instructions on the first page of this thread. But I have the same problem. Here is the full message from my terminal in gutsy.

I'm already trying more then a week, can the servers be down for such long time? I suppose not no?


verbruggher@rien:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc
--19:49:10--  http://download.tuxfamily.org/syzygy42/reacocard.asc
           => `reacocard.asc.1'
Resolving download.tuxfamily.org... 88.191.250.18
Connecting to download.tuxfamily.org|88.191.250.18|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682         --.--K/s             

19:49:10 (1.88 MB/s) - `reacocard.asc.1' saved [1682/1682]

verbruggher@rien:~$ sudoapt-key add reacocard.asc
bash: sudoapt-key: command not found
verbruggher@rien:~$ sudo apt-key add reacocard.asc
[sudo] password for verbruggher:
OK
verbruggher@rien:~$ rm reacocard.asc
verbruggher@rien:~$ sudo apt-get update
Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/main Translation-en_US
Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/restricted Translation-en_US
Get:1 http://be.archive.ubuntu.com gutsy Release.gpg [191B]                    
Ign http://be.archive.ubuntu.com gutsy/main Translation-en_US                  
Ign http://be.archive.ubuntu.com gutsy/restricted Translation-en_US            
Ign http://be.archive.ubuntu.com gutsy/universe Translation-en_US             
Ign http://be.archive.ubuntu.com gutsy/multiverse Translation-en_US           
Get:2 http://security.ubuntu.com gutsy-security Release.gpg [191B]             
Ign http://security.ubuntu.com gutsy-security/main Translation-en_US           
Get:3 http://be.archive.ubuntu.com gutsy-updates Release.gpg [191B]            
Ign http://be.archive.ubuntu.com gutsy-updates/main Translation-en_US          
Ign http://be.archive.ubuntu.com gutsy-updates/restricted Translation-en_US    
Ign http://be.archive.ubuntu.com gutsy-updates/universe Translation-en_US     
Ign http://be.archive.ubuntu.com gutsy-updates/multiverse Translation-en_US   
Hit http://be.archive.ubuntu.com gutsy Release                                
Ign http://security.ubuntu.com gutsy-security/restricted Translation-en_US     
Ign http://security.ubuntu.com gutsy-security/universe Translation-en_US       
Ign http://security.ubuntu.com gutsy-security/multiverse Translation-en_US     
Get:4 http://security.ubuntu.com gutsy-security Release [51.2kB]               
Hit http://be.archive.ubuntu.com gutsy-updates Release                         
Hit http://be.archive.ubuntu.com gutsy/main Packages                           
Ign http://dowload.tuxfamily.org gutsy Release.gpg                        
Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Translation-en_US
Hit http://be.archive.ubuntu.com gutsy/restricted Packages
Hit http://be.archive.ubuntu.com gutsy/main Sources                        
Hit http://be.archive.ubuntu.com gutsy/restricted Sources                  
Hit http://be.archive.ubuntu.com gutsy/universe Packages                   
Hit http://be.archive.ubuntu.com gutsy/universe Sources                    
Hit http://be.archive.ubuntu.com gutsy/multiverse Packages                 
Hit http://be.archive.ubuntu.com gutsy/multiverse Sources                  
Ign http://dowload.tuxfamily.org gutsy Release                             
Hit http://be.archive.ubuntu.com gutsy-updates/main Packages               
Hit http://be.archive.ubuntu.com gutsy-updates/restricted Packages          
Hit http://be.archive.ubuntu.com gutsy-updates/main Sources                 
Hit http://be.archive.ubuntu.com gutsy-updates/restricted Sources           
Hit http://be.archive.ubuntu.com gutsy-updates/universe Packages            
Hit http://be.archive.ubuntu.com gutsy-updates/universe Sources             
Hit http://be.archive.ubuntu.com gutsy-updates/multiverse Packages          
Hit http://be.archive.ubuntu.com gutsy-updates/multiverse Sources           
Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages      
Ign http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources
Get:5 http://security.ubuntu.com gutsy-security/main Packages [5409B]
Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Packages
  404 Not Found
Get:6 http://security.ubuntu.com gutsy-security/restricted Packages [14B]
Get:7 http://security.ubuntu.com gutsy-security/main Sources [1472B]
Get:8 http://security.ubuntu.com gutsy-security/restricted Sources [14B]
Get:9 http://security.ubuntu.com gutsy-security/universe Packages [3711B]
Get:10 http://security.ubuntu.com gutsy-security/universe Sources [885B] 
Get:11 http://security.ubuntu.com gutsy-security/multiverse Packages [599B]
Get:12 http://security.ubuntu.com gutsy-security/multiverse Sources [14B]
Err http://dowload.tuxfamily.org gutsy/avant-window-navigator Sources
  404 Not Found
Fetched 63.5kB in 0s (106kB/s)
Failed to fetch http://dowload.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/binary-i386/Packages.gz  404 Not Found
Failed to fetch http://dowload.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/source/Sources.gz  404 Not Found
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.
verbruggher@rien:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Couldn't find package avant-window-navigator-bzr

Ah I see, you have a typo in your entry in /etc/apt/sources.list. You have 'dowload' instead of 'download'. Correct that and it should work.

Thanawho said: Same problem here as stated above. Same error, too. Clarify?

Seems to be running fine until here:

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package avant-window-navigator-bzr

Maybe it's a problem with this: Just add the appropriate lines to your /etc/apt/sources.list: when I type /etc/apt/sources/list, i get permission denied. Kinda new to linux, so any help is appreciated.

You have to edit it as root, this should do:

sudo gedit /etc/apt/sources.list

I wonder how difficult apt-url is to set up, it might be a better solution for this....

#995

Thanks. I downloaded AWN but I cant configure it. I click on the AWN manager under system>preferences, and nothing shows up. Thanks for the help.

As a sidenote, I am running compiz.

#996

Thanawho said: Thanks. I downloaded AWN but I cant configure it. I click on the AWN manager under system>preferences, and nothing shows up. Thanks for the help.

As a sidenote, I am running compiz.

You have to run avant itself at least once (and exit it cleanly via right-click->close on the edge) before awn-manager will work. It that still doesn't fix it, try running awn-manager in a terminal and post the output here.

#997

Youre too fast with that response hah. Was just about to edit my last post.

One last question: What is the command to start AWN? I want to add it to system>preferences>session>startup programs to make it start when Ubuntu starts. Thanks

#998

Thanks. :)

#999

Compiz Settings Manager ??

thnax

#1000

So I can't seem to get awn to load. I uninstalled it using synaptic, and reinstalled for gutsy how it says on the first page, but now it won't load (it wouldn't after i upgraded to gutsy. that's why I uninstalled-figured I'd go for a fresh start). Any advice on how to get it to work?

#1001

Thanawho said:

One last question: What is the command to start AWN? I want to add it to system>preferences>session>startup programs to make it start when Ubuntu starts. Thanks

avant-window-navigator

#1002

running awn-manager, I get:

(awn-manager:2100): libglade-WARNING **: could not find glade file '/usr/local/share/avant-window-navigator/awn-manager/window.glade'
Traceback (most recent call last):
  File "/usr/local/bin/awn-manager", line 199, in <module>
    awnmanager = AwnManager()
  File "/usr/local/bin/awn-manager", line 71, in __init__
    self.wTree = gtk.glade.XML(self.GLADE_PATH, domain=I18N_DOMAIN)
RuntimeError: could not create GladeXML object

However, window.glade does exist in that dir. Any help would be appreciated.

#1003

I recently upgraded to Gutsy, with a clean install. I walked through the documentation in the beginning of this thread for setting up AWN, and everything appeared to go through without any hitches. But now when I go to system>preferences>awn manager, nothing opens up.

Any suggestions? [B][COLOR="Red"] Check that, my own stupidity, it is early in the morning..... Under applications>accessories>avant windows navigator , I am able to run AWN.[/COLOR][/B]

How to was very helpful, thanks for putting it together!!

#1004

After I made a fresh installation of Gutsy, I installed " avant-window-navigator_0.2-1~getdeb1_i386.deb " from getdeb.net and is working pretty stable.

Also I downloaded themes from http://www.queervisions.com/arch/2007/10/awn_avantwindow.html.

The weather applet ( weather-applet-0.11.awn ) can be downloaded from http://www.mediafire.com/?3mndrhfjkc2 Open "Preferences" and in the Applets tab, click Add, choose the AWN file and click Apply. It is necessary to restart AWN to make the applet and launchers to load properly.

Enjoy. :)

[[IMG]http://img132.imageshack.us/img132/8301/screenshot1jt0.th.png[/IMG]](http://img132.imageshack.us/my.php?image=screenshot1jt0.png)

#1005

I don't mean to bring old stuff up, but this forum's search kinda sucks.

1) Can you put AVN somewhere else besides the bottom of your screen?

2) Can somebody put out a small howto on adding launchers?

3) Can somebody tell me how I can get it to act JUST like the OS X dock?

Thanks guys!

#1006

sixstorm said: I don't mean to bring old stuff up, but this forum's search kinda sucks.

1) Can you put AVN somewhere else besides the bottom of your screen?

2) Can somebody put out a small howto on adding launchers?

3) Can somebody tell me how I can get it to act JUST like the OS X dock?

Thanks guys!

1) No

2) Drag them onto the dock from the menu or from /usr/share/applications

3) Not quite possible yet

#1007

I ma trying to install awn in Gutsy, I did it following this guide and awn starts fine but awn-manager doesen't start, here is the error:

santiago@lab1:~$ awn-manager 
Traceback (most recent call last):
  File "/usr/local/bin/awn-manager", line 43, in <module>
    from awnTheme import AwnThemeManager
ImportError: No module named awnTheme

What's wrong?

#1008

santiump said: I ma trying to install awn in Gutsy, I did it following this guide and awn starts fine but awn-manager doesen't start, here is the error:

santiago@lab1:~$ awn-manager 
Traceback (most recent call last):
  File "/usr/local/bin/awn-manager", line 43, in <module>
    from awnTheme import AwnThemeManager
ImportError: No module named awnTheme

What's wrong?

did you install from source before, and are now trying the repo? if so, do this:

sudo rm /usr/local/bin/awn-manager
sudo rm /usr/local/bin/avant-window-navigator
#1009

I m now in gusty and your awn packages still rock, I just wanted to know about the awn curve. Has it merge with the official awn ? will this be able ? I know tha I can compile it from source but I prefer the repos way, easier :)

#1010

ayoli said: I m now in gusty and your awn packages still rock, I just wanted to know about the awn curve.

Has it merge with the official awn ? will this be able ? I know tha I can compile it from source but I prefer the repos way, easier :)

Awn-curves has not yet merged with the main AWN, hopefully it will happen for 0.3. I am not planning on packaging awn-curves until it gets merged in.

#1011

yes, It needs to have a bit more development. But right now it's quite stable and if you want it come here

#1012

ok guys, thanks for te quick feedabck :)

#1013

reacocard said: 1) No

2) Drag them onto the dock from the menu or from /usr/share/applications

3) Not quite possible yet

Thanks for the reply!

#1014

reacocard said: did you install from source before, and are now trying the repo? if so, do this:

sudo rm /usr/local/bin/awn-manager
sudo rm /usr/local/bin/avant-window-navigator

Thanks! That did it. Looks like I will finally have my awn:).

#1015

spaceship.rodeo said: So I can't seem to get awn to load. I uninstalled it using synaptic, and reinstalled for gutsy how it says on the first page, but now it won't load (it wouldn't after i upgraded to gutsy. that's why I uninstalled-figured I'd go for a fresh start). Any advice on how to get it to work?

Anyone? Trying to start it in the terminal yields this:

avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory
#1016

spaceship.rodeo said: Anyone? Trying to start it in the terminal yields this:

avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory

remove awn completely, remove my repo from sources.list, apt-get update, then start over form the top of the guide.

#1017

It's still giving me the same error.

#1018

spaceship.rodeo said: It's still giving me the same error.

try

sudo rm /usr/local/bin/avant-window-navigator
sudo rm /usr/local/bin/awn-manager
#1019

Still nothing. =(

#1020

There is an annoying white line on my avant-window-navigator does anyone happen to know how to get rid of it? Also, is there a way to add icons -- like the Terminal to the bar? One final question, cn I change the icons on that are on the bar already. If you can change the icons could someone tell me how?

Thanks,

Averagebeatboy

#1021

I installed AWN from source in 64 bit Gutsy. When I try to follow the howto for awn-extras this is what I get

inxsible@inxsible:~/Installs/avant/awn-extras/awn-applets/awn-core-applets$ ./autogen.sh && make && sudo make install
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal 
/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy
libtoolize: `config.guess' exists: use `--force' to overwrite
libtoolize: `config.sub' exists: use `--force' to overwrite
libtoolize: `ltmain.sh' exists: use `--force' to overwrite
/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE
autoreconf: running: /usr/bin/autoconf
autoreconf: running: /usr/bin/autoheader
autoreconf: running: automake --add-missing --copy --no-force
src/stacks/Makefile.am:4: whitespace following trailing backslash
autoreconf: Leaving directory `.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for gconftool-2... /usr/bin/gconftool-2
checking for intltool >= 0.34... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... configure: error: Package requirements (gtk+-2.0
                  awn
                  libwnck-1.0
                  libglade-2.0
                  libgnome-menu
                  gnome-desktop-2.0
                  librsvg-2.0
                  libgtop-2.0
                  glib-2.0
                      dbus-1
                      dbus-glib-1
                  libsexy
                      gconf-2.0
                      gdk-2.0
                      gdk-pixbuf-2.0
                  ) were not met:

No package 'libgnome-menu' found
No package 'librsvg-2.0' found
No package 'libgtop-2.0' found
No package 'libsexy' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DEPS_CFLAGS
and DEPS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

inxsible@inxsible:~/Installs/avant/awn-extras/awn-applets/awn-core-applets$

Can someone tell me how to do that?

#1022

spaceship.rodeo said: Anyone? Trying to start it in the terminal yields this:

avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory

Try running "sudo ldconfig".

#1023

averagebeatboy said: There is an annoying white line on my avant-window-navigator does anyone happen to know how to get rid of it? Also, is there a way to add icons -- like the Terminal to the bar? One final question, cn I change the icons on that are on the bar already. If you can change the icons could someone tell me how?

Thanks,

Averagebeatboy

The white line is likely an applet failing to load, just remove the offending applet using awn-manager. To add icons, just drag them onto AWN or add them using awn-manager.

#1024

Inxsible said: I installed AWN from source in 64 bit Gutsy. When I try to follow the howto for awn-extras this is what I get

inxsible@inxsible:~/Installs/avant/awn-extras/awn-applets/awn-core-applets$ ./autogen.sh && make && sudo make install
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal 
/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy
libtoolize: `config.guess' exists: use `--force' to overwrite
libtoolize: `config.sub' exists: use `--force' to overwrite
libtoolize: `ltmain.sh' exists: use `--force' to overwrite
/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of AM_GCONF_SOURCE
autoreconf: running: /usr/bin/autoconf
autoreconf: running: /usr/bin/autoheader
autoreconf: running: automake --add-missing --copy --no-force
src/stacks/Makefile.am:4: whitespace following trailing backslash
autoreconf: Leaving directory `.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for gconftool-2... /usr/bin/gconftool-2
checking for intltool >= 0.34... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... configure: error: Package requirements (gtk+-2.0
                  awn
                  libwnck-1.0
                  libglade-2.0
                  libgnome-menu
                  gnome-desktop-2.0
                  librsvg-2.0
                  libgtop-2.0
                  glib-2.0
                      dbus-1
                      dbus-glib-1
                  libsexy
                      gconf-2.0
                      gdk-2.0
                      gdk-pixbuf-2.0
                  ) were not met:

No package 'libgnome-menu' found
No package 'librsvg-2.0' found
No package 'libgtop-2.0' found
No package 'libsexy' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DEPS_CFLAGS
and DEPS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

inxsible@inxsible:~/Installs/avant/awn-extras/awn-applets/awn-core-applets$

Can someone tell me how to do that?

you're just missing a few deps, this should fix it:

sudo apt-get install libsexy-dev libgtop2-dev librsvg2-dev libgnome-menu-dev
#1025

reacocard said: you're just missing a few deps, this should fix it:

sudo apt-get install libsexy-dev libgtop2-dev librsvg2-dev libgnome-menu-dev

aha !! The link that you point to, does not mention librsvg2-dev. it has librsvg-dev and when you try to install it says the package was not found. Maybe he hasn't updated his how to.

But what you suggested worked.

Thanks reaco !

#1026

Got Gutsy up and running a few days ago and just tried to get Avant running this morning. Problem is, when I run Avant with the terminal ( avant-window-navigator ) it only stays open as long as the terminal is open. Any help?

#1027

Alt+F2

avant-window-navigator

#1028

I got a fresh install of Gutsy, I installed following the how-to. The navigator opens and works fine, but the AWN manager won't open. It doesn't even leave any ouput in the shell. Any ideas how to fix it?

EDIT: Also, the preferences option after right-clicking the navigator won't work

#1029

CeeDub said: I got a fresh install of Gutsy, I installed following the how-to. The navigator opens and works fine, but the AWN manager won't open. It doesn't even leave any ouput in the shell. Any ideas how to fix it?

EDIT: Also, the preferences option after right-clicking the navigator won't work

I've only seen this problem once before, and it was not resolved successfully. My only suggestion is to try removing AWN and installing it a different way. Are you using KDE?

#1030

How do I turn off the top panel in Gnome?

#1031

reacocard said: I've only seen this problem once before, and it was not resolved successfully. My only suggestion is to try removing AWN and installing it a different way. Are you using KDE?

Yes, I am using kde. Do you suggest installing from source? another repo? or a .deb?

#1032

celticbhoy said: How do I turn off the top panel in Gnome?

right-click->delete panel

CeeDub said: Yes, I am using kde. Do you suggest installing from source? another repo? or a .deb?

use the method on my guide you didn't use before. so if you used the repo first, install from source, or if from source, the repo. be sure to completely remove your current install of AWN first.

The other case that this bug has come up in was also with KDE, so it could simply be an obscure bug with some aspect of KDE. Most (maybe all) of the AWN devs use Gnome, XFCE or some other GTK-based DE, so testing on KDE is very limited.

If awn-manager is still giving you trouble after the reinstall (or even now if you haven't removed it already), try running it like this:

python -v `which awn-manager`

and post the output (if any) here.

#1033

reacocard said:

use the method on my guide you didn't use before. so if you used the repo first, install from source, or if from source, the repo. be sure to completely remove your current install of AWN first.

The other case that this bug has come up in was also with KDE, so it could simply be an obscure bug with some aspect of KDE. Most (maybe all) of the AWN devs use Gnome, XFCE or some other GTK-based DE, so testing on KDE is very limited.

If awn-manager is still giving you trouble after the reinstall (or even now if you haven't removed it already), try running it like this:

python -v `which awn-manager`

and post the output (if any) here.

# installing zipimport hook
import zipimport # builtin
# installed zipimport hook
# /usr/lib/python2.5/site.pyc matches /usr/lib/python2.5/site.py
import site # precompiled from /usr/lib/python2.5/site.pyc
# /usr/lib/python2.5/os.pyc matches /usr/lib/python2.5/os.py
import os # precompiled from /usr/lib/python2.5/os.pyc
import posix # builtin
# /usr/lib/python2.5/posixpath.pyc matches /usr/lib/python2.5/posixpath.py
import posixpath # precompiled from /usr/lib/python2.5/posixpath.pyc
# /usr/lib/python2.5/stat.pyc matches /usr/lib/python2.5/stat.py
import stat # precompiled from /usr/lib/python2.5/stat.pyc
# /usr/lib/python2.5/UserDict.pyc matches /usr/lib/python2.5/UserDict.py
import UserDict # precompiled from /usr/lib/python2.5/UserDict.pyc
# /usr/lib/python2.5/copy_reg.pyc matches /usr/lib/python2.5/copy_reg.py
import copy_reg # precompiled from /usr/lib/python2.5/copy_reg.pyc
# /usr/lib/python2.5/types.pyc matches /usr/lib/python2.5/types.py
import types # precompiled from /usr/lib/python2.5/types.pyc
import _types # builtin
# /var/lib/python-support/python2.5/apport_python_hook.pyc matches /var/lib/python-support/python2.5/apport_python_hook.py
import apport_python_hook # precompiled from /var/lib/python-support/python2.5/apport_python_hook.pyc
# /usr/lib/python2.5/warnings.pyc matches /usr/lib/python2.5/warnings.py
import warnings # precompiled from /usr/lib/python2.5/warnings.pyc
# /usr/lib/python2.5/linecache.pyc matches /usr/lib/python2.5/linecache.py
import linecache # precompiled from /usr/lib/python2.5/linecache.pyc
import encodings # directory /usr/lib/python2.5/encodings
# /usr/lib/python2.5/encodings/__init__.pyc matches /usr/lib/python2.5/encodings/__init__.py
import encodings # precompiled from /usr/lib/python2.5/encodings/__init__.pyc
# /usr/lib/python2.5/codecs.pyc matches /usr/lib/python2.5/codecs.py
import codecs # precompiled from /usr/lib/python2.5/codecs.pyc
import _codecs # builtin
# /usr/lib/python2.5/encodings/aliases.pyc matches /usr/lib/python2.5/encodings/aliases.py
import encodings.aliases # precompiled from /usr/lib/python2.5/encodings/aliases.pyc
# /usr/lib/python2.5/encodings/utf_8.pyc matches /usr/lib/python2.5/encodings/utf_8.py
import encodings.utf_8 # precompiled from /usr/lib/python2.5/encodings/utf_8.pyc
Python 2.5.1 (r251:54863, Oct  5 2007, 13:36:32)
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
dlopen("/usr/lib/python2.5/lib-dynload/time.so", 2);
import time # dynamically loaded from /usr/lib/python2.5/lib-dynload/time.so
# /var/lib/python-support/python2.5/pygtk.pyc matches /var/lib/python-support/python2.5/pygtk.py
import pygtk # precompiled from /var/lib/python-support/python2.5/pygtk.pyc
# /usr/lib/python2.5/fnmatch.pyc matches /usr/lib/python2.5/fnmatch.py
import fnmatch # precompiled from /usr/lib/python2.5/fnmatch.pyc
# /usr/lib/python2.5/re.pyc matches /usr/lib/python2.5/re.py
import re # precompiled from /usr/lib/python2.5/re.pyc
# /usr/lib/python2.5/sre_compile.pyc matches /usr/lib/python2.5/sre_compile.py
import sre_compile # precompiled from /usr/lib/python2.5/sre_compile.pyc
import _sre # builtin
# /usr/lib/python2.5/sre_constants.pyc matches /usr/lib/python2.5/sre_constants.py
import sre_constants # precompiled from /usr/lib/python2.5/sre_constants.pyc
# /usr/lib/python2.5/sre_parse.pyc matches /usr/lib/python2.5/sre_parse.py
import sre_parse # precompiled from /usr/lib/python2.5/sre_parse.pyc
# /usr/lib/python2.5/glob.pyc matches /usr/lib/python2.5/glob.py
import glob # precompiled from /usr/lib/python2.5/glob.pyc
import gtk # directory /var/lib/python-support/python2.5/gtk-2.0/gtk
# /var/lib/python-support/python2.5/gtk-2.0/gtk/__init__.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gtk/__init__.py
import gtk # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gtk/__init__.pyc
import gobject # directory /var/lib/python-support/python2.5/gtk-2.0/gobject
# /var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.py
import gobject # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.pyc
# /var/lib/python-support/python2.5/gtk-2.0/gobject/constants.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gobject/constants.py
import gobject.constants # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gobject/constants.pyc
dlopen("/var/lib/python-support/python2.5/gtk-2.0/gobject/_gobject.so", 2);
import gobject._gobject # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/gobject/_gobject.so
# /var/lib/python-support/python2.5/gtk-2.0/gobject/propertyhelper.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gobject/propertyhelper.py
import gobject.propertyhelper # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gobject/propertyhelper.pyc
dlopen("/var/lib/python-support/python2.5/gtk-2.0/gtk/_gtk.so", 2);
import cairo # directory /usr/lib/python2.5/site-packages/cairo
# /usr/lib/python2.5/site-packages/cairo/__init__.pyc matches /usr/lib/python2.5/site-packages/cairo/__init__.py
import cairo # precompiled from /usr/lib/python2.5/site-packages/cairo/__init__.pyc
dlopen("/usr/lib/python2.5/site-packages/cairo/_cairo.so", 2);
import cairo._cairo # dynamically loaded from /usr/lib/python2.5/site-packages/cairo/_cairo.so
dlopen("/var/lib/python-support/python2.5/gtk-2.0/pango.so", 2);
import pango # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/pango.so
dlopen("/var/lib/python-support/python2.5/gtk-2.0/atk.so", 2);
import atk # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/atk.so
dlopen("/var/lib/python-support/python2.5/gtk-2.0/pangocairo.so", 2);
import pangocairo # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/pangocairo.so
import gtk._gtk # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/gtk/_gtk.so
# /var/lib/python-support/python2.5/gtk-2.0/gtk/_lazyutils.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gtk/_lazyutils.py
import gtk._lazyutils # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gtk/_lazyutils.pyc
# /var/lib/python-support/python2.5/gtk-2.0/gtk/deprecation.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gtk/deprecation.py
import gtk.deprecation # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gtk/deprecation.pyc
# clear __builtin__._
# clear sys.path
# clear sys.argv
# clear sys.ps1
# clear sys.ps2
# clear sys.exitfunc
# clear sys.exc_type
# clear sys.exc_value
# clear sys.exc_traceback
# clear sys.last_type
# clear sys.last_value
# clear sys.last_traceback
# clear sys.path_hooks
# clear sys.path_importer_cache
# clear sys.meta_path
# restore sys.stdin
# restore sys.stdout
# restore sys.stderr
# cleanup __main__
# cleanup[1] site
# cleanup[1] encodings
# cleanup[1] gtk
# cleanup[1] sre_constants
# cleanup[1] _codecs
# cleanup[1] zipimport
# cleanup[1] encodings.utf_8
# cleanup[1] pygtk
# cleanup[1] gtk._gtk
# cleanup[1] codecs
# cleanup[1] _types
# cleanup[1] gtk._lazyutils
# cleanup[1] cairo
# cleanup[1] signal
# cleanup[1] apport_python_hook
# cleanup[1] posix
# cleanup[1] encodings.aliases
# cleanup[1] time
# cleanup[1] exceptions
# cleanup[1] cairo._cairo
# cleanup[1] gtk.deprecation
# cleanup[1] gtk.gdk
# cleanup[1] warnings
# cleanup[1] glob
# cleanup[1] fnmatch
# cleanup[1] types
# cleanup[1] linecache
# cleanup[1] re
# cleanup[1] sre_parse
# cleanup[1] sre_compile
# cleanup[1] _sre
# cleanup[2] gobject._gobject
# cleanup[2] copy_reg
# cleanup[2] gobject.constants
# cleanup[2] atk
# cleanup[2] gobject
# cleanup[2] posixpath
# cleanup[2] gobject.propertyhelper
# cleanup[2] os.path
# cleanup[2] stat
# cleanup[2] UserDict
# cleanup[2] pango
# cleanup[2] pangocairo
# cleanup[2] os
# cleanup sys
# cleanup __builtin__
# cleanup ints: 238 unfreed ints in 6 out of 6 blocks
# cleanup floats: 1 unfreed float in 1 out of 1 block

I've got lots of code but no clue

#1034

Just tried installing on Gutsy, following the first set of directions on the first page. I get the following message at the end of the install:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libwnck18 (>= 2.15.90) but it is not installable Depends: libawn-bzr (= 0.1.2-bzr78-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libawn-bzr but it is not going to be installed E: Broken packages

So, what can I do to fix the broken packages (and I'm sort of new at this, so please keep it as simple as possible, or don't mind if I come back with a million more questions:))

#1035

CeeDub said:

installing zipimport hook

import zipimport # builtin

installed zipimport hook

/usr/lib/python2.5/site.pyc matches /usr/lib/python2.5/site.py

import site # precompiled from /usr/lib/python2.5/site.pyc

/usr/lib/python2.5/os.pyc matches /usr/lib/python2.5/os.py

import os # precompiled from /usr/lib/python2.5/os.pyc import posix # builtin

/usr/lib/python2.5/posixpath.pyc matches /usr/lib/python2.5/posixpath.py

import posixpath # precompiled from /usr/lib/python2.5/posixpath.pyc

/usr/lib/python2.5/stat.pyc matches /usr/lib/python2.5/stat.py

import stat # precompiled from /usr/lib/python2.5/stat.pyc

/usr/lib/python2.5/UserDict.pyc matches /usr/lib/python2.5/UserDict.py

import UserDict # precompiled from /usr/lib/python2.5/UserDict.pyc

/usr/lib/python2.5/copy_reg.pyc matches /usr/lib/python2.5/copy_reg.py

import copy_reg # precompiled from /usr/lib/python2.5/copy_reg.pyc

/usr/lib/python2.5/types.pyc matches /usr/lib/python2.5/types.py

import types # precompiled from /usr/lib/python2.5/types.pyc import _types # builtin

/var/lib/python-support/python2.5/apport_python_hook.pyc matches /var/lib/python-support/python2.5/apport_python_hook.py

import apport_python_hook # precompiled from /var/lib/python-support/python2.5/apport_python_hook.pyc

/usr/lib/python2.5/warnings.pyc matches /usr/lib/python2.5/warnings.py

import warnings # precompiled from /usr/lib/python2.5/warnings.pyc

/usr/lib/python2.5/linecache.pyc matches /usr/lib/python2.5/linecache.py

import linecache # precompiled from /usr/lib/python2.5/linecache.pyc import encodings # directory /usr/lib/python2.5/encodings

/usr/lib/python2.5/encodings/__init__.pyc matches /usr/lib/python2.5/encodings/__init__.py

import encodings # precompiled from /usr/lib/python2.5/encodings/__init__.pyc

/usr/lib/python2.5/codecs.pyc matches /usr/lib/python2.5/codecs.py

import codecs # precompiled from /usr/lib/python2.5/codecs.pyc import _codecs # builtin

/usr/lib/python2.5/encodings/aliases.pyc matches /usr/lib/python2.5/encodings/aliases.py

import encodings.aliases # precompiled from /usr/lib/python2.5/encodings/aliases.pyc

/usr/lib/python2.5/encodings/utf_8.pyc matches /usr/lib/python2.5/encodings/utf_8.py

import encodings.utf_8 # precompiled from /usr/lib/python2.5/encodings/utf_8.pyc Python 2.5.1 (r251:54863, Oct 5 2007, 13:36:32) [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. dlopen("/usr/lib/python2.5/lib-dynload/time.so", 2); import time # dynamically loaded from /usr/lib/python2.5/lib-dynload/time.so

/var/lib/python-support/python2.5/pygtk.pyc matches /var/lib/python-support/python2.5/pygtk.py

import pygtk # precompiled from /var/lib/python-support/python2.5/pygtk.pyc

/usr/lib/python2.5/fnmatch.pyc matches /usr/lib/python2.5/fnmatch.py

import fnmatch # precompiled from /usr/lib/python2.5/fnmatch.pyc

/usr/lib/python2.5/re.pyc matches /usr/lib/python2.5/re.py

import re # precompiled from /usr/lib/python2.5/re.pyc

/usr/lib/python2.5/sre_compile.pyc matches /usr/lib/python2.5/sre_compile.py

import sre_compile # precompiled from /usr/lib/python2.5/sre_compile.pyc import _sre # builtin

/usr/lib/python2.5/sre_constants.pyc matches /usr/lib/python2.5/sre_constants.py

import sre_constants # precompiled from /usr/lib/python2.5/sre_constants.pyc

/usr/lib/python2.5/sre_parse.pyc matches /usr/lib/python2.5/sre_parse.py

import sre_parse # precompiled from /usr/lib/python2.5/sre_parse.pyc

/usr/lib/python2.5/glob.pyc matches /usr/lib/python2.5/glob.py

import glob # precompiled from /usr/lib/python2.5/glob.pyc import gtk # directory /var/lib/python-support/python2.5/gtk-2.0/gtk

/var/lib/python-support/python2.5/gtk-2.0/gtk/__init__.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gtk/__init__.py

import gtk # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gtk/__init__.pyc import gobject # directory /var/lib/python-support/python2.5/gtk-2.0/gobject

/var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.py

import gobject # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.pyc

/var/lib/python-support/python2.5/gtk-2.0/gobject/constants.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gobject/constants.py

import gobject.constants # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gobject/constants.pyc dlopen("/var/lib/python-support/python2.5/gtk-2.0/gobject/_gobject.so", 2); import gobject._gobject # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/gobject/_gobject.so

/var/lib/python-support/python2.5/gtk-2.0/gobject/propertyhelper.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gobject/propertyhelper.py

import gobject.propertyhelper # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gobject/propertyhelper.pyc dlopen("/var/lib/python-support/python2.5/gtk-2.0/gtk/_gtk.so", 2); import cairo # directory /usr/lib/python2.5/site-packages/cairo

/usr/lib/python2.5/site-packages/cairo/__init__.pyc matches /usr/lib/python2.5/site-packages/cairo/__init__.py

import cairo # precompiled from /usr/lib/python2.5/site-packages/cairo/__init__.pyc dlopen("/usr/lib/python2.5/site-packages/cairo/_cairo.so", 2); import cairo._cairo # dynamically loaded from /usr/lib/python2.5/site-packages/cairo/_cairo.so dlopen("/var/lib/python-support/python2.5/gtk-2.0/pango.so", 2); import pango # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/pango.so dlopen("/var/lib/python-support/python2.5/gtk-2.0/atk.so", 2); import atk # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/atk.so dlopen("/var/lib/python-support/python2.5/gtk-2.0/pangocairo.so", 2); import pangocairo # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/pangocairo.so import gtk._gtk # dynamically loaded from /var/lib/python-support/python2.5/gtk-2.0/gtk/_gtk.so

/var/lib/python-support/python2.5/gtk-2.0/gtk/_lazyutils.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gtk/_lazyutils.py

import gtk._lazyutils # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gtk/_lazyutils.pyc

/var/lib/python-support/python2.5/gtk-2.0/gtk/deprecation.pyc matches /var/lib/python-support/python2.5/gtk-2.0/gtk/deprecation.py

import gtk.deprecation # precompiled from /var/lib/python-support/python2.5/gtk-2.0/gtk/deprecation.pyc

clear __builtin__._

clear sys.path

clear sys.argv

clear sys.ps1

clear sys.ps2

clear sys.exitfunc

clear sys.exc_type

clear sys.exc_value

clear sys.exc_traceback

clear sys.last_type

clear sys.last_value

clear sys.last_traceback

clear sys.path_hooks

clear sys.path_importer_cache

clear sys.meta_path

restore sys.stdin

restore sys.stdout

restore sys.stderr

cleanup __main__

cleanup[1] site

cleanup[1] encodings

cleanup[1] gtk

cleanup[1] sre_constants

cleanup[1] _codecs

cleanup[1] zipimport

cleanup[1] encodings.utf_8

cleanup[1] pygtk

cleanup[1] gtk._gtk

cleanup[1] codecs

cleanup[1] _types

cleanup[1] gtk._lazyutils

cleanup[1] cairo

cleanup[1] signal

cleanup[1] apport_python_hook

cleanup[1] posix

cleanup[1] encodings.aliases

cleanup[1] time

cleanup[1] exceptions

cleanup[1] cairo._cairo

cleanup[1] gtk.deprecation

cleanup[1] gtk.gdk

cleanup[1] warnings

cleanup[1] glob

cleanup[1] fnmatch

cleanup[1] types

cleanup[1] linecache

cleanup[1] re

cleanup[1] sre_parse

cleanup[1] sre_compile

cleanup[1] _sre

cleanup[2] gobject._gobject

cleanup[2] copy_reg

cleanup[2] gobject.constants

cleanup[2] atk

cleanup[2] gobject

cleanup[2] posixpath

cleanup[2] gobject.propertyhelper

cleanup[2] os.path

cleanup[2] stat

cleanup[2] UserDict

cleanup[2] pango

cleanup[2] pangocairo

cleanup[2] os

cleanup sys

cleanup __builtin__

cleanup ints: 238 unfreed ints in 6 out of 6 blocks

cleanup floats: 1 unfreed float in 1 out of 1 block


I've got lots of code but  no clue

ok, we think the problem is that gtk.glade isn't installed, so try this:

sudo apt-get install python-glade2


> **ebeckhusen said:**
> Just tried installing on Gutsy, following the first set of directions on the first page.  I get the following message at the end of the install:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libwnck18 (>= 2.15.90) but it is not installable
                              Depends: libawn-bzr (= 0.1.2-bzr78-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libawn-bzr but it is not going to be installed
E: Broken packages


So, what can I do to fix the broken packages (and I'm sort of new at this, so please keep it as simple as possible, or don't mind if I come back with a million more questions:))

be sure to use the gutsy repo, not the feisty one.
#1036

reacocard said:

be sure to use the gutsy repo, not the feisty one.:oops:...Sorry, still new at this and hadn't noticed I'd copied the wrong repo. Thanks for the help.

#1037

ok, we think the problem is that gtk.glade isn't installed, so try this:

sudo apt-get install python-glade2

I installed python-glade2. Now I'm getting an output:

saulback@saulback-laptop:~$ awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 40, in <module>
    import gnomedesktop
  File "/var/lib/python-support/python2.5/gtk-2.0/gnomedesktop/__init__.py", line 1, in <module>
    from _gnomedesktop import *
ImportError: could not import gnomevfs

Does this mean I need to use gnome for this to work?

#1038

CeeDub said: I installed python-glade2. Now I'm getting an output:

saulback@saulback-laptop:~$ awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 40, in <module>
    import gnomedesktop
  File "/var/lib/python-support/python2.5/gtk-2.0/gnomedesktop/__init__.py", line 1, in <module>
    from _gnomedesktop import *
ImportError: could not import gnomevfs

Does this mean I need to use gnome for this to work?

just a few libraries from gnome. This should fix this error:

sudo apt-get install python-gnome2-desktop
#1039

CeeDub said: I installed python-glade2. Now I'm getting an output:

saulback@saulback-laptop:~$ awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 40, in <module>
    import gnomedesktop
  File "/var/lib/python-support/python2.5/gtk-2.0/gnomedesktop/__init__.py", line 1, in <module>
    from _gnomedesktop import *
ImportError: could not import gnomevfs

Does this mean I need to use gnome for this to work?

You can also install the destkop-agnostic branch. More info in the awn forum.

#1040

Inxsible said: aha !! The link that you point to, does not mention librsvg2-dev. it has librsvg-dev and when you try to install it says the package was not found. Maybe he hasn't updated his how to.

But what you suggested worked.

Thanks reaco !

I thinks it's fixed I checked it, if you could do this, take a look there and tell me if everything is OK.

#1041

how do I get firefox and such to go on AWN? I try dragging and dropping but it just doesnt do anything...and where can I install other ones?

#1042

oniltonmaciel said: I thinks it's fixed I checked it, if you could do this, take a look there and tell me if everything is OK.

The whole look and feel of the web page has changed now. When I had a last look at it, it was just a few lines of code at the top of the page. Now it looks more like a wiki page -- which is good :)

about the librsvg2, yeah i see its been updated.

I especially like the way all the applets have been described and also noted whether they are stable or not.

In that list, a 'Stack' has been described as a 'File Browser'. I compiled from source, and I have both the applets, but 'Stack' doesn't work for me, but the 'File Browser' does. 'File Browser' is also not listed on the wiki page.

#1043

infamous16 said: how do I get firefox and such to go on AWN? I try dragging and dropping but it just doesnt do anything...and where can I install other ones?

Try using AWN-manager to add launchers instead. What do you mean by 'other ones'?

#1044

reacocard said: just a few libraries from gnome. This should fix this error:

sudo apt-get install python-gnome2-desktop

I tried installing python-gnome2-desktop, but it seemed to already be installed. I noticed another package called python-gnome2. I gave that a try and it seemed to do the trick. Thanks for all the help.

#1045

I added a compiz "advanced desktop settings" shortcut icon to AWN, but now I cant get rid of it (Its the icon that looks like a screen with a little wrench on the bottom right corner). Ive gone into the manager and tried removing it there, to no avail. I tried to right click on it and close it, but it does not allow me to do that either. When I roll over the icon it just says "Desktop" instead of "Advanced Desktop Settings Manager". I tried uninstalling AWN using the synaptic package manager and reinstalling it, but it still showed up. Any ideas on how to get rid of this icon?

UPDATE: I seemed to have fixed it, clicked "always on top" and logged out and logged back in and it was gone.

#1046

joetaxpayer said: Alt+F2

avant-window-navigator

D'oh....totally forgot about that! Thanks!

#1047

DownTown22 said: D'oh....totally forgot about that! Thanks!

It's on Applications > Accesories > AWN too.

Looks great. :guitar:

#1048

How are people getting these new applets? My Gutsy's reps are set to the bzr yet I never get updated applets and what not :(.

#1049

I agree...

Also does anyone know about the Pidgin (or GAIM) add-on, the one that makes the icon move depending on if your signed on, get a message, etc.

#1050

I personally just download the plugins myself. ``` bzr checkout http://bazaar.launchpad.net/%7Eawn-extras/awn-extras/trunk/

From here, all I have to do is:```
cd trunk/
cd awn-plugins/
ls
cd pidgin
make && sudo checkinstall -D --pkgname='pidgin-plugin-awn'

And, tada! You're done. You may now enable "AWN Plugin" in Pidgin's plugins menu.

Hope that helps,

Megaqwerty

EDIT: This procedure will work for almost all (if not all) of the other plugins kept in that bzr branch. Just change ``` --pkgname='pidgin-plugin-awn' to whatever you want the end result package name to be. Also, if at any time, you want to check for updated plugins, just go back to the "trunk" directory, and do bzr update


EDIT2: For installing the awn-core-applets, the maintainers were nice enough to already include a debian directory so that we create a proper .deb with merely two commands (navigating to the core-applets directory excluded.) ```
sudo dpkg-buildpackage
dpkg-buildpackage -rfakeroot #if you have fakeroot installed, this line will allow you to build a package without being root
sudo dpkg -i ../awn-core-applets_*.deb

To install Python applets, you need to grab the bazaar branch from ``` bzr checkout http://bazaar.launchpad.net/%7Eim-tehk/awn-py-applets/trunk/

and merely copy the applet you want into **~/.config/awn/applets** i.e. ```
cd trunk/Media-Control/media-control/
cp -r * ~/.config/awn/applets
#1051

Depressed Man said: How are people getting these new applets? My Gutsy's reps are set to the bzr yet I never get updated applets and what not :(.

I haven't updated them in a while, I kinda don't want to move up from here until I get a full stable package up, but if there are no objections I can run the update anyway.

#1052

you guys should check out kiba-dock too, which is also a dock for gnome, and has basically all of the awn features and a few more (like parabolic zoom) and a lot more customizability, like changing sizes, colours, and effects on everything.

http://www.kiba-dock.org/ then click wiki > how to install > ubuntu for repos method

or

http://ubuntuforums.org/showthread.php?t=554127 to build from source

#1053

duncan.hawthorne said: you guys should check out kiba-dock too, which is also a dock for gnome, and has basically all of the awn features and a few more (like parabolic zoom) and a lot more customizability, like changing sizes, colours, and effects on everything.

http://www.kiba-dock.org/ then click wiki > how to install > ubuntu for repos method

or

http://ubuntuforums.org/showthread.php?t=554127 to build from source Kiba is a memory hog however.

#1054

Kiba dock's .debs haven't been updated in a while though.

#1055

Hey guys. IM having the same issue as Thanawho. That launcher just won't go away. As soon as I set it to be ALWAYS ON TOP, it goes away. Then when I open up something else, it comes back.

also, i cannot delete any launchers via the AWN preferences. This is for any application i've added. i can ONLY add and not REMOVE.

any ideas out there?

thanks.

EDIT: Ok, so actually Thanawho's suggestion works perfectly. For me, I RIGHT CLICK on the DESKTOP icon and select ALWAYS ON TOP. The icon will then disappear and immediately you have to CLOSE Avant-window-navigator. and RE-OPEN. It all went well. the dock started WITHOUT that icon and now when I RIGHT CLICK on any of the launchers, i get the option to EDIT or REMOVE. I've tested it on multiple launchers and they all work.

Hope that helps anyone. Thanks again Thanawho for the tip.

#1056

/edit/ Wrong thread

#1057

I'm having a problem that i see that some others in the thread had too. when i try to install the progrm this is what i get:

Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libwnck18 (>= 2.15.90) but it is not installable Depends: libawn-bzr (= 0.1.2-bzr78-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libawn-bzr but it is not going to be installed E: Broken packages

I understand taht others fixed this issue but everything went over my head. im new to ubuntu 7.10 and i got compiz-fusion up and running so this is my next hope. what do i need to do to fix this?

#1058

I managed to get this all working, but some of the applets dont work. to me this is not usefull without the Sys-tray applet working. Can anyone give me advice on how to get this to work.

#1059

jawknee530 said: I'm having a problem that i see that some others in the thread had too. when i try to install the progrm this is what i get:

Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libwnck18 (>= 2.15.90) but it is not installable Depends: libawn-bzr (= 0.1.2-bzr78-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libawn-bzr but it is not going to be installed E: Broken packages

I understand taht others fixed this issue but everything went over my head. im new to ubuntu 7.10 and i got compiz-fusion up and running so this is my next hope. what do i need to do to fix this?

celticbhoy said: I managed to get this all working, but some of the applets dont work. to me this is not usefull without the Sys-tray applet working. Can anyone give me advice on how to get this to work.

Use the gutsy repo, not the feisty one.

#1060

The sys applet requires the gnome sys applet to be turned off (remove the applet). Then reboot GDM and then it should work.

#1061

I get the following error when trying to run awn-manager:

/usr/share/avant-window-navigator/awn-manager/awnPreferences.py:182: DeprecationWarning: raising a string exception is deprecated raise "\nKey: "+key+" isn't set.\nRestarting AWN usually solves this issue\n" Traceback (most recent call last): File "/usr/bin/awn-manager", line 199, in <module> awnmanager = AwnManager() File "/usr/bin/awn-manager", line 100, in __init__ self.prefManager = awnPreferences(self.wTree) File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 162, in __init__ self.setup_color(TITLE_TEXT_COLOR, self.wTree.get_widget("textcolor")) File "/usr/share/avant-window-navigator/awn-manager/awnPreferences.py", line 182, in setup_color raise "\nKey: "+key+" isn't set.\nRestarting AWN usually solves this issue\n"

Key: /apps/avant-window-navigator/title/text_color isn't set. Restarting AWN usually solves this issue

Also, I can't find affinity in the repos.

Any help, I would appreciate it. I am running 7.10 64

#1062

how do I turn off gnome sys applet ???

#1063

celticbhoy said: how do I turn off gnome sys applet ???

Right click on the applet, the remove.

#1064

I was just wondering if there's an updated version of awn I can get anywhere?

I use it with awn-curves, and I randomly get seg faults in awn when an icon does the notification flashing.

#1065

Vadi said: I was just wondering if there's an updated version of awn I can get anywhere?

I use it with awn-curves, and I randomly get seg faults in awn when an icon does the notification flashing.

could you email me a screenshot or video or something? People have mentioned this but I have no idea what they are talking about and that might help.:)

#1066

Vadi said: I was just wondering if there's an updated version of awn I can get anywhere?

I use it with awn-curves, and I randomly get seg faults in awn when an icon does the notification flashing.

Install from source. There is no newer packaged version.

#1067

OK, I actually read the wiki and still have problems. AWN shows under Accessories but when I try to use it, nothing happens. So, a post said to try avant-window-navigator & which tells me 'error while loading shared libraries: libawn.so.0" cannot open shared object file: No such file or directory'. So, what's a newb to do next?

#1068

pcostanza said: OK, I actually read the wiki and still have problems. AWN shows under Accessories but when I try to use it, nothing happens. So, a post said to try avant-window-navigator & which tells me 'error while loading shared libraries: libawn.so.0" cannot open shared object file: No such file or directory'.

So, what's a newb to do next?

try 'sudo ldconfig'

if that doesn't work, completely remove and reinstall awn.

#1069

reacocard said: try 'sudo ldconfig'

if that doesn't work, completely remove and reinstall awn.

Dang, you're good! Worked a treat. Thanks for the quick reply.

#1070

Hello.

I'm trying to get affinity working, I compiled it from source with no errors. Both tracker and beagle installed and their respective development packages as well.

When I run affinity it starts up fine, but after I type 1-2 characters it freezes and I have to kill the process..

I run it from the terminal and here is the error it outputs:

Desktop Search Engine : Tracker

** (affinity:16480): WARNING **: Invalid borders specified for theme pixmap:
        /home/burbruee/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Frame-Gap/frame1.png,
borders don't fit within the image
Searching : b

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

Oh, and I just installed and configured mac4lin theme earlier this night.. It seems to complain about the gtk-theme. But I get the same error even if I change back to human-look.

Thanks.

#1071

Burbruee said: Hello.

I'm trying to get affinity working, I compiled it from source with no errors. Both tracker and beagle installed and their respective development packages as well.

When I run affinity it starts up fine, but after I type 1-2 characters it freezes and I have to kill the process..

I run it from the terminal and here is the error it outputs:

Desktop Search Engine : Tracker

** (affinity:16480): WARNING **: Invalid borders specified for theme pixmap:
        /home/burbruee/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Frame-Gap/frame1.png,
borders don't fit within the image
Searching : b

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

(affinity:16480): GLib-CRITICAL **: g_markup_escape_text: assertion `text != NULL' failed

Oh, and I just installed and configured mac4lin theme earlier this night.. It seems to complain about the gtk-theme. But I get the same error even if I change back to human-look.

Thanks.

Affinity development has been stalled for several months. I do not support or endorse it any longer. I cannot help you with this issue.

#1072

Hi, I have 2 issues with your avant-window-navigator package on gusty:

  • The stacks applet crashes about a random time.
  • The task manager don't renember the custom icons (it did with your feisty package).

Last point just to have a clrification about the version numbers, your package is 0.1.2-2bzr (or something close) and there is now a 0.2.0 version and maybe a 0.2.*bzr ?

thanks :)

#1073

reacocard said: Affinity development has been stalled for several months. I do not support or endorse it any longer. I cannot help you with this issue.

That's alright, I just tried Beagle alone instead and it works great. :D ( For some reason I couldn't make tracker scan my /media folder )

#1074

ayoli said: Hi,

I have 2 issues with your avant-window-navigator package on gusty:

  • The stacks applet crashes about a random time.
  • The task manager don't renember the custom icons (it did with your feisty package).

Last point just to have a clrification about the version numbers, your package is 0.1.2-2bzr (or something close) and there is now a 0.2.0 version and maybe a 0.2.*bzr ?

thanks :)

The stacks applet is no longer actively supported by its creator. He forked the project and is rewriting it in python, which will replace the old one. It's called filebrowser (I think?). Try using that one instead (still behind in features but it won't crash on you).

#1075

Depressed Man said: The stacks applet is no longer actively supported by its creator. He forked the project and is rewriting it in python, which will replace the old one. It's called filebrowser (I think?). Try using that one instead (still behind in features but it won't crash on you).

Thanks for the reply, but I don't have (I mean reacocard's package) a filebrowser applet. I guess I have to wait for a (soon ?) major update or compile it myself (but I'm lazy, I prefer use a maintained package)

#1076

Depressed Man said: The stacks applet is no longer actively supported by its creator. He forked the project and is rewriting it in python, which will replace the old one. It's called filebrowser (I think?). Try using that one instead (still behind in features but it won't crash on you).

It's the other way around. Filebrowser is the old one, stacks is the rewrite.

#1077

ayoli said: Hi,

I have 2 issues with your avant-window-navigator package on gusty:

  • The stacks applet crashes about a random time.
  • The task manager don't renember the custom icons (it did with your feisty package).

Last point just to have a clrification about the version numbers, your package is 0.1.2-2bzr (or something close) and there is now a 0.2.0 version and maybe a 0.2.*bzr ?

thanks :)

package version for the latest on gutsy should be 0.2.0-bzr141-1 (64bit may not be up-to-date yet)

stacks applet is a complete rewrite from the old one, there's a thread on the AWN forums for reporting bugs in it, post there and I'm sure Timon will help you.

as for the task manager issue, you mean for setting a different icon on a launcher? Try doing that through awn-manager instead of via right-click.

#1078

reacocard said: package version for the latest on gutsy should be 0.2.0-bzr141-1 (64bit may not be up-to-date yet)

stacks applet is a complete rewrite from the old one, there's a thread on the AWN forums for reporting bugs in it, post there and I'm sure Timon will help you.

as for the task manager issue, you mean for setting a different icon on a launcher? Try doing that through awn-manager instead of via right-click.

Thanks for the reply. For the icons I m not talking about launcher icons but task manager icon (ie: icon for app that is not in launchers or have already an instance open).

#1079

ayoli said: Thanks for the reply.

For the icons I m not talking about launcher icons but task manager icon (ie: icon for app that is not in launchers or have already an instance open).

ah, never knew awn could change that. makes sense that it wouldn't though, trying to keep track of what icon is associated with what windows would be tricky. maybe they just came to that conclusion and removed it.

#1080

I think you can change the icons, like I changed my Thunderbird and Office icons. But the logic matching I think it uses is weird. Because if I open a file that's not blank sometimes it'll default to the older icons. But if I open it to say a blank document then it's the icon I choose. Same for Thunderbird, it's set to remember whatever folder I was in last time. So if I was in my gmail account it remembers the icon, but let's say I left it on my Maryland account. It defaults to the old Thunderbird icon.

#1081

I'm still pretty new to Linux... By adding the Gutsy line to my repositories, will they check for updates? I do have the update manager look for updates daily.

#1082

Samanathon said: I'm still pretty new to Linux... By adding the Gutsy line to my repositories, will they check for updates? I do have the update manager look for updates daily.

It will :)

#1083

Could you please update the 64-bit repository? I am having some trouble with my installation and I believe this could solve it.

Thanks!

#1084

fluxxball said: Could you please update the 64-bit repository? I am having some trouble with my installation and I believe this could solve it.

Thanks!

I'll ping tgm4883 to do a rebuild for 64bit.

#1085

i have use kubuntu gutsy and i am install avant from repository but i have one problem : when write on shell awn-manager i have this error

awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 41, in <module>
    import gnomedesktop
  File "/var/lib/python-support/python2.5/gtk-2.0/gnomedesktop/__init__.py", line 1, in <module>
    from _gnomedesktop import *

:confused:

#1086

maxfact said: i have use kubuntu gutsy and i am install avant from repository

but i have one problem : when write on shell awn-manager i have this error

awn-manager
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 41, in <module>
    import gnomedesktop
  File "/var/lib/python-support/python2.5/gtk-2.0/gnomedesktop/__init__.py", line 1, in <module>
    from _gnomedesktop import *

:confused:

try:

sudo apt-get install python-gnome2-desktop python-gnome2-extras 
#1087

I hate to ask this, because I bet there is a super obvious answer to this, but ... how do I remove the "regular" Gnome panel bar at the bottom? :) AWN is "over it". (Not just move it elsewhere, but turn it off?)

Installing from the repo (64 bit version) in Gutsy worked flawless. Thank you for offering this! I do notice an error message in the terminal (if started from there) when I hover over the icons:

[I] (avant-window-navigator:15028): CRITICAL : awn_task_win_enter_out: assertion `AWN_IS_TASK(task)' failed [/I]

It does not hinder functionality, though.

Also, is there something "prettier" than the regular Gnome panel at the top? I actually never dealt with eye candy beyond Compiz Fusion, but my latest desktop has a 8800GTS/640 and 3 GB RAM, so I figured I might as well add *some* stuff to prevent the video card from falling asleep. ;)

#1088

mivo said: I hate to ask this, because I bet there is a super obvious answer to this, but ... how do I remove the "regular" Gnome panel bar at the bottom? :) AWN is "over it". (Not just move it elsewhere, but turn it off?)

Installing from the repo (64 bit version) in Gutsy worked flawless. Thank you for offering this! I do notice an error message in the terminal (if started from there) when I hover over the icons:

[I] (avant-window-navigator:15028): CRITICAL : awn_task_win_enter_out: assertion `AWN_IS_TASK(task)' failed [/I]

It does not hinder functionality, though.

Also, is there something "prettier" than the regular Gnome panel at the top? I actually never dealt with eye candy beyond Compiz Fusion, but my latest desktop has a 8800GTS/640 and 3 GB RAM, so I figured I might as well add *some* stuff to prevent the video card from falling asleep. ;)

To remove the bottom panel, just right click on it and choose "Delete This Panel".

Also, the default panels can be spiced up a bit...I've tweaked mine quite a bit and am happy with the results: screenshot

#1089

Thanks! I could have sworn I clicked there and only saw options to move it to other edges of the screen. But sure enough, it's there (and now gone!). Also downloaded the "Moomex" theme from gnome-looks.org, which goes nicely with AWN. Oh, and Screenlets -- which are mostly useless, but really pretty. ;)

#1090

Anyone know of a fix for this?

$ avant-window-navigator
avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory

Thanks!

#1091

xIke said: Anyone know of a fix for this?

$ avant-window-navigator
avant-window-navigator: error while loading shared libraries: libwnck-1.so.18: cannot open shared object file: No such file or directory

Thanks!

make sure you're using the gutsy repos if you're on gutsy, and do

sudo ldconfig
#1092

@reacocard:

Yeah, did both of those. I just went ahead and compiled it from source and it works great that way. Thanks.

#1093

Anyone know how to install the pidgin applet? Can't figure it out for the life of me. The make file throws out a million errors I've never even seen before. Also, how do I install the network manager applet?

#1094

There was just an update for the 64-bit version -- thank you! :)

One problem I have now is that the trash bin applet produces a tiny icon (about the size of a sys tray icon) in my bar. It is sort of cute, but ... can this be fixed? ;)

Also, drag & drop of launchers on the AWN bar only makes them boot-resistant if they remain on the desktop as well. If I delete them on the desktop, they are gone the next time I restart. "Expected behaviour" would be that they are "saved" independently of the desktop launcher, I think?

I really enjoy AWN. Thank you for the effort and the repos!

#1095

mivo said: There was just an update for the 64-bit version -- thank you! :)

One problem I have now is that the trash bin applet produces a tiny icon (about the size of a sys tray icon) in my bar. It is sort of cute, but ... can this be fixed? ;)

Also, drag & drop of launchers on the AWN bar only makes them boot-resistant if they remain on the desktop as well. If I delete them on the desktop, they are gone the next time I restart. "Expected behaviour" would be that they are "saved" independently of the desktop launcher, I think?

I really enjoy AWN. Thank you for the effort and the repos!

awn just saves the location you copied the launcher from, so you'll have to put the launchers somewhere more permanent than drag them on.

As for the trash, that could be because awn-core-applets hasn't been updated for 64bit yet, we've been having a few build issues. Hopefully we'll get those sorted out and the next update will fix that problem.

#1096

I've been trying to fix the tiny trash bin, but no luck. It is fully functional, just small -- and size does matter for eye candy. ;) Thanks for looking into it.

For the launchers, I just copied them from /usr/share/applications/. This didn't work for a couple of Windows programs that are started by Wine, but I just made a folder on the desktop and put them in there, and then dragged them on the AWN bar. This worked. (One desktop launcher for a Python script refuses to be added to the bar, no matter where it is, but it's late, so I'll fiddle some more with this tomorrow.)

#1097

thanks said: Anyone know how to install the pidgin applet? Can't figure it out for the life of me. The make file throws out a million errors I've never even seen before. Also, how do I install the network manager applet?

I didn't make it, but the MactoLin transformation pack includes a compiled version of it. From there you just copy it to the ~/.purple/plugins folder and enable it in Pidgin. Then create a launcher on AWN for Pidgin.

#1098

Ok, last update provides file browser plugin which doesn't crash. About the task manager icons there is still something I don't understand. I have a launcher in the launcher part for gnome terminal which take the icon from my icon theme but if I have more than one terminal opened I have some icons in the task manager (a future feature which group same windows could be cool, but this isn't the subject). These other gnome-terminal icons in the task manager won't use my icon theme but the default icon. See attached screenshot, launcher icon with gnome-term icon from my theme green cercled (without customising icon) and the one from the task manager red cercled.

#1099

reacocard said: As for the trash, that could be because awn-core-applets hasn't been updated for 64bit yet, we've been having a few build issues. Hopefully we'll get those sorted out and the next update will fix that problem.

Tonight's update fixed the trash. Thanks much! :)

#1100

The new stacks applet doesn't show up for me (just a white line), is there any package I have to install? Or do I have to switch backends?

#1101

Depressed Man said: The new stacks applet doesn't show up for me (just a white line), is there any package I have to install? Or do I have to switch backends?

The applet isnt loading... Have you tried removing it then adding it again?:)

#1102

I also got problems with the stacks applet since the update yesterday. Terminal says

Traceback (most recent call last):
  File "/usr/lib/awn/applets/stacks/stacks_applet.py", line 664, in <module>
    applet = StacksApplet (awn.uid, awn.orient, awn.height)
  File "/usr/lib/awn/applets/stacks/stacks_applet.py", line 127, in __init__
    self.backend_get_config()
  File "/usr/lib/awn/applets/stacks/stacks_applet.py", line 651, in backend_get_config
    self.config_backend, self.config_icon_size)
  File "/usr/lib/awn/applets/stacks/stacks_backend_file.py", line 40, in __init__
    self.handle = gnomevfs.create(self.backend_uri.as_uri(), mode)
gnomevfs.NotFoundError: File not found
#1103

Thank you for guide. AWN rocks!

#1104

for those having trouble with stacks, do this:

mkdir -p ~/.config/awn/applets/stacks

it's a small bug in the current version, timon say it'll be fixed soon.

#1105

reacocard said: for those having trouble with stacks, do this:

mkdir -p ~/.config/awn/applets/stacks

it's a small bug in the current version, timon say it'll be fixed soon.

Awesome, that did the trick.

Thank you for all the hard work and support here, much appreciated. :KS

#1106

justsomedude said: I also got problems with the stacks applet since the update yesterday. Terminal says

Traceback (most recent call last):
  File "/usr/lib/awn/applets/stacks/stacks_applet.py", line 664, in <module>
    applet = StacksApplet (awn.uid, awn.orient, awn.height)
  File "/usr/lib/awn/applets/stacks/stacks_applet.py", line 127, in __init__
    self.backend_get_config()
  File "/usr/lib/awn/applets/stacks/stacks_applet.py", line 651, in backend_get_config
    self.config_backend, self.config_icon_size)
  File "/usr/lib/awn/applets/stacks/stacks_backend_file.py", line 40, in __init__
    self.handle = gnomevfs.create(self.backend_uri.as_uri(), mode)
gnomevfs.NotFoundError: File not found

same here (exactly same output in term). btw, my icon problem seems to be magically resolved.

edit: tried the fix, it works, but browsing won't work

#1107

ayoli said: same here (exactly same output in term).

btw, my icon problem seems to be magically resolved.

edit: tried the fix, it works, but browsing won't work

what do you mean, 'browsing?' If you mean like how the old stacks worked as a file manager within the applet, that functionality is not in the rewrite, use the old applet (renamed to 'file browser') for that.

#1108

reacocard said: what do you mean, 'browsing?' If you mean like how the old stacks worked as a file manager within the applet, that functionality is not in the rewrite, use the old applet (renamed to 'file browser') for that.

ah ok, thanks for the clarification.

#1109

I've automated this guide with a cheep little script of mine .. see attachments. It is just a cheep little thing I thought some one might want to try out.

Just make sure to run it from a terminal.

#1110

NullHead said: I've automated this guide with a cheep little script of mine .. see attachments. It is just a cheep little thing I thought some one might want to try out.

Just make sure to run it from a terminal.

I tend to prefer not to use scripts, since people learn nothing by using them, and the guide for using apt can be made almost as simple as a guide telling how to use a script.

this will become irrelevant in hardy anyway since gapti will let me just post a link people can click to automatically enable my repo and install AWN. :D

EDIT: looked at the script now, I think I may steal your first couple lines since its easier to use that than to tell people to open their sources.list and add lines. :D

#1111

hay hay there we go I am helping after all ;) It's just a thought using a script, but I see you point ... it could get confusing ... and heck thats how I started off is by looking up a HOW-TO and "man 'command name'" everything!

#1112

Hey,

Im sorry if it has already been covered, just wanted to know how/if I can make the dock speed up its auto hide function. It would be much more efficient for me to have it zip down and pop up quicker then it currently is.

Thanks in advance.

#1113

ayoli said: Ok, last update provides file browser plugin which doesn't crash.

About the task manager icons there is still something I don't understand. I have a launcher in the launcher part for gnome terminal which take the icon from my icon theme but if I have more than one terminal opened I have some icons in the task manager (a future feature which group same windows could be cool, but this isn't the subject). These other gnome-terminal icons in the task manager won't use my icon theme but the default icon. See attached screenshot, launcher icon with gnome-term icon from my theme green cercled (without customising icon) and the one from the task manager red cercled.I have the very same problem. How did you fix it ayoli ?

#1114

Inxsible said: I have the very same problem. How did you fix it ayoli ?

Actually, I didn't fix anything. Sometimes it takes the right icon from my icon theme and some time it take a default icon from nowhere. As it had take the right icon after a reboot, I thought it was fixed, but sadly, it is not.

#1115

garethrv said: Hey,

Im sorry if it has already been covered, just wanted to know how/if I can make the dock speed up its auto hide function. It would be much more efficient for me to have it zip down and pop up quicker then it currently is.

Thanks in advance.

not possible right now, sorry.

#1116

reacocard said: This is a replacement of the original thread by FunnyLookinHat, as he is no longer updating his guide. The information in this guide comes from his guide, the guides from Affinity and AWN's sites, and from my own experience.

[CENTER][COLOR="Red"]--- NOTICE: The Affinity portion of this guide has been removed since upstream Affinity development appears to have ceased. ---[/COLOR][/CENTER]

_[SIZE="4"]Info:[/SIZE]_

_What they are:_ AWN is a compositing dock-like taskbar. Affinity is a desktop search tool, that integrates several other tools into one simple interface.

_Links:_ AWN: https://launchpad.net/awn Affinity: http://code.google.com/p/affinity-search/ The developer's blog: http://njpatel.blogspot.com/ Official AWN/Affinity forums: http://www.planetblur.org/hosted/awnforum/index.php Official AWN IRC channel: #awn on irc.freenode.net

_Screenshots:_

[IMG]http://ubuntuforums.org/attachment.php?attachmentid=27569&d=1174062417[/IMG]

_[SIZE="4"]Notes (please read!):[/SIZE]_ AWN requires a compositor (like beryl or compiz) to work properly.

AWN is still early in development, and contains many bugs. *Please* help development by reporting any bugs you find on the project's homepage (see above).

This guide was tested under Ubuntu Gutsy 32-bit.

_[SIZE="4"]Installing:[/SIZE]_

_[SIZE="3"]Repository:[/SIZE]_

NOTE: Repository is for Gutsy 32-bit and 64-bit. If you are using Gutsy, this is the recommended method of installation.

Gutsy: First add my AWN repo:

echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list

Then add my apt key:

wget http://download.tuxfamily.org/syzygy42/reacocard.asc
sudo apt-key add reacocard.asc
rm reacocard.asc

Then install AWN:

sudo apt-get update
sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr

That's it!

_Available packages:_ [INDENT]avant-window-navigator-bzr - the latest development version of AWN. awn-core-applets-bzr - extra applets for AWN (development version) libawn-bzr - applet library for AWN libawn-bzr-dev - headers for the AWN applet library. Install this only if you need to compile applets from source. python-libawn-bzr - python bindings for libawn [/INDENT] All -bzr packages are updated daily.

NOTE: There is no stable AWN currently because the only stable release of AWN is actually MUCH worse than devel. Use the devel build for now, and when the next stable version is available, I will build a package for it.

If anyone wants to create and maintain packages for other Ubuntu versions, I will gladly host them as well, PM or email me if you're interested in doing this.

_[SIZE="3"]Compiling from source:[/SIZE]_ If you're not running Feisty or Gutsy, you'll have to compile it yourself. NOTE: Keep the source directory, you'll need it if you ever want to uninstall.

_Avant-Window-Navigator (stable):_ No instructions for the stable version yet.

_Avant-Window-Navigator (bzr):_ First install the dependencies:

sudo apt-get install build-essential autotools-dev libxdamage-dev libxcomposite-dev libgnome2-common libgnome2-dev libgnome-desktop-dev libgnome-vfs-dev libgtk2.0-dev libwnck-dev libgconf2-dev libglib2.0-dev libdbus-glib-1-dev libgnomevfs2-0 libgnome-desktop-2 libgnome2-0 libwnck-common python-gtk2 python-gconf bzr gnome-common python-dev python-gtk2-dev python-cairo-dev python-gconf python-gnome2-dev gnome-icon-theme python-glade2 librsvg2-common, python-gnome2-extras

Now, open a terminal in the directory you want to build AWN in (I use ~/Installs/avant/) and do this:

bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator
cd avant-window-navigator
./autogen.sh
make
sudo make install

_awn-core-applets (stable):_ No stable releases yet, use bzr for now.

_awn-core-applets (bzr):_ See here until I get a full guide up: http://wiki.awn-project.org/index.php?title=Awn_Extras

_[SIZE="4"]Uninstalling:[/SIZE]_ I don't know why you would ever want to remove these awesome pieces of software, but in case you do, here's how.

_[SIZE="3"]Repository:[/SIZE]_

Use synaptic or apt-get to remove the packages you installed.

_[SIZE="3"]Source:[/SIZE]_

Open a terminal in the source directory (it should have a file called Makefile in it) you installed from and do

sudo make uninstall
sudo rm -f /usr/local/bin/awn-manager
sudo rm -f /usr/local/bin/avant-*

_[SIZE="4"]FAQs:[/SIZE]_

Q: I used the repo to install AWN on Feisty, but now I've upgraded to Gutsy and AWN won't start! Help! A: You're likely still using the Feisty repo. Open /etc/apt/sources.list, remove the line for feisty and then add the one for gutsy. Save and exit, then open a terminal and do

sudo apt-get update && sudo apt-get upgrade

if that doesn't work, try doing

sudo ldconfig

Q: There's a big ugly black bar around AWN! How do I get rid of it? A: You need to be running a compositor like Beryl or Compiz. xcompmgr or xfwm4 may also work, although there are known bugs with each.

Q: I want my AWN to look like this! [IMG]http://www.abload.de/img/awnwhe.png[/IMG] A: NikoPSK has written a quick guide on installing awn-curves: http://ubuntuforums.org/showthread.php?t=572019

Q: I installed from source, but now I want to remove AWN and I have no source dir! What can I do? A: Run this set of commands in a terminal:


sudo rm -f /usr/local/bin/awn*
sudo rm -f /usr/local/bin/avant*
sudo rm -rf /usr/local/lib/awn
sudo rm -f /usr/local/share/locale/*/LC_MESSAGES/avant-window-navigator.mo
sudo rm -f /usr/local/share/applications/avant*
sudo rm -f /usr/local/share/applications/awn*
sudo rm -rf /usr/local/share/avant-window-navigator
sudo rm -f /usr/local/lib/libawn*
sudo rm -rf /usr/local/include/libawn
sudo rm -f /usr/local/lib/libawn*
sudo rm -f /usr/local/lib/pkgconfig/awn.pc
sudo rm -rf /usr/local/share/awn-core-applets
sudo rm -rf /usr/local/lib/python2.5/site-packages/awn/

I have ubutnu 7.10 gusty an when ever i put in this code

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr

i get this error

gundumfx@gundumfx-desktop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? gundumfx@gundumfx-desktop:~$

help

#1117

gundumfx said: I have ubutnu 7.10 gusty an when ever i put in this code

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr

i get this error

gundumfx@gundumfx-desktop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? gundumfx@gundumfx-desktop:~$

help

looks like you have another software manager (synaptic, update-manager, gdebi) opened when you try to apt-get. Close it before running again the command.

#1118

I'm using reaocards repository for awn, but I still experience the seg fault randomly when an icon does the notification flash. I've set it to be a spotlight. Is anyone else experiencing this?

#1119

Vadi said: I'm using reaocards repository for awn, but I still experience the seg fault randomly when an icon does the notification flash. I've set it to be a spotlight. Is anyone else experiencing this?

I had that happen to me for a while, but lately it's stopped doing it. I have attention set to classic though.

#1120

Why doesn't this work for me? I do everything the Ubuntu 7.10 how-to says.. Everything seems fine. It's listed under System, Preferences... but when I click AWN Manager.. it doesn't load or anything.. What's wrong?

#1121

I believe you have to start AWN once before the settings manager will work. Run it with avant-window-navigator in the terminal.

#1122

reacocard said: I had that happen to me for a while, but lately it's stopped doing it. I have attention set to classic though.

Yeah I think the spotlight attention is buggy then, I'll change it for now. I suppose it would be nice had an 'report a problem' feature too, I don't feel like scouring the net for their bugtracking system :(

#1123

Vadi said: Yeah I think the spotlight attention is buggy then, I'll change it for now. I suppose it would be nice had an 'report a problem' feature too, I don't feel like scouring the net for their bugtracking system :(

it's on launchpad: https://bugs.launchpad.net/awn

#1124

Oh, awesome.

#1125

I got some problems with the updated amd64 awn repository on gutsy: Most of the applets disappeared replaced by a white thin line, and I get this for example when adding quit-applet.py:


$ avant-window-navigator &
[3] 23853
$ Screen is composited.
APPLET : /usr/lib/awn/applets/main-menu.desktop
LOADED : /home/$USER/.gnome2/panel2.d/default/launchers/Datei.desktop
LOADED : /home/$USER/.gnome2/panel2.d/default/launchers/xara.desktop
LOADED : /usr/share/applications/kde/amarok.desktop
LOADED : /usr/share/applications/kde/k3b.desktop
LOADED : /home/$USER/.gnome2/panel2.d/default/launchers/kompozer.desktop
LOADED : /usr/share/applications/kde/quanta.desktop
LOADED : /usr/share/applications/firefox.desktop
LOADED : /usr/share/applications/kde/Kontact.desktop
LOADED : /usr/share/applications/gedit.desktop
LOADED : /usr/share/applications/gnome-terminal.desktop
APPLET : /usr/lib/awn/applets/taskman.desktop

** (awn-applet-activation:23859): WARNING **: This desktop file does not exist /usr/lib/awn/applets/stack.desktop

APPLET : /usr/lib/awn/applets/stack.desktop
APPLET : /usr/lib/awn/applets/awn-system-monitor.desktop
APPLET : /usr/lib/awn/applets/trash.desktop
APPLET : /usr/lib/awn/applets/notification-area.desktop

(awn-applet-activation:23855): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:23855): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:23861): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:23861): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed
Creating new applet :None uid:None
Creating new applet :/usr/lib/awn/applets/quit-applet.desktop uid:1194793735

** (awn-applet-activation:24145): WARNING **: This desktop file does not exist None

Traceback (most recent call last):
  File "/usr/lib/awn/applets/quit-applet/quit-applet.py", line 25, in ?
    import awn
ImportError: No module named awn
Launched application : 24355

ii awn-core-applets-bzr 0.1.0-bzr155-1 A collection of applets for avant-window-navigator ii python-libawn-bzr 0.2.0-bzr141-1 library for avant-window-navigator - Python bindings ii libawn-bzr 0.2.0-bzr141-1 library for Avant Window Navigator applets ii avant-window-navigator-bzr 0.2.0-bzr141-1 Avant Window Navigator

$ apt-cache policy awn-core-applets-bzr python-libawn-bzr avant-window-navigator-bzr libawn-bzr

awn-core-applets-bzr: Installed: 0.1.0-bzr155-1 Candidate: 0.1.0-bzr155-1 Version table: * 0.1.0-bzr155-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status 0.1.0-bzr84-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.0-bzr78-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages python-libawn-bzr: Installed: 0.2.0-bzr141-1 Candidate: 0.2.0-bzr141-1 Version table: * 0.2.0-bzr141-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status 0.2.0-bzr129-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages avant-window-navigator-bzr: Installed: 0.2.0-bzr141-1 Candidate: 0.2.0-bzr141-1 Version table: * 0.2.0-bzr141-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status 0.2.0-bzr129-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr121-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr53-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr38-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr34-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages libawn-bzr: Installed: 0.2.0-bzr141-1 Candidate: 0.2.0-bzr141-1 Version table: * 0.2.0-bzr141-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status 0.2.0-bzr129-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr121-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr53-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr38-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 0.1.2-bzr34-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages

#1126

Hey, I'm using 64 bit Gusty with compiz-fusion and the full nvidia drivers. I've tried compiling awn from source and used the repository, even some deb which I got online, but each time I get the same error:

ubuntu-x64:~$ avant-window-navigator
Screen is composited.
APPLET : /usr/local/lib/awn/applets/taskman.desktop
The program 'avant-window-navigator' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadMatch (invalid parameter attributes)'.
  (Details: serial 2327 error_code 8 request_code 72 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

So I guess the taskman applet doesn't like something...? Or is it something else?

Any help is appreciated. Thanks.

#1127

reacocard said: you need to install the python-gnome2-desktop package. Thanks for findinlg this, I'll fix it in the packaging for the next update so noone else will ever have this problem again. :D

I still have this same problem. Running gutsy kubuntu. But in my case it was the python-gnome2 that were missing. I don't know who should add the depend but it would be nice if it was added for us running kde

Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 41, in <module>
    import gnomedesktop
  File "/var/lib/python-support/python2.5/gtk-2.0/gnomedesktop/__init__.py", line 1, in <module>
    from _gnomedesktop import *
ImportError: could not import gnomevfs
#1128

awn seems to work reasonably well on my system, except for the fact that it fails to restore the cursor in a terminal window or in emacs when the window in question is selected from the awn bar. This makes it diffiuclt to use console applications with awn; but otherwise it seems OK.

Ross

#1129

rosslaird said: awn seems to work reasonably well on my system, except for the fact that it fails to restore the cursor in a terminal window or in emacs when the window in question is selected from the awn bar.

This works for me, at least in the gnome-terminal and in PuTTY. (Using the 64-bit version of AWN from reacocard's repository.)

#1130

Yup, I'm using the same repos.

R.

#1131

Seems I'm having a problem.

Whenever my screen saver and whatnot goes up for a really long time the avant seems to disappear. I can easily bring it back up from the menu but that gets a bit annoying. Any ideas on how to fix this?

#1132

This is awesome! I had used a Mac on an old sound gg and I loved the dock. Now I've gotten a little further from the fairly closed Windows look, although to an even more closed MacOSX look. ;)

There are a couple questions I have.

  • I'm using the Mac4Lin theme, but is it possible to replace the Apple logo with the Ubuntu logo in the Applications menu? I'd much rather show off the OS I'm actually using.
  • Is there any way to locate an applet within the launchers? I use the Digital Clock and Weather applets, and I have a couple of others I may use if they weren't located within the active apps section of the dock.
  • I'd change the splash and Usplash screens but I'd like to have a mix of Mac4Lin and Ubuntu. Can anyone point me to info for making my own screens?Thanks for putting together this guide, reacocard. I had seen this article (I think I had StumbledUpon it) and decided to give it a whirl. Your guide helped me over some of the rough patches and I'm really liking how it's ending up. I've attached a screenie, although my desktop is actually 1280x1024 (the full sized screenie was too big for the fourm) and I have some excess icons that will eventually come off once I get things settled in a little more.
#1133

DJ_Peng said: This is awesome! I had used a Mac on an old sound gg and I loved the dock. Now I've gotten a little further from the fairly closed Windows look, although to an even more closed MacOSX look. ;)

There are a couple questions I have.

  • I'm using the Mac4Lin theme, but is it possible to replace the Apple logo with the Ubuntu logo in the Applications menu? I'd much rather show off the OS I'm actually using.
  • Is there any way to locate an applet within the launchers? I use the Digital Clock and Weather applets, and I have a couple of others I may use if they weren't located within the active apps section of the dock.
  • I'd change the splash and Usplash screens but I'd like to have a mix of Mac4Lin and Ubuntu. Can anyone point me to info for making my own screens?Thanks for putting together this guide, reacocard. I had seen this article (I think I had StumbledUpon it) and decided to give it a whirl. Your guide helped me over some of the rough patches and I'm really liking how it's ending up. I've attached a screenie, although my desktop is actually 1280x1024 (the full sized screenie was too big for the fourm) and I have some excess icons that will eventually come off once I get things settled in a little more.

1) yes, find the icon for it in your installed theme (probably under ~/.icons or ~/.themes), and replace it with the ubuntu one.

2) no, applets cannot be placed within the launchers since the launchers and tasks are all treated as one large applet.

3) https://help.ubuntu.com/community/USplashCustomizationHowto

#1134

I heard that the latest update to the avant-window-navigator-bzr got the stacks bling update. ^^

#1135

nikoPSK said: I heard that the latest update to the avant-window-navigator-bzr got the stacks bling update. ^^

bling update?

#1136

reacocard said: 1) yes, find the icon for it in your installed theme (probably under ~/.icons or ~/.themes), and replace it with the ubuntu one.

2) no, applets cannot be placed within the launchers since the launchers and tasks are all treated as one large applet.

3) https://help.ubuntu.com/community/USplashCustomizationHowto

I'm actually seeing that in the next version of AWM we may be able to mix launchers and applets so I guess I'll just have to wait to see if it happens. Thanks for the advice on the other things. I"ll definitely check them out.

#1137

Hey, I've got a question. When I tried to install the repos (like the first step, you know), it wouldn't let me add the source. Is there any other way to do that, like with the terminal or something?

Sorry if it's been asked before, but there's over a hundred pages in this thread, and that's a good bit to comb through.

#1138

spaceship.rodeo said: Hey, I've got a question. When I tried to install the repos (like the first step, you know), it wouldn't let me add the source. Is there any other way to do that, like with the terminal or something?

Sorry if it's been asked before, but there's over a hundred pages in this thread, and that's a good bit to comb through.

the first one is a two-line command, paste the whole thing into the terminal at once. Alternatively, you can just use 'sudo gedit /etc/apt/sources.list' and add these lines to the end:

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
#1139

Look in /etc/apt/sources.list and make sure you have a line break between the deb and deb-src entries for awn

#1140

Thanks a lot, that's exactly what I was looking for. I figured that was all I had to do, but I'm glad I double checked with you folks first.

#1141

Love the repo, thanks a ton for providing it. But could you please also write in the changelog what do the updates actually do? (so that the update manager can tell me).

Otherwise updates are no fun.

#1142
#1143

Damn that looks cool! I'm gonna have to play around with Stacks now. :guitar:

My Digital Clock is showing as just black text (it may be the shoadow from looking at the settings), plus clicking the Prefs menu option does nothing so I downloaded the updated .wan file. Can someone let me know how I install it? My Gutsy doesn't seem to nkow how to extract it so I'm kind of lost.

#1144

Hey reaco, how about providing a repo for the 64 bit users out there ?

Currently I am compiling from source and its a hassle to remove awn, then remove the source folders, then download the new source so that I get all the latest updates and then compiling them again.

Or can you tell me how to go about creating a repo? so that i can put up the debs created by checkinstall ?

:D

#1145

Vadi said: Love the repo, thanks a ton for providing it. But could you please also write in the changelog what do the updates actually do? (so that the update manager can tell me).

Otherwise updates are no fun.

updates are just auto-built by a script, so I don't get a chance to do that manually. I suppose it'd be possible to embed the bzr changelog into it, but that'd be more work than its worth, IMO.

nikoPSK said: here y'are:D

http://thelinuxmovement.blogspot.com/2007/11/awn-stacks-update.html

Next update.

DJ_Peng said: Damn that looks cool! I'm gonna have to play around with Stacks now. :guitar:

My Digital Clock is showing as just black text (it may be the shoadow from looking at the settings), plus clicking the Prefs menu option does nothing so I downloaded the updated .wan file. Can someone let me know how I install it? My Gutsy doesn't seem to nkow how to extract it so I'm kind of lost.

Just drag it onto the applets pane in awn-manager, or use the + button on the same pane to add it.

Inxsible said: Hey reaco, how about providing a repo for the 64 bit users out there ?

Currently I am compiling from source and its a hassle to remove awn, then remove the source folders, then download the new source so that I get all the latest updates and then compiling them again.

Or can you tell me how to go about creating a repo? so that i can put up the debs created by checkinstall ?

:D

What do you mean? The current repo does both 64 and 32 bit. 64 bit is a little behind 32 bit usually but that's unavoidable when two different people are building the debs.

also, NEVER EVER PUT CHECKINSTALL DEBS INTO A REPO. I've done it before, and it causes apt to screw up majorly. Only properly built debs should be placed into a repo.

#1146

reacocard said: What do you mean? The current repo does both 64 and 32 bit. 64 bit is a little behind 32 bit usually but that's unavoidable when two different people are building the debs.

also, NEVER EVER PUT CHECKINSTALL DEBS INTO A REPO. I've done it before, and it causes apt to screw up majorly. Only properly built debs should be placed into a repo.Hmmm.. when did you put in the 64 bit version? Do you also provide the awn-applets then?

Maybe I have been using the source since so long that I never realized you added the 64 bit versions too :)

#1147

Inxsible said: Hmmm.. when did you put in the 64 bit version? Do you also provide the awn-applets then?

Maybe I have been using the source since so long that I never realized you added the 64 bit versions too :)

it's had 64-bit for gutsy since before gutsy was released. it was added to feisty fairly late though. and yes, the applets are included, the two are identical except for update lag.

#1148

reacocard said: Just drag it onto the applets pane in awn-manager, or use the + button on the same pane to add it.

Awesome! That did the trick . I tried to drag it but it didn't work for some odd reason. I had forgotten about the "+" button, but I'm still getting used to how that screen's laid out.

#1149

New revision of awn-core-applets uploaded

#1150

so is bling here? :lolflag:

#1151

I tried to install avn following this guide (and other guides on other websites) multiple times but after doing everything, when I type in "sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr", I get the following error :

mathieu@matlaptop:~/awn-curves$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package avant-window-navigator-bzr

I really don't understand why I get this since I've done everything a couple of times (and yes I got compiz). I even tried editing the /etc/apt/sources.list manually but still no luck.

Any help would be appreciated!

#1152

I had the same problem; check this thread: awn installation

In my case, it seems that the repositories weren't added the first time (or I deleted them somehow after that), it may be your problem too.

#1153

I followed the instructions on the link you gave me, but at the step where I reloaded the Synaptic Package Manager I got the following problem :

Could not download all repository indexes

The repository might be no longer available or could not be contacted because of network problems. If available an older version of the failed index will be used. Otherwise the repository will be ignored. Check your network connection and the correct writing of the repository address in the preferences.

http://download.tuxfamily.org/syzygy42/dists/gutsy/Release: Unable to find expected entry exailedeb/binary-i386/Packages in Meta-index file (malformed Release file?)

#1154

Mathieu07 said: I followed the instructions on the link you gave me, but at the step where I reloaded the Synaptic Package Manager I got the following problem :

Could not download all repository indexes

The repository might be no longer available or could not be contacted because of network problems. If available an older version of the failed index will be used. Otherwise the repository will be ignored. Check your network connection and the correct writing of the repository address in the preferences.

http://download.tuxfamily.org/syzygy42/dists/gutsy/Release: Unable to find expected entry exailedeb/binary-i386/Packages in Meta-index file (malformed Release file?)

do 'sudo gedit /etc/apt/sources.list' and make sure that the repo was added correctly, there should be a couple lines at the bottom like this:

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
#1155

no matter what I do I cannot get AWN running, I have tried everything... so I wont use it

#1156

reacocard said: do 'sudo gedit /etc/apt/sources.list' and make sure that the repo was added correctly, there should be a couple lines at the bottom like this:

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

That's exactly what I have in my sources.list :(

#1157

Mathieu07 said: That's exactly what I have in my sources.list :(

odd. try apt-get updating again, I've refreshed the repo. If that doesn't work, post your entire sources.list here.

#1158

SunnyRabbiera said: no matter what I do I cannot get AWN running, I have tried everything... so I wont use it

If you posted some details, i.e. error messages, what you have tried, what happens, etc., people might be able to offer suggestions or pointers.

#1159

Here's my sources.list file :

deb cdrom:[Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016)]/ gutsy main restricted

See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to

newer versions of the distribution.

deb http://ca.archive.ubuntu.com/ubuntu/ gutsy main restricted deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy main restricted

Major bug fix updates produced after the final release of the

distribution.

deb http://ca.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu

team, and may not be under a free licence. Please satisfy yourself as to

your rights to use the software. Also, please note that software in

universe WILL NOT receive any review or updates from the Ubuntu security

team.

deb http://ca.archive.ubuntu.com/ubuntu/ gutsy universe deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy universe deb http://ca.archive.ubuntu.com/ubuntu/ gutsy-updates universe deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy-updates universe

N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu

team, and may not be under a free licence. Please satisfy yourself as to

your rights to use the software. Also, please note that software in

multiverse WILL NOT receive any review or updates from the Ubuntu

security team.

deb http://ca.archive.ubuntu.com/ubuntu/ gutsy multiverse deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy multiverse deb http://ca.archive.ubuntu.com/ubuntu/ gutsy-updates multiverse deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy-updates multiverse

Uncomment the following two lines to add software from the 'backports'

repository.

N.B. software from this repository may not have been tested as

extensively as that contained in the main release, although it includes

newer versions of some applications which may provide useful features.

Also, please note that software in backports WILL NOT receive any review

or updates from the Ubuntu security team.

deb http://ca.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

deb-src http://ca.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

Uncomment the following two lines to add software from Canonical's

'partner' repository. This software is not part of Ubuntu, but is

offered by Canonical and the respective vendors as a service to Ubuntu

users.

deb http://archive.canonical.com/ubuntu gutsy partner

deb-src http://archive.canonical.com/ubuntu gutsy partner

deb http://security.ubuntu.com/ubuntu gutsy-security main restricted deb-src http://security.ubuntu.com/ubuntu gutsy-security main restricted deb http://security.ubuntu.com/ubuntu gutsy-security universe deb-src http://security.ubuntu.com/ubuntu gutsy-security universe deb http://security.ubuntu.com/ubuntu gutsy-security multiverse deb-src http://security.ubuntu.com/ubuntu gutsy-security multiverse

##PERSONNEL

deb http://packages.dfree.org gutsy main

##qBitTorrent et libTorrent deb http://hydr0g3n.free.fr/qbittorrent/gutsy/ ./ #deb-src http://hydr0g3n.free.fr/qbittorrent/gutsy/ ./

##Exaile deb http://download.tuxfamily.org/syzygy42 gutsy exailedeb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

##awn du site de awn direct deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

#1160

Mathieu07 said: ##Exaile

deb http://download.tuxfamily.org/syzygy42 gutsy exailedeb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

##awn du site de awn direct deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator For one thing you have the AWM repos listed twice. I'm not sure why this is causing problems, but taking out the duplication may help.

#1161

DJ_Peng said: For one thing you have the AWM repos listed twice. I'm not sure why this is causing problems, but taking out the duplication may help.

That was the problem, now it's all working! Thanks a lot everyone who helped me.

#1162

I was reading this post over at Planet Mozilla and I'm wondering if there's any way to get this kind of UI for Firefox/Linux users with Mac4Lin

#1163

DJ_Peng said: I was reading this post over at Planet Mozilla and I'm wondering if there's any way to get this kind of UI for Firefox/Linux users with Mac4Lin

not really sure what that has to do with AWN or exactly what you're getting at, but if you mean having a better-integrated firefox UI, 3.0 is supposed to be better integrated in linux as well.

#1164

reacocard said: not really sure what that has to do with AWN or exactly what you're getting at, but if you mean having a better-integrated firefox UI, 3.0 is supposed to be better integrated in linux as well.

Sorry, I meant to post this under the other OSX-look thread here. My bad.

The Linux integration into Firefox 3 is going pretty well, although it's still a work in progress. It's really a shame that Mozilla decided to go with page zoom over text zoom in Fx3, because as far as I'm concerned it's a deal breaker for using it. The only reason I haven't switched back to Fx 2 is because I want to see how the bug fixes progress and I'm praying that dawn will break on marble heads and they'll give us back our proper text zoom. But that's a rant for another thread, too, so please forgive my getting OT again.

#1165

I followed the repo install guide, and I successfully ran awn-manager, but just can't run avant-window-navigator. It generates core dump :(

zingle@zPadLinux:~$ dpkg -l |grep avant ii avant-window-navigator-bzr 0.2.0-bzr142-1 Avant Window Navigator ii awn-core-applets-bzr 0.1.0-bzr234-1 A collection of applets for avant-window-nav

zingle@zPadLinux:~$ avant-window-navigator Screen is composited. Segmentation fault (core dumped)

and I tried to run with gdb, which is I am not very used to. But here's what I got from it.

Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1".

(gdb) run Starting program: /usr/local/bin/avant-window-navigator [Thread debugging using libthread_db enabled] [New Thread -1226414416 (LWP 1317)] Screen is composited.

Program received signal SIGSEGV, Segmentation fault. [Switching to Thread -1226414416 (LWP 1317)] 0xb74e0292 in g_slist_foreach () from /usr/lib/libglib-2.0.so.0 (gdb) bt #0 0xb74e0292 in g_slist_foreach () from /usr/lib/libglib-2.0.so.0 #1 0x0805cbce in awn_task_manager_new (settings=0x808e338) at awn-task-manager.c:158 #2 0x08050cb0 in _load_taskmanager (manager=0x80be818) at awn-applet-manager.c:109 #3 0x08050f1e in awn_applet_manager_load_applets (manager=0x80be818) at awn-applet-manager.c:228 #4 0x0804f0cc in composited_changed (screen=0x8087120, s=0x808e338) at main.c:545 #5 0x0804f741 in main (argc=135271480, argv=0x8101488) at main.c:253 (gdb)

Should I remove it and install with SVN version? Any help will be appreciated. :D

#1166

Now it works fine. The below reply from How-To: Awn curves worked for me.

ve1uxe said: I had the very same issue with the segmentation fault. To fix this condition, from within synaptic, I marked the following packages for re-installation: awn-core-applets-bzr, libawn-bzr, and python-libawn-bzr. After these reapplied to my system, awn-curves works like a champ.

#1167

I have tried to follow this guide to install AWN on Gutsy 64bit however I keep encountering errors about the package avant-window-navigator-bzr not being available. I have verified that the repository has been added to my /etc/apt/sources.list and that they are available in the synaptic Third-Party Software list. I have also verified that the GPG key F4ECF181 for Aren Olson has been added.

Since the apt system was unable to locate the package I attempted to manually download the package from the repository and install it myself however the 64bit version of this package does not appear to exist:

[IMG]http://img102.imageshack.us/img102/6439/awnwh6.png[/IMG]

As you can see, both 32 and 64 bit packages are available for avn-core-applests-bzr howver only 32 bit packages are available for avant-window-navigator-bzr, libawn-bzr (-dev), and python-libawn-bzr. The first post indicated that this repository was for both 32bit and 64bit, is this still true? Will 64 bit packages be made available soon? Is there another repository that is better suited for providing 64bit AWN packages? Or do I have to resort to downloading the source and mucking about with checkinstall if I do not want to break my apt upgrade path?

#1168

mivo said: If you posted some details, i.e. error messages, what you have tried, what happens, etc., people might be able to offer suggestions or pointers.

I have tried everything to get AWN working, you name it I have tried it. It just blinks and doesnt do diddlysquat whenever I try it... and yes that is when I use compositing. awn has never worked for me.

#1169

SunnyRabbiera said: I have tried everything to get AWN working, you name it I have tried it.

It just blinks and doesnt do diddlysquat whenever I try it... and yes that is when I use compositing. awn has never worked for me.

well, tell us what it says when you type


avant-window-navigator

and

awn-manager

In the termianl.

#1170

can't get awn to work with 64 bit ubuntu. Cannot find the packages, even after apt-get update and importing the key.

#1171

sorry to those having trouble with the 64bit packages, it seems that falcon mistakenly removed them when I purged the old versions yesterday. I'll have the packages back up ASAP.

EDIT: 64bit packages should be back up now

#1172

nikoPSK said: well, tell us what it says when you type


avant-window-navigator

and

awn-manager

In the termianl.

well this is odd, now it works...

sorta.

I got to figure this out

#1173

umm, it launches now?

#1174

The stacks applet now works for me w00t, after the latest update.

#1175

reacocard said: sorry to those having trouble with the 64bit packages, it seems that falcon mistakenly removed them when I purged the old versions yesterday. I'll have the packages back up ASAP.

EDIT: 64bit packages should be back up now

I can see the 64-bit debs now when I browse the repo with Firefox, but when I try to update with Synaptic I get the following message:

W: GPG error: http://download.tuxfamily.org gutsy Release: The following signatures were invalid: BADSIG 3E231AC7F4ECF181 Aren Olson <reacocard@gmail.com>
W: You may want to run apt-get update to correct these problems

I have tried removing and re-adding reacocard.asc, but that doesn't seem to help.

I'm having a lot of performance issues when running wine applications (See: https://bugs.launchpad.net/awn/+bug/157179. I'm hoping that this update will help things.

#1176

This issues on amd64 persists, I can't get the applets working, there is only a slim white line, instead of the applet: http://ubuntuforums.org/showpost.php?p=3749957&postcount=1125

~$ gdb avant-window-navigator 
GNU gdb 6.6-debian
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu"...
(no debugging symbols found)
Using host libthread_db library "/lib/libthread_db.so.1".
(gdb) run
Starting program: /usr/bin/avant-window-navigator 
(no debugging symbols found)
[...]
(no debugging symbols found)
---Type <return> to continue, or q <return> to quit---
(no debugging symbols found)
[...]
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 47337997859408 (LWP 22632)]
(no debugging symbols found)
[...]
(no debugging symbols found)
---Type <return> to continue, or q <return> to quit---
(no debugging symbols found)
[...]
(no debugging symbols found)
Screen is composited.
APPLET : /usr/lib/awn/applets/main-menu.desktop
(no debugging symbols found)
[...]
(no debugging symbols found)
LOADED : /home/gerhard/.gnome2/panel2.d/default/launchers/Datei.desktop
LOADED : /home/gerhard/.gnome2/panel2.d/default/launchers/xara.desktop
LOADED : /usr/share/applications/kde/amarok.desktop
LOADED : /usr/share/applications/kde/k3b.desktop
(no debugging symbols found)
LOADED : /home/gerhard/.gnome2/panel2.d/default/launchers/kompozer.desktop
LOADED : /usr/share/applications/kde/quanta.desktop
LOADED : /usr/share/applications/firefox.desktop
LOADED : /usr/share/applications/kde/Kontact.desktop
(no debugging symbols found)
[...]
(no debugging symbols found)
LOADED : /usr/share/applications/gedit.desktop
LOADED : /usr/share/applications/gnome-terminal.desktop
APPLET : /usr/lib/awn/applets/taskman.desktop
APPLET : /usr/lib/awn/applets/awn-system-monitor.desktop
APPLET : /usr/lib/awn/applets/trash.desktop

(awn-applet-activation:22648): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:22648): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed
APPLET : /usr/lib/awn/applets/notification-area.desktop

(awn-applet-activation:22646): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:22646): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

Creating new applet :None uid:None
Creating new applet :/usr/lib/awn/applets/PyClock.desktop uid:1196198024

** (awn-applet-activation:22749): WARNING **: This desktop file does not exist None

Traceback (most recent call last):
  File "/usr/lib/awn/applets/PyClock/PyClock.py", line 8, in ?
    import awn
ImportError: No module named awn

Here we can see a backtrace on the PyClock Applet, that didn't appeared (only that slim white line).

Here a few other samples:

(avant-window-navigator:22632): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GObject'

(avant-window-navigator:22632): GLib-GObject-CRITICAL **: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed

(avant-window-navigator:22632): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GObject'

(avant-window-navigator:22632): GLib-GObject-CRITICAL **: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
Creating new applet :/usr/lib/awn/applets/weather.desktop uid:1196198246
Traceback (most recent call last):
  File "/usr/lib/awn/applets/weather/weather.py", line 30, in ?
    import awn
ImportError: No module named awn

(avant-window-navigator:22632): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GObject'

(avant-window-navigator:22632): GLib-GObject-CRITICAL **: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed

(avant-window-navigator:22632): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GObject'

(avant-window-navigator:22632): GLib-GObject-CRITICAL **: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
Creating new applet :/usr/lib/awn/applets/lastfm.desktop uid:1196198259
Traceback (most recent call last):
  File "/usr/lib/awn/applets/lastfm/lastfmapplet.py", line 22, in ?
    import awn
ImportError: No module named awn

(avant-window-navigator:22632): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GObject'

(avant-window-navigator:22632): GLib-GObject-CRITICAL **: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed

(avant-window-navigator:22632): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GObject'

(avant-window-navigator:22632): GLib-GObject-CRITICAL **: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
Creating new applet :/usr/lib/awn/applets/digitalClock.desktop uid:1196198263
Traceback (most recent call last):
  File "/usr/lib/awn/applets/digitalClock/digitalClock.py", line 18, in ?
    import awn
ImportError: No module named awn

I don't know debugging (What kind of breakpoints should I use?), and here is the backtrace after pressing STRG+C:

Program received signal SIGINT, Interrupt.
[Switching to Thread 47337997859408 (LWP 22632)]
0x00002b0db8c1fdef in poll () from /lib/libc.so.6
Traceback (most recent call last):
  File "/usr/bin/awn-manager", line 201, in ?
    awnmanager.main()
  File "/usr/bin/awn-manager", line 195, in main
    gtk.main()
KeyboardInterrupt
(gdb) bt
#0  0x00002b0db8c1fdef in poll () from /lib/libc.so.6
#1  0x00002b0db795f12e in ?? () from /usr/share/qt4/lib/libglib-2.0.so.0
#2  0x00002b0db795f5ea in g_main_loop_run () from /usr/share/qt4/lib/libglib-2.0.so.0
#3  0x00002b0db4e80883 in gtk_main () from /usr/share/qt4/lib/libgtk-x11-2.0.so.0
#4  0x000000000040956d in ?? ()
#5  0x00002b0db8b72b44 in __libc_start_main () from /lib/libc.so.6
#6  0x0000000000408a89 in ?? ()
#7  0x00007ffff8dfc278 in ?? ()
#8  0x0000000000000000 in ?? ()

ii awn-core-applets-bzr 0.1.0-bzr234-1 A collection of applets for avant-window-navigator

ii libawn-bzr 0.2.0-bzr142-1 library for Avant Window Navigator applets ii python-libawn-bzr 0.2.0-bzr142-1 library for Avant Window Navigator applets - pytho ii avant-window-navigator-bzr 0.2.0-bzr142-1 Avant Window Navigator

$ apt-cache policy libawn-bzr awn-core-applets-bzr python-libawn-bzr avant-window-navigator-bzr

libawn-bzr: Installed: 0.2.0-bzr142-1 Candidate: 0.2.0-bzr142-1 Version table: * 0.2.0-bzr142-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status awn-core-applets-bzr: Installed: 0.1.0-bzr234-1 Candidate: 0.1.0-bzr234-1 Version table: * 0.1.0-bzr234-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status 0.1.0-bzr225-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages python-libawn-bzr: Installed: 0.2.0-bzr142-1 Candidate: 0.2.0-bzr142-1 Version table: * 0.2.0-bzr142-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status avant-window-navigator-bzr: Installed: 0.2.0-bzr142-1 Candidate: 0.2.0-bzr142-1 Version table: * 0.2.0-bzr142-1 0 500 http://download.tuxfamily.org gutsy/avant-window-navigator Packages 100 /var/lib/dpkg/status

#1177

ianmidd said: I can see the 64-bit debs now when I browse the repo with Firefox, but when I try to update with Synaptic I get the following message:

W: GPG error: http://download.tuxfamily.org gutsy Release: The following signatures were invalid: BADSIG 3E231AC7F4ECF181 Aren Olson <reacocard@gmail.com>
W: You may want to run apt-get update to correct these problems

I have tried removing and re-adding reacocard.asc, but that doesn't seem to help.

I'm having a lot of performance issues when running wine applications (See: https://bugs.launchpad.net/awn/+bug/157179. I'm hoping that this update will help things.

hm, odd. try adding this as the key, it may fix it: http://download.tuxfamily.org/syzygy42/F4ECF181.gpg

#1178

floogy said: This issues on amd64 persists, I can't get the applets working, there is only a slim white line, instead of the applet:

http://ubuntuforums.org/showpost.php?p=3749957&postcount=1125

<snip>

This is out of my league. I suggest asking on the AWN forums, the devs are actually fairly active there so you're likely to get good help.

EDIT: duh. it looks like your python bindings to libawn are missing. did you install from the repo? if so try 'sudo apt-get install python-libawn-bzr'. If from source, try reinstalling.

#1179
$ sudo apt-get install python-libawn-bzr
[sudo] password for gerhard:
Reading package lists... Done
Building dependency tree        
Reading state information... Done
python-libawn-bzr is already the newest version.
python-libawn-bzr set to manual installed.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

I also reinstalled python-libawn-bzr, but that didn't help.

Unpacking replacement python-libawn-bzr ...
Setting up python-libawn-bzr (0.2.0-bzr142-1)
Traceback (most recent call last):
  File "/usr/lib/awn/applets/lastfm/lastfmapplet.py", line 22, in ?
    import awn
ImportError: No module named awn

But I noticed that there is a different version in awn-core-applets-bzr:

ii avant-window-navigator-bzr 0.2.0-[COLOR="SeaGreen"]bzr142-1[/COLOR]

ii libawn-bzr 0.2.0-[COLOR="SeaGreen"]bzr142-1[/COLOR] ii python-libawn-bzr 0.2.0-[COLOR="SeaGreen"]bzr142-1[/COLOR] ii awn-core-applets-bzr 0.1.0-[COLOR="Red"]bzr234-1[/COLOR]

#1180

I noticed, that there is no awn.pth in /usr/lib/python2.5/site-packages, maybe thats the reason:

$ sudo echo 'awn' |sudo tee /usr/lib/python2.5/site-packages/awn.pth

I'll test that after a reboot.

Hmm.. that did not the trick.

$ update-alternatives --config python
No alternatives for python.
$ ls -ld  /usr/lib/python*
drwxr-xr-x  3 root root 12288 2007-02-23 00:57 /usr/lib/python2.3
drwxr-xr-x 20 root root 12288 2007-10-30 13:46 /usr/lib/python2.4
drwxr-xr-x 24 root root 12288 2007-10-21 13:17 /usr/lib/python2.5
drwxr-xr-x 37 root root  4096 2007-10-21 15:59 /usr/lib/python-support

/usr/lib/python2.4 is used :(

#1181

im too noob. Im trying to uninstall it but I don't see it in Synaptic. I wanna do it thru terminal but where is the source directory maybe a hint of where it might be? im super noob

Ran it in terminal:

specialk@SpecialK-LT:~$ sudo make uninstall make: *** No rule to make target `uninstall'. Stop. specialk@SpecialK-LT:~$

#1182

run these commands

sudo rm -f /usr/local/bin/awn*
sudo rm -f /usr/local/bin/avant*
sudo rm -rf /usr/local/lib/awn
sudo rm -f /usr/local/share/locale/*/LC_MESSAGES/avant-window-navigator.mo
sudo rm -f /usr/local/share/applications/avant*
sudo rm -f /usr/local/share/applications/awn*
sudo rm -rf /usr/local/share/avant-window-navigator
sudo rm -f /usr/local/lib/libawn*
sudo rm -rf /usr/local/include/libawn
sudo rm -f /usr/local/lib/libawn*
sudo rm -f /usr/local/lib/pkgconfig/awn.pc
sudo rm -rf /usr/local/share/awn-core-applets
sudo rm -rf /usr/local/lib/python2.5/site-packages/awn/

and also look for awn and avant in synaptic.

#1183

another question for you, when do you think the next major release of awn is coming out? If it's too early to tell yet please notify me.

#1184

I just uninstalled the compiled version and started using the repo. How do I know that I am using the 64 bit version? Or does it detect automatically what version(32 bit or 64 bit) needs to be installed?

#1185

specialk4urmind said: im too noob. Im trying to uninstall it but I don't see it in Synaptic. I wanna do it thru terminal but where is the source directory maybe a hint of where it might be? im super noob

Ran it in terminal:

specialk@SpecialK-LT:~$ sudo make uninstall make: *** No rule to make target `uninstall'. Stop. specialk@SpecialK-LT:~$

the source directory is whereever you put it. if you just opened a default terminal and ran the commands, it's probably ~/avant-window-navigator

nikoPSK said: another question for you, when do you think the next major release of awn is coming out? If it's too early to tell yet please notify me.

not a clue, but if you want to try out the really buggy devel code the 0.3 rewrite is happening here: https://code.launchpad.net/~njpatel/awn/fandabbydosy

Inxsible said: I just uninstalled the compiled version and started using the repo. How do I know that I am using the 64 bit version? Or does it detect automatically what version(32 bit or 64 bit) needs to be installed?

it's completely automatic.

floogy said: I noticed, that there is no awn.pth in /usr/lib/python2.5/site-packages, maybe thats the reason:

$ sudo echo 'awn' |sudo tee /usr/lib/python2.5/site-packages/awn.pth

I'll test that after a reboot.

Hmm.. that did not the trick.

$ update-alternatives --config python
No alternatives for python.
$ ls -ld  /usr/lib/python*
drwxr-xr-x  3 root root 12288 2007-02-23 00:57 /usr/lib/python2.3
drwxr-xr-x 20 root root 12288 2007-10-30 13:46 /usr/lib/python2.4
drwxr-xr-x 24 root root 12288 2007-10-21 13:17 /usr/lib/python2.5
drwxr-xr-x 37 root root  4096 2007-10-21 15:59 /usr/lib/python-support

/usr/lib/python2.4 is used :(

you'll need to set it to use python 2.5 then. this command should do that:

sudo ln -s /usr/bin/python /usr/bin/python2.5
#1186

yum, bugginess. Well, count me in! (I usually try alphas and betas...)

#1187

nikoPSK said: yum, bugginess. Well, count me in! (I usually try alphas and betas...)

it's not even alpha-quality yet....

#1188

o0, well, I'm going in, if I tug once, it means let more rope, If I tug twice pull me up, if I tug three time, well, it's already too late.

#1189

reacocard said: you'll need to set it to use python 2.5 then. this command should do that:

sudo ln -s /usr/bin/python /usr/bin/python2.5

Hmmm... that's bad, it's already linked to python2.5:

$ ls -l /usr/bin/python
lrwxrwxrwx 1 root root 9 2007-10-19 13:38 /usr/bin/python -> python2.5

But:

$ python -V
Python 2.4.4

Ahh, I messed up somehow my system:

$ which python
/usr/local/bin/python

I'll gona look into that, thank you for the hint.

#1190
$ ls -l /usr/local/bin/pyth*
lrwxrwxrwx 1 root root 18 2007-10-30 13:46 /usr/local/bin/python -> /usr/bin/python2.4
$ sudo rm /usr/local/bin/python
$ sudo ln -s /usr/bin/python2.5 /usr/local/bin/python
$ python -V
Python 2.5.1

Finally! It works! Thank you!

... APPLET : /usr/lib/awn/applets/lastfm.desktop APPLET : /usr/lib/awn/applets/digitalClock.desktop

(awn-applet-activation:5791): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:5791): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

ERROR : There is already another notification area running on this screen

aborting...

(awn-applet-activation:5789): Gdk-CRITICAL **: gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)' failed

(awn-applet-activation:5789): Gdk-CRITICAL **: gdk_window_get_origin: assertion GDK_IS_WINDOW (window)' failed /usr/lib/awn/applets/digitalClock/dgTime.py:23: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed self.draw_clock() /usr/lib/awn/applets/digitalClock/dgTime.py:23: Warning: g_object_set_qdata_full: assertion G_IS_OBJECT (object)' failed self.draw_clock() /usr/lib/awn/applets/digitalClock/dgTime.py:23: Warning: g_object_unref: assertion G_IS_OBJECT (object)' failed self.draw_clock() 41990 /usr/lib/awn/applets/digitalClock/digitalClock.py:113: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed gtk.main () /usr/lib/awn/applets/digitalClock/digitalClock.py:113: Warning: g_object_set_qdata_full: assertion G_IS_OBJECT (object)' failed gtk.main () /usr/lib/awn/applets/digitalClock/digitalClock.py:113: Warning: g_object_unref: assertion G_IS_OBJECT (object)' failed gtk.main () /usr/lib/awn/applets/weather/weather.py:530: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed applet = App(awn.uid, awn.orient, awn.height) /usr/lib/awn/applets/weather/weather.py:530: Warning: g_object_set_qdata_full: assertion G_IS_OBJECT (object)' failed applet = App(awn.uid, awn.orient, awn.height) /usr/lib/awn/applets/weather/weather.py:530: Warning: g_object_unref: assertion G_IS_OBJECT (object)' failed applet = App(awn.uid, awn.orient, awn.height)

#1191

The lastfm, wheather and other applets are losing focus. I'm not able to klick on play or something else, because it disappears when moving the mouse from the LastFM button to the play button.

What kind of compiz configuration is responsible for this behavior?

#1192

floogy said: The lastfm, wheather and other applets are losing focus. I'm not able to klick on play or something else, because it disappears when moving the mouse from the LastFM button to the play button.

What kind of compiz configuration is responsible for this behavior?

I think its auto-raise, it doesn't happen for me in click-to-focus mode.

#1193

I can't find that option :(

#1194

floogy said: I can't find that option :(

system -> preferences -> advanced desktop settings general options -> focus & raise behavior -> click to focus

#1195

Ok, I already did that, but a reboot was necessary, thank you.

#1196

hello, i followed ur how to and i already have this icon "awn manager" (in the system>>preferences>>awn manager )but, i cant open it y is that??

First add my AWN repo: (this is a two-line command, paste the entire thing into ther terminal at once.) Code:

echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list

Then add my apt key: Code:

wget http://download.tuxfamily.org/syzygy42/reacocard.asc sudo apt-key add reacocard.asc rm reacocard.asc

Then install AWN: Code:

sudo apt-get update sudo apt-get install avant-window-navigator-bzr awn-core-applets-bz

this is the codes that a used in terminal.

#1197

rhanex said: hello,

i followed ur how to and i already have this icon "awn manager" (in the system>>preferences>>awn manager )but, i cant open it y is that??

<snip>

you have to run awn (applications->accesories->avant window navigator) at least once before awn-manager will work.

#1198

reacocard said: you have to run awn (applications->accesories->avant window navigator) at least once before awn-manager will work.

thanks man!! it worked! :):)

#1199

new revisions of awn and awn-core-applets are up for both 32bit and 64bit, enjoy!

#1200

by revsisions you mean....:confused:

sorry, a bit out of the loop.

#1201

updated

#1202

nikoPSK said: by revsisions you mean....:confused:

sorry, a bit out of the loop.

revision = new devel version = update

like a new version, but smaller.

#1203

I keep on getting this error when running when I hit the install command:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libart-2.0-2 (>= 2.3.18) but 2.3.17-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: libc6 (>= 2.6-1) but 2.5-0ubuntu14 is to be installed Depends: libdbus-1-3 (>= 1.1.1) but 1.0.2-1ubuntu4 is to be installed Depends: libdbus-glib-1-2 (>= 0.74) but 0.73-1 is to be installed Depends: libglade2-0 (>= 1:2.6.1) but 1:2.6.0-3 is to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.12.11-0ubuntu1 is to be installed Depends: libgnomeui-0 (>= 2.19.1) but 2.17.92-0ubuntu1 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.10.11-0ubuntu3 is to be installed Depends: liborbit2 (>= 1:2.14.8) but 1:2.14.7-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.16.2-0ubuntu1 is to be installed Depends: libwnck22 (>= 2.19.5) but it is not installable Depends: libxdamage1 (>= 1:1.1) but 1:1.0.3-3 is to be installed Depends: libxml2 (>= 2.6.29) but 2.6.27.dfsg-1ubuntu3 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libart-2.0-2 (>= 2.3.18) but 2.3.17-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: libc6 (>= 2.6-1) but 2.5-0ubuntu14 is to be installed Depends: libdbus-1-3 (>= 1.1.1) but 1.0.2-1ubuntu4 is to be installed Depends: libdbus-glib-1-2 (>= 0.74) but 0.73-1 is to be installed Depends: libglade2-0 (>= 1:2.6.1) but 1:2.6.0-3 is to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.12.11-0ubuntu1 is to be installed Depends: libgnomeui-0 (>= 2.19.1) but 2.17.92-0ubuntu1 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.10.11-0ubuntu3 is to be installed Depends: libgtop2-7 (>= 2.19.4) but 2.14.8-0ubuntu1 is to be installed Depends: libnotify1 (>= 0.4.4) but 0.4.3-1 is to be installed Depends: libnotify1-gtk2.10 but it is not installable Depends: liborbit2 (>= 1:2.14.8) but 1:2.14.7-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.16.2-0ubuntu1 is to be installed Depends: librsvg2-2 (>= 2.18.1) but 2.16.0-0ubuntu2 is to be installed Depends: libvte9 (>= 1:0.16.9) but 1:0.16.1-0ubuntu1 is to be installed Depends: libwnck22 (>= 2.19.5) but it is not installable Depends: libxdamage1 (>= 1:1.1) but 1:1.0.3-3 is to be installed Depends: libxml2 (>= 2.6.29) but 2.6.27.dfsg-1ubuntu3 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

What can I do?

#1204

mauricevh said: I keep on getting this error when running when I hit the install command:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libart-2.0-2 (>= 2.3.18) but 2.3.17-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: libc6 (>= 2.6-1) but 2.5-0ubuntu14 is to be installed Depends: libdbus-1-3 (>= 1.1.1) but 1.0.2-1ubuntu4 is to be installed Depends: libdbus-glib-1-2 (>= 0.74) but 0.73-1 is to be installed Depends: libglade2-0 (>= 1:2.6.1) but 1:2.6.0-3 is to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.12.11-0ubuntu1 is to be installed Depends: libgnomeui-0 (>= 2.19.1) but 2.17.92-0ubuntu1 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.10.11-0ubuntu3 is to be installed Depends: liborbit2 (>= 1:2.14.8) but 1:2.14.7-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.16.2-0ubuntu1 is to be installed Depends: libwnck22 (>= 2.19.5) but it is not installable Depends: libxdamage1 (>= 1:1.1) but 1:1.0.3-3 is to be installed Depends: libxml2 (>= 2.6.29) but 2.6.27.dfsg-1ubuntu3 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libart-2.0-2 (>= 2.3.18) but 2.3.17-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: libc6 (>= 2.6-1) but 2.5-0ubuntu14 is to be installed Depends: libdbus-1-3 (>= 1.1.1) but 1.0.2-1ubuntu4 is to be installed Depends: libdbus-glib-1-2 (>= 0.74) but 0.73-1 is to be installed Depends: libglade2-0 (>= 1:2.6.1) but 1:2.6.0-3 is to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.12.11-0ubuntu1 is to be installed Depends: libgnomeui-0 (>= 2.19.1) but 2.17.92-0ubuntu1 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.10.11-0ubuntu3 is to be installed Depends: libgtop2-7 (>= 2.19.4) but 2.14.8-0ubuntu1 is to be installed Depends: libnotify1 (>= 0.4.4) but 0.4.3-1 is to be installed Depends: libnotify1-gtk2.10 but it is not installable Depends: liborbit2 (>= 1:2.14.8) but 1:2.14.7-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.16.2-0ubuntu1 is to be installed Depends: librsvg2-2 (>= 2.18.1) but 2.16.0-0ubuntu2 is to be installed Depends: libvte9 (>= 1:0.16.9) but 1:0.16.1-0ubuntu1 is to be installed Depends: libwnck22 (>= 2.19.5) but it is not installable Depends: libxdamage1 (>= 1:1.1) but 1:1.0.3-3 is to be installed Depends: libxml2 (>= 2.6.29) but 2.6.27.dfsg-1ubuntu3 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

What can I do?

are you running an older version of ubuntu? the repo is only compatible with gutsy (7.10).

#1205

i get similar errors too.. it only happens recently... it was successful 1month ago... now i try to install this comes out.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

what can i do?

#1206

ultimatsz said: i get similar errors too.. it only happens recently... it was successful 1month ago... now i try to install this comes out.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

what can i do?

you can tell me what version of ubuntu you're using. if its not gutsy, that's your problem.

#1207

Is there anyway to make the original Ubnutu panel go away completly? I know you can delete the bottom one, but is there a way to remove the panels totaly?

#1208

reacocard said: revision = new devel version = update

like a new version, but smaller.

aha, just got them in this mornings updates.:)

#1209

Eion said: Is there anyway to make the original Ubnutu panel go away completly? I know you can delete the bottom one, but is there a way to remove the panels totaly?

Right Click > Delete the Panel, or is this not what you are looking for?

#1210

deeesseee said: Right Click > Delete the Panel, or is this not what you are looking for?

I think it is not possible to remove the last panel in gnome.

#1211

reacocard said: you can tell me what version of ubuntu you're using. if its not gutsy, that's your problem.

yes it is gutsy. the source i added is also gutsy rep. somehow it does not work and that problems comes out.

#1212

ayoli said: I think it is not possible to remove the last panel in gnome.

You can do it, but you have to go use the configuration tool to do it. I read this on the forums a few days/weeks ago. I haven't done it myself because I like to have it there (auto-hiding) in case awn crashes and I want access to my menu. Right now I only have the Ubuntu-menu, Force-quit applet, and Notification area in that panel. It's nice and small and you can't see it when it auto-hides.

But yeah, you can delete it but not by using the right-click.

#1213

ultimatsz said: i get similar errors too.. it only happens recently... it was successful 1month ago... now i try to install this comes out.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

what can i do?

add these to sources.list:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

and do 'sudo apt-get update' and try it then.

#1214

i get this now....

Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/main Translation-en_SG
Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/restricted Translation-en_SG
Get:1 http://us.archive.ubuntu.com gutsy-updates Release.gpg [191B]            
Get:2 http://archive.ubuntu.com gutsy Release.gpg [191B]                       
Ign http://archive.ubuntu.com gutsy/main Translation-en_SG                     
Ign http://archive.ubuntu.com gutsy/universe Translation-en_SG                 
Ign http://archive.ubuntu.com gutsy/restricted Translation-en_SG               
Get:3 http://download.tuxfamily.org gutsy Release.gpg [189B]                   
Ign http://us.archive.ubuntu.com gutsy-updates/main Translation-en_SG          
Ign http://archive.ubuntu.com gutsy/multiverse Translation-en_SG               
Hit http://archive.ubuntu.com gutsy Release                                    
Hit http://archive.ubuntu.com gutsy/main Packages                              
Hit http://archive.ubuntu.com gutsy/universe Packages                         
Hit http://archive.ubuntu.com gutsy/restricted Packages                       
Hit http://archive.ubuntu.com gutsy/multiverse Packages                       
Hit http://archive.ubuntu.com gutsy/universe Sources                          
Hit http://archive.ubuntu.com gutsy/main Sources                              
Hit http://archive.ubuntu.com gutsy/multiverse Sources                        
Hit http://archive.ubuntu.com gutsy/restricted Sources                         
Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_SG
Hit http://download.tuxfamily.org gutsy Release                                
Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages        
Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources         
Ign http://us.archive.ubuntu.com gutsy-updates/restricted Translation-en_SG    
Get:4 http://us.archive.ubuntu.com gutsy-updates Release [58.5kB]              
Get:5 http://us.archive.ubuntu.com gutsy-updates/main Packages [81.9kB]        
Get:6 http://us.archive.ubuntu.com gutsy-updates/restricted Packages [4263B]   
Get:7 http://us.archive.ubuntu.com gutsy-updates/main Sources [24.0kB]         
Get:8 http://us.archive.ubuntu.com gutsy-updates/restricted Sources [937B]     
Fetched 170kB in 11s (15.3kB/s)                                                
Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/gutsy-updates/main/binary-i386/Packages.bz2  Hash Sum mismatch
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.
administrator@ultima-ubuntu:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages
#1215

ultimatsz said: i get this now....

Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/main Translation-en_SG
Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/restricted Translation-en_SG
Get:1 http://us.archive.ubuntu.com gutsy-updates Release.gpg [191B]            
Get:2 http://archive.ubuntu.com gutsy Release.gpg [191B]                       
Ign http://archive.ubuntu.com gutsy/main Translation-en_SG                     
Ign http://archive.ubuntu.com gutsy/universe Translation-en_SG                 
Ign http://archive.ubuntu.com gutsy/restricted Translation-en_SG               
Get:3 http://download.tuxfamily.org gutsy Release.gpg [189B]                   
Ign http://us.archive.ubuntu.com gutsy-updates/main Translation-en_SG          
Ign http://archive.ubuntu.com gutsy/multiverse Translation-en_SG               
Hit http://archive.ubuntu.com gutsy Release                                    
Hit http://archive.ubuntu.com gutsy/main Packages                              
Hit http://archive.ubuntu.com gutsy/universe Packages                         
Hit http://archive.ubuntu.com gutsy/restricted Packages                       
Hit http://archive.ubuntu.com gutsy/multiverse Packages                       
Hit http://archive.ubuntu.com gutsy/universe Sources                          
Hit http://archive.ubuntu.com gutsy/main Sources                              
Hit http://archive.ubuntu.com gutsy/multiverse Sources                        
Hit http://archive.ubuntu.com gutsy/restricted Sources                         
Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_SG
Hit http://download.tuxfamily.org gutsy Release                                
Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages        
Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources         
Ign http://us.archive.ubuntu.com gutsy-updates/restricted Translation-en_SG    
Get:4 http://us.archive.ubuntu.com gutsy-updates Release [58.5kB]              
Get:5 http://us.archive.ubuntu.com gutsy-updates/main Packages [81.9kB]        
Get:6 http://us.archive.ubuntu.com gutsy-updates/restricted Packages [4263B]   
Get:7 http://us.archive.ubuntu.com gutsy-updates/main Sources [24.0kB]         
Get:8 http://us.archive.ubuntu.com gutsy-updates/restricted Sources [937B]     
Fetched 170kB in 11s (15.3kB/s)                                                
Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/gutsy-updates/main/binary-i386/Packages.bz2  Hash Sum mismatch
Reading package lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.
administrator@ultima-ubuntu:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

try to change this:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

with this:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates restricted main multiverse universe
deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates restricted main multiverse universe
deb http://us.archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe
deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe

then :

sudo apt-get update
#1216

ayoli said: try to change this:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

with this:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates restricted main multiverse universe
deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates restricted main multiverse universe
deb http://us.archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe
deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe

then :

sudo apt-get update

don't do the -proposed ones, I do not build against them and I have seen them break systems before. (I do build against -updates though since that is quite stable)

also, for those having the problem, are you on 64bit or 32bit?

#1217

I may have missed this one, but is there a trick for getting the Exaile plugin working on 32 bit? Every time I try to install it it doesn't show up in the plugin list. (Please forgive me if I've asked this before, I just got done with taking a couple of days pf reinstalling Ubuntu to get rid of my WinXP dual boot and cleaning things up and I couldn't get my Nvidia drivers working for anything until last night. My brain's kind of a blur at this point.)

#1218

reacocard said: don't do the -proposed ones, I do not build against them and I have seen them break systems before. (I do build against -updates though since that is quite stable)

also, for those having the problem, are you on 64bit or 32bit?

32bit... my guess is a update of awn that cause this problem... (i think) if problem not solved i guess i have to do a fresh install again then

edit: gave it a try again and it works now.. not sure why

#1219

Thanks for the tips, I think I will just keep the bar up at the top with some minimal stuff, just in case something does happen. I also need the "System Updates" notifier as I can't find one for AWN

#1220

DJ_Peng said: I may have missed this one, but is there a trick for getting the Exaile plugin working on 32 bit? Every time I try to install it it doesn't show up in the plugin list. (Please forgive me if I've asked this before, I just got done with taking a couple of days pf reinstalling Ubuntu to get rid of my WinXP dual boot and cleaning things up and I couldn't get my Nvidia drivers working for anything until last night. My brain's kind of a blur at this point.)

the exaile plugin installs into exaile, not AWN. it should be available from within exaile's plugin manager. if you're having trouble loading it into exaile, run exaile from a terminal, try to load the plugin and post the output here.

#1221

hi ive been having a lot of probelms trying to get my awn dock to work again. i had everything set up previously working great, and then i made the mistake of trying to install awn curves. After following the linked guide for curves, i decided i didnt like it and tried to revert back to original awn with the OSX theme provided in the mac4lin pack. ever since i cannot get awn to allow me to add new launchers to the dock, either through the manager or by dragging and dropping. my sources.list file is correct (gutsy) and i have tried uninstalling and reinstalling awn close to 8 times now :confused: the dock will run however, but i can only add applets :( in addition, there are no title names above any of the applets, and i cannot get the osx theme back. although it is in the theme settings checked as applied, it isnt... thanks for any help

#1222

Actually that's where I was trying to install it.Here's what comes up, but some of the errors are from my theme.

peng@IceBox:~$ exaile

Failed to load plugin Traceback (most recent call last): File "/usr/share/exaile/plugins/manager.py", line 85, in initialize_plugin plugin = __import__(re.sub('\.pyc?$', '', file)) File "/home/peng/.exaile/plugins/traybuttons.py", line 20, in <module> import xl.plugins as plugins ImportError: No module named plugins Plugins 'Windows multimedia keys' version '0.1.1' loaded successfully Plugins 'Did You Know' version '0.4' loaded successfully Plugins 'Shoutcast Radio' version '0.2' loaded successfully Plugins 'Mini Mode' version '0.4.1' loaded successfully Failed to load plugin Traceback (most recent call last): File "/usr/share/exaile/plugins/manager.py", line 85, in initialize_plugin plugin = __import__(re.sub('\.pyc?$', '', file)) File "/home/peng/.exaile/plugins/hotkeys.py", line 2, in <module> import xl.plugins as plugins ImportError: No module named plugins Failed to load plugin Traceback (most recent call last): File "/usr/share/exaile/plugins/manager.py", line 85, in initialize_plugin plugin = __import__(re.sub('\.pyc?$', '', file)) File "/home/peng/.exaile/plugins/combopanelselect.py", line 21, in <module> import xl.plugins as plugins ImportError: No module named plugins Failed to load plugin Traceback (most recent call last): File "/usr/share/exaile/plugins/manager.py", line 85, in initialize_plugin plugin = __import__(re.sub('\.pyc?$', '', file)) File "/home/peng/.exaile/plugins/notaskbarentry.py", line 4, in <module> import xl.plugins as plugins ImportError: No module named plugins Plugins 'Desktop Cover' version '0.2' loaded successfully Plugins 'IM Status' version '0.11' loaded successfully Plugins 'Update Notifier' version '0.2' loaded successfully Failed to load plugin Traceback (most recent call last): File "/usr/share/exaile/plugins/manager.py", line 85, in initialize_plugin plugin = __import__(re.sub('\.pyc?$', '', file)) File "/home/peng/.exaile/plugins/sound-juicer.py", line 20, in <module> import xl.plugins as plugins ImportError: No module named plugins Plugins 'Alarm Clock' version '0.1' loaded successfully

(exaile.py:4458): WARNING : Invalid borders specified for theme pixmap: /home/peng/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Frame-Gap/frame1.png, borders don't fit within the image

(exaile.py:4458): WARNING : Invalid borders specified for theme pixmap: /home/peng/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Range/null.png, borders don't fit within the image Using multimedia keys from: gnome Created db for thread Thread-1 {'Thread-1': <sqlite3.Connection object at 0x8a13a70>} loading tracks... Closed db for thread Thread-1 done loading tracks... loading songs Clearing tracks cache Importing /home/peng/.exaile/saved/playlist0000.m3u /usr/share/exaile/xl/trackslist.py:125: GtkWarning: gdk_pixbuf_copy_area: assertion `src_x >= 0 && src_x + width <= src_pixbuf->width' failed star.copy_area(0, 0, star_size, star_size, full_image, star_size * x, 0)

(exaile.py:4458): WARNING : Invalid borders specified for theme pixmap: /home/peng/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Tabs/notebook_top_flat.png, borders don't fit within the image Last playlist loaded Exception in thread Thread-5: Traceback (most recent call last): File "threading.py", line 460, in __bootstrap self.run() File "threading.py", line 440, in run self.__target(*self.__args, **self.__kwargs) File "/home/peng/.exaile/plugins/updates.py", line 28, in start_thread urllib.urlopen('http://exaile.org/current_version.txt').read().split('.')) ValueError: invalid literal for int() with base 10: '11b\n'

Loading page 0

(exaile.py:4458): WARNING : Invalid borders specified for theme pixmap: /home/peng/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Frame-Gap/frame1.png, borders don't fit within the image Fetching available plugin list Traceback (most recent call last): File "/usr/share/exaile/plugins/gui.py", line 229, in done_fetching (file, name, version, author, description) = line.split('\t') ValueError: need more than 1 value to unpack Downloading awn.py from http://www.exaile.org/plugins/plugins.py?version=branch/0.2.10&plugin=awn.py

(exaile.py:4458): WARNING : Invalid borders specified for theme pixmap: /home/peng/.themes/Mac4Lin_GTK_Aqua_v0.3/gtk-2.0/Buttons/button-default.png, borders don't fit within the image Last active is: 0 Exiting, bye!

#1223

DJ_Peng said: Actually that's where I was trying to install it.Here's what comes up, but some of the errors are from my theme.

odd, do you have the latest version of Exaile? (0.2.11)

#1224

Actually no, I have 0.2.10 from the repos.Does the plugin I have only work with the newest version?

#1225

DJ_Peng said: Actually no, I have 0.2.10 from the repos.Does the plugin I have only work with the newest version?

probably. it's always best to have the newest, grab 0.2.11 off exaile.org and try again.

#1226

Will do. I was hoping to stick with the version in the repos to try to make keeping updated easier, but Ecaile does have an update function so I'll grab that version. I'll let you know how it goes.

#1227

DJ_Peng said: Will do. I was hoping to stick with the version in the repos to try to make keeping updated easier, but Ecaile does have an update function so I'll grab that version. I'll let you know how it goes.

easiest way to keep updated is via the ubuntu repo mentioned on exaile's downloads page. it usually gets new exaile versions within 24 hours of release. ( I actually maintain that repo as well :mrgreen: )

#1228

That was exactly what the doctor ordered! Thanks, reacocard!:guitar:

#1229

echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list [B] please help[/B]

do i need too download the SOURCES as well?

i unchecked it

thanks

#1230

MozartlovesUbun2 said: [B]

please help[/B]

do i need too download the SOURCES as well?

i unchecked it

thanks

no the deb-src is not needed, I simply include it because it can be useful in some situations and it's harmless otherwise.

#1231

Well i followed the instructions, seemed to install ok. now have the awn manager in preferences. so I click on it and nothing loads????:confused:

any suggestions plz?

#1232

davidallan said: Well i followed the instructions, seemed to install ok. now have the awn manager in preferences. so I click on it and nothing loads????:confused:

any suggestions plz?

Same problem here. Any help?

#1233

Are you running Applications > Accessories > Avant Window Navigator? Or running avant-window-navigator in a Terminal window or via Alt-F2? The entry under Preferences is the preference (configuration) window only, not AWN itself.

#1234

ah didnt see it there under accessories!! many thanks chief!:popcorn:

DJ_Peng said: Are you running Applications > Accessories > Avant Window Navigator? Or running avant-window-navigator in a Terminal window or via Alt-F2? The entry under Preferences is the preference (configuration) window only, not AWN itself.

#1235

Glad to be able to help :guitar:

#1236

thanks for the help. but I got another problem.

I got it started, and can add applets to it, but I can't add any launchers. I tried dragging them to dock (from application window) but nothing happens. Any ideas??

Thank, JobyJoe

#1237

Dragging launchers to the dock doesn't work for me either. I've had to create my dock launchers manually. There's a tab inm the config window for it.

#1238

I can't even add them manually. I'll create the launcher in the config window, but it won't show on the dock. Any ideas??

#1239

Try closing the dock then restarting it, That seems to work for me.

#1240

Thanks for the help. It turns out, I didn't have the Launcher/Taskmanager applet active. Got it figured out now. Thanks for the help though.

#1241

I'm brand new to this and I did everything in the howto, but it didn't work. Here's what my terminal looks like:

t-window-navigatorownload.tuxfamily.org/syzygy42 gutsy avan 
> deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list
deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
zach@zach-desktop:~$ 
zach@zach-desktop:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc
--01:11:21--  http://download.tuxfamily.org/syzygy42/reacocard.asc
           => `reacocard.asc.2'
Resolving download.tuxfamily.org... 88.191.250.18
Connecting to download.tuxfamily.org|88.191.250.18|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682         --.--K/s             

01:11:21 (52.03 MB/s) - `reacocard.asc.2' saved [1682/1682]

zach@zach-desktop:~$ sudo apt-key add reacocard.asc
OK
zach@zach-desktop:~$ rm reacocard.ascsudo apt-get update
rm: cannot remove `reacocard.ascsudo': No such file or directory
rm: cannot remove `apt-get': No such file or directory
rm: cannot remove `update': No such file or directory
zach@zach-desktop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Couldn't find package avant-window-navigator-bzr
zach@zach-desktop:~$ 

Any ideas?

#1242

sporkubus said: I'm brand new to this and I did everything in the howto, but it didn't work. Here's what my terminal looks like:

t-window-navigatorownload.tuxfamily.org/syzygy42 gutsy avan 
> deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list
deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
zach@zach-desktop:~$ 
zach@zach-desktop:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc
--01:11:21--  http://download.tuxfamily.org/syzygy42/reacocard.asc
           => `reacocard.asc.2'
Resolving download.tuxfamily.org... 88.191.250.18
Connecting to download.tuxfamily.org|88.191.250.18|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682         --.--K/s             

01:11:21 (52.03 MB/s) - `reacocard.asc.2' saved [1682/1682]

zach@zach-desktop:~$ sudo apt-key add reacocard.asc
OK
zach@zach-desktop:~$ rm reacocard.ascsudo apt-get update
rm: cannot remove `reacocard.ascsudo': No such file or directory
rm: cannot remove `apt-get': No such file or directory
rm: cannot remove `update': No such file or directory
zach@zach-desktop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Couldn't find package avant-window-navigator-bzr
zach@zach-desktop:~$ 

Any ideas?

paste commands one line at a time unless otherwise specified.

#1243

I followed the install, and forgive me I am new to ubuntu, but i am having some trouble. this is what i got.

milby@milby-laptop:~$ echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list

[sudo] password for milby: deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator milby@milby-laptop:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc --00:14:07-- http://download.tuxfamily.org/syzygy42/reacocard.asc => `reacocard.asc' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682 --.--K/s

00:14:13 (2.48 MB/s) - `reacocard.asc' saved [1682/1682]

milby@milby-laptop:~$ sudo apt-key add reacocard.asc OK milby@milby-laptop:~$ rm reacocard.asc milby@milby-laptop:~$ rm reacocard.asc rm: cannot remove `reacocard.asc': No such file or directory milby@milby-laptop:~$ sudo apt-get update Get:1 http://download.tuxfamily.org feisty Release.gpg [189B] Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US Get:2 http://download.tuxfamily.org gutsy Release.gpg [189B] Get:3 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Hit http://download.tuxfamily.org feisty Release Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://us.archive.ubuntu.com gutsy/restricted Translation-en_US Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Get:4 http://download.tuxfamily.org gutsy Release [10.9kB] Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/restricted Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://download.tuxfamily.org feisty/eyecandy Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Hit http://us.archive.ubuntu.com gutsy/restricted Sources Get:5 http://download.tuxfamily.org gutsy/avant-window-navigator Packages [1952B] Get:6 http://download.tuxfamily.org gutsy/avant-window-navigator Sources [673B] Fetched 13.7kB in 2s (5936B/s) Reading package lists... Done milby@milby-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages milby@milby-laptop:~$

i went to applications and its not there so its more than obvious something went wrong. any help appreciated.

#1244

ride1226 said: I followed the install, and forgive me I am new to ubuntu, but i am having some trouble. this is what i got.

milby@milby-laptop:~$ echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list

[sudo] password for milby: deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator milby@milby-laptop:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc --00:14:07-- http://download.tuxfamily.org/syzygy42/reacocard.asc => `reacocard.asc' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682 --.--K/s

00:14:13 (2.48 MB/s) - `reacocard.asc' saved [1682/1682]

milby@milby-laptop:~$ sudo apt-key add reacocard.asc OK milby@milby-laptop:~$ rm reacocard.asc milby@milby-laptop:~$ rm reacocard.asc rm: cannot remove `reacocard.asc': No such file or directory milby@milby-laptop:~$ sudo apt-get update Get:1 http://download.tuxfamily.org feisty Release.gpg [189B] Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US Get:2 http://download.tuxfamily.org gutsy Release.gpg [189B] Get:3 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Hit http://download.tuxfamily.org feisty Release Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://us.archive.ubuntu.com gutsy/restricted Translation-en_US Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Get:4 http://download.tuxfamily.org gutsy Release [10.9kB] Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/restricted Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://download.tuxfamily.org feisty/eyecandy Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Hit http://us.archive.ubuntu.com gutsy/restricted Sources Get:5 http://download.tuxfamily.org gutsy/avant-window-navigator Packages [1952B] Get:6 http://download.tuxfamily.org gutsy/avant-window-navigator Sources [673B] Fetched 13.7kB in 2s (5936B/s) Reading package lists... Done milby@milby-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages milby@milby-laptop:~$

i went to applications and its not there so its more than obvious something went wrong. any help appreciated.

go to system->administration->software source, and under the updates tab make sure the first, second and fourth checkboxes are ticked (NOT the third). Close the window, and then do sudo apt-get update and try to install again.

#1245

reacocard said: paste commands one line at a time unless otherwise specified.

Thanks! Don't know how I missed that. Works like a charm now!

#1246

still havin troubles. maybe im just dumb or something but things never work for me on here. this is wat i got.

milby@milby-laptop:~$ sudo apt-get update [sudo] password for milby: Get:1 http://download.tuxfamily.org feisty Release.gpg [189B] Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US Get:2 http://download.tuxfamily.org gutsy Release.gpg [189B] Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Hit http://download.tuxfamily.org feisty Release Hit http://download.tuxfamily.org gutsy Release Hit http://download.tuxfamily.org feisty/eyecandy Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources Get:3 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Fetched 3B in 3s (1B/s) Reading package lists... Done milby@milby-laptop:~$ echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator milby@milby-laptop:~$ http://download.tuxfamily.org/syzygy42/reacocard.asc bash: http://download.tuxfamily.org/syzygy42/reacocard.asc: No such file or directory milby@milby-laptop:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc --11:40:56-- http://download.tuxfamily.org/syzygy42/reacocard.asc => `reacocard.asc' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682 --.--K/s

11:40:57 (250.88 KB/s) - `reacocard.asc' saved [1682/1682]

milby@milby-laptop:~$ sudo apt-key add reacocard.asc OK milby@milby-laptop:~$ rm reacocard.asc milby@milby-laptop:~$ sudo apt-get update Get:1 http://download.tuxfamily.org feisty Release.gpg [189B] Get:2 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US Get:3 http://download.tuxfamily.org gutsy Release.gpg [189B] Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Hit http://download.tuxfamily.org feisty Release Hit http://download.tuxfamily.org gutsy Release Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://download.tuxfamily.org feisty/eyecandy Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Fetched 3B in 1s (2B/s) Reading package lists... Done milby@milby-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages milby@milby-laptop:~$

#1247

ride1226 said: still havin troubles. maybe im just dumb or something but things never work for me on here. this is wat i got.

milby@milby-laptop:~$ sudo apt-get update [sudo] password for milby: Get:1 http://download.tuxfamily.org feisty Release.gpg [189B] Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US Get:2 http://download.tuxfamily.org gutsy Release.gpg [189B] Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Hit http://download.tuxfamily.org feisty Release Hit http://download.tuxfamily.org gutsy Release Hit http://download.tuxfamily.org feisty/eyecandy Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources Get:3 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Fetched 3B in 3s (1B/s) Reading package lists... Done milby@milby-laptop:~$ echo 'deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator' | sudo tee -a /etc/apt/sources.list

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator milby@milby-laptop:~$ http://download.tuxfamily.org/syzygy42/reacocard.asc bash: http://download.tuxfamily.org/syzygy42/reacocard.asc: No such file or directory milby@milby-laptop:~$ wget http://download.tuxfamily.org/syzygy42/reacocard.asc --11:40:56-- http://download.tuxfamily.org/syzygy42/reacocard.asc => `reacocard.asc' Resolving download.tuxfamily.org... 88.191.250.18 Connecting to download.tuxfamily.org|88.191.250.18|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1,682 (1.6K) [application/octet-stream]

100%[====================================>] 1,682 --.--K/s

11:40:57 (250.88 KB/s) - `reacocard.asc' saved [1682/1682]

milby@milby-laptop:~$ sudo apt-key add reacocard.asc OK milby@milby-laptop:~$ rm reacocard.asc milby@milby-laptop:~$ sudo apt-get update Get:1 http://download.tuxfamily.org feisty Release.gpg [189B] Get:2 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US Get:3 http://download.tuxfamily.org gutsy Release.gpg [189B] Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Hit http://download.tuxfamily.org feisty Release Hit http://download.tuxfamily.org gutsy Release Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://download.tuxfamily.org feisty/eyecandy Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Fetched 3B in 1s (2B/s) Reading package lists... Done milby@milby-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages milby@milby-laptop:~$

try

sudo apt-get upgrade
sudo apt-get install avant-window-navigator
#1248

still has unmet dependencies. Im really becoming frustrated because everything i do in ubuntu under terminal has problems even when i follow step by step. I really hope i can get this OS working right. Here is what i was given this time.

smilby@milby-laptop:~$ sudo -i [sudo] password for milby: root@milby-laptop:~# apt-get upgrade Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. root@milby-laptop:~# apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that the package is simply not installable and a bug report against that package should be filed. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator: Depends: libawn0 (>= 0.1.9) but it is not going to be installed Depends: libwnck18 (>= 2.15.90) but it is not installable E: Broken packages root@milby-laptop:~#

#1249

ride1226 said: still has unmet dependencies. Im really becoming frustrated because everything i do in ubuntu under terminal has problems even when i follow step by step. I really hope i can get this OS working right. Here is what i was given this time.

smilby@milby-laptop:~$ sudo -i [sudo] password for milby: root@milby-laptop:~# apt-get upgrade Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. root@milby-laptop:~# apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that the package is simply not installable and a bug report against that package should be filed. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator: Depends: libawn0 (>= 0.1.9) but it is not going to be installed Depends: libwnck18 (>= 2.15.90) but it is not installable E: Broken packages root@milby-laptop:~#

I think I know now. Check your sources.list entries for the awn repo. If they contain the word 'feisty', change that to 'gutsy', then apt-get update and try to install again.

#1250

you have to forgive my newbness im sorry. how do i get to sources.list? i think im a going to do a fresh install and then get this on there and try to do the curve to it. of course the problem may also be that i have yet to get compiz program working correctly? god im bad at this haha,

#1251

/etc/apt/sources.list

#1252

im typing that in and getting this

milby@milby-laptop:~$ /etc/apt/sources.list bash: /etc/apt/sources.list: Permission denied milby@milby-laptop:~$ sudo -i [sudo] password for milby: root@milby-laptop:~# /etc/apt/sources.list -bash: /etc/apt/sources.list: Permission denied root@milby-laptop:~#

scratch that ifound it. lets see if it works. it did say feisty so i changed it to gutsy.

#1253

You have to use something like gEdit or nano. It's considered a text file.

#1254

changed the one in sources.list to gutsy the updated and tried to install and heres wht i got. very frustrating.

root@milby-laptop:~# apt-get update Ign http://download.tuxfamily.org gutsy Release.gpg Ign http://download.tuxfamily.org gutsy/eyecandy Translation-en_US Get:1 http://download.tuxfamily.org gutsy Release.gpg [189B] Get:2 http://us.archive.ubuntu.com gutsy Release.gpg [191B] Ign http://us.archive.ubuntu.com gutsy/main Translation-en_US Ign http://us.archive.ubuntu.com gutsy/universe Translation-en_US Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_US Ign http://download.tuxfamily.org gutsy Release Ign http://us.archive.ubuntu.com gutsy/multiverse Translation-en_US Hit http://us.archive.ubuntu.com gutsy Release Hit http://download.tuxfamily.org gutsy Release Ign http://download.tuxfamily.org gutsy/eyecandy Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Packages Hit http://download.tuxfamily.org gutsy/avant-window-navigator Sources Err http://download.tuxfamily.org gutsy/eyecandy Packages 404 Not Found Hit http://us.archive.ubuntu.com gutsy/main Packages Hit http://us.archive.ubuntu.com gutsy/universe Packages Hit http://us.archive.ubuntu.com gutsy/multiverse Packages Hit http://us.archive.ubuntu.com gutsy/universe Sources Hit http://us.archive.ubuntu.com gutsy/main Sources Hit http://us.archive.ubuntu.com gutsy/multiverse Sources Fetched 2B in 9s (0B/s) Failed to fetch http://download.tuxfamily.org/3v1deb/dists/gutsy/eyecandy/binary-i386/Packages.gz 404 Not Found Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead. root@milby-laptop:~# apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting avant-window-navigator-bzr instead of avant-window-navigator Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that the package is simply not installable and a bug report against that package should be filed. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed E: Broken packages root@milby-laptop:~#

all i did was double click sources.list and it opened a window where i changed the one thing that said feisty to gutsy. maybe that was wrong.

#1255

I just did an update on mine and I can reach the repos just fine.

#1256

http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/

There's a list of all the packages. Either do a wget or save them from the browser, then dpkg them.

#1257

i am utterly confused and frustrated. im gonna try a fresh install maybe i messed something up. on a completly fresh install maybe i can get compiz to work and then this. that would make my day.

#1258

Dont do a fresh install just for this. I'll try to contact you on AIM if you'll log in and I'll help you.

#1259

ride1226, from the output in your last attempt, it appears you have trevino's repo as well. that is bad as his repo and mine are known to conflict, you'll have to disable his repo by removing it from sources.list before you can use mine.

#1260

im sorry i didnt catch that post before i reinstalled. I have a brand new fresh copy on now. So if you are still around you can catch me on aim. Im on now and will be the remainder of the night. Thanks again for all the help.

#1261

Guys i need help with 2 issues;

  1. After i installed Awn, i started getting an error at the startup saying ; The panel encountered a problem while loading "OAFIID: Deskbar_Applet".

Do you want to delete the applet from your configuration?

  1. Im trying to add a firefox launcher which will open a new page by every new click i do but i couldnt make it work. It just opens one window and it doesnt matter how many times you click. I tried writing diffrent things to name and command lines but no luck.

Thanks in advance

#1262

Aras said:

  1. Im trying to add a firefox launcher which will open a new page by every new click i do but i couldnt make it work. It just opens one window and it doesnt matter how many times you click. I tried writing diffrent things to name and command lines but no luck.

Thanks in advance

middle click on a launcher opens a new window.

#1263

Im using touchpad of my laptop mate. How can i middle cilick ?

#1264

How do I add icons of programs I want to the bar?

Thank you

#1265

If they're icons that are in your "Applications" menu, then you just drag them into the left-hand side of the AWN bar.

#1266

Aras said: Im using touchpad of my laptop mate. How can i middle cilick ?

use the left and right buttons togrther emulate middle click.

#1267

what is this? I have had lots of users with broken packages any idea how to fix them reacocard?

The following packages have unmet dependencies: awn-core-applets-bzr: Depends: libawn-bzr but it is not installable Depends: libawn-bzr but it is not installable E: Broken packages

#1268

Junosix said: If they're icons that are in your "Applications" menu, then you just drag them into the left-hand side of the AWN bar.

Tried that. It doesn't work.

How does one add applications to the bar?

Thank you

#1269

The Pinny Parlour said: Tried that. It doesn't work.

How does one add applications to the bar?

Thank you

awn-manager has a section for adding launchers.

#1270

The Pinny Parlour said: Tried that. It doesn't work.

How does one add applications to the bar?

Thank you

you can drag desktop files from /usr/share/applications folder and drop them on the dock, or use awn-manager to create launchers.

#1271

ayoli said: you can drag desktop files from /usr/share/applications folder and drop them on the dock, or use awn-manager to create launchers.

I am also having problems adding launchers. I have tried dragging and dropping and also by adding the using the awn-manager. I am just trying to add Firefox to the launcher, so nothing that i would expect to be difficult. I have restarted awn and also the computer. The applets that I have added work fine.

I am using Gutsy with Nvidia restricted drivers installed and also running compiz, which appears to work just fine.

Any thoughts? John

#1272

Just installed AWN and its great. Thanks for the guide.

#1273

I really like avant-awn gives a nice look. I used your ubuntu gutsy package on my debian sid ! Works good Thanx \\:D/

#1274

guys, so far iI've tried this and craploads of other ways of installing AWN.... neither of them worked :( im beginning to think that this is the conspiracy :( i add the repositories and everything else works good but when it comes to installing awn "sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr" i get

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

i tried to install with synaptic manger but it didn't work as well it says i need some dependencies, and i searched for them but still it didnt work ... i`m kinda ... mad and stuff so please help me solve this problem I'm on 32bit danke :)

#1275

deGz0rx said: guys, so far i`I've tried this and craploads of other ways of installing AWN....

neither of them worked :( i`m beginning to think that this is the conspiracy :( i add the repositories and everything else works good but when it comes to installing awn "sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr" i get

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

i tried to install with synaptic manger but it didn't work as well it says i need some dependencies, and i searched for them but still it didnt work ... i`m kinda ... mad and stuff so please help me solve this problem

danke :)

make sure you have ubuntu-updates and universe enabled, and that your system is completely up-to-date.

#1276

god, forgive me being dumb i managed to fix it 10 minutes after i posted thank you reacocard cheers!

#1277

Hi all. I've poked through portions of the thread, and didn't see the problem that I was running into.

I'm trying to install with Gutsy, AMD64, and after setting up the repository, and refreshing apt-get, I get a 404 error on one of the files that seems to be missing.

Err http://download.tuxfamily.org gutsy/avant-window-navigator awn-core-applets-bzr 0.2.0-bzr248-1 404 Not Found Failed to fetch http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/awn-core-applets-bzr_0.2.0-bzr248-1_amd64.deb 404 Not Found

Searching google for the file, shows it as previously being there from a cached web page, and I find other references but it no longer seems to be there.

Any Ideas would be helpful, thanks.

Devin

#1278

deedward9 said: Hi all. I've poked through portions of the thread, and didn't see the problem that I was running into.

I'm trying to install with Gutsy, AMD64, and after setting up the repository, and refreshing apt-get, I get a 404 error on one of the files that seems to be missing.

Err http://download.tuxfamily.org gutsy/avant-window-navigator awn-core-applets-bzr 0.2.0-bzr248-1 404 Not Found Failed to fetch http://download.tuxfamily.org/syzygy42/pool/gutsy/avant-window-navigator/awn-core-applets-bzr_0.2.0-bzr248-1_amd64.deb 404 Not Found

Searching google for the file, shows it as previously being there from a cached web page, and I find other references but it no longer seems to be there.

Any Ideas would be helpful, thanks.

Devin

Sorry, my bad. Should be fixed now, just apt-get update and try again.

#1279

Can I just ask, does Avant need to have my Visual effects set to Extra to work. I ask because I have followed the instructions at the start of this thread and although I get the icon Avant in Accessories it won't load up. I looks like it's going to for a second but then nothing happens. I'm using Ubuntu 7.10 and I don't have Visual Effects enabled at all as my graphics card doesn't seem to support them on the laptop I'm using, not tried it on my PC at home yet.

#1280

toontastic said: Can I just ask, does Avant need to have my Visual effects set to Extra to work. I ask because I have followed the instructions at the start of this thread and although I get the icon Avant in Accessories it won't load up. I looks like it's going to for a second but then nothing happens. I'm using Ubuntu 7.10 and I don't have Visual Effects enabled at all as my graphics card doesn't seem to support them on the laptop I'm using, not tried it on my PC at home yet.

it needs to have visual effects enabled, doesn't matter what level.

#1281

I've got it working with both Normal and Custom effects active. It seems to simply need Desktop Effects turned on rather than being set to None to work. I do know that as soon as I stop my DE (to run SecondLife on my underpowered machine) AWN dies, although once I turn the Compiz effects back on AWN comes back to life if I didn't shut it down to free more resources.

#1282

ah right looks like i'll have to do without then as my laptop won't even let me have normal effects.

#1283

Hi Ubuntu community,

I'm stuck with a problem.. i can't get AWN installed due to a couple errors.:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

============= I'm new to ubuntu (have been using Gentoo for a while) and the way apt-get works. I've tried to search for a possible solutions, but all i can find is that i have to enable "ubuntu-update and universe" however i have no idea what they mean.

Who can give me a push in the right direction?

thx

EDIT:

maybe it's just me beeing used to gentoo portage but every single package i try to install with apt-get tells me that it couldn't be found. for example:

sudo apt-get install apt-show-versions Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package apt-show-versions

What am i doing wrong?

#1284

programist said: Hi Ubuntu community,

I'm stuck with a problem.. i can't get AWN installed due to a couple errors.:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

============= I'm new to ubuntu (have been using Gentoo for a while) and the way apt-get works. I've tried to search for a possible solutions, but all i can find is that i have to enable "ubuntu-update and universe" however i have no idea what they mean.

Who can give me a push in the right direction?

thx

EDIT:

maybe it's just me beeing used to gentoo portage but every single package i try to install with apt-get tells me that it couldn't be found. for example:

sudo apt-get install apt-show-versions Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package apt-show-versions

What am i doing wrong?

this post details how to enable ubuntu-updates and universe: http://ubuntuforums.org/showpost.php?p=3919673&postcount=1244

as for the can't find any packages, have you run apt-get update yet?

#1285

I know that there have already been a couple of scripts to install AWN, but I made this one for a friend and thought I might as well post it.

This is a simple script that adds the repositories in a separate file in /etc/apt/sources.list.d/ and then prompts you asking if if you would like to install avant at that time and if so it it will ask separately if you would like to install the plugins. Please note that the script does use sudo and you will be prompted for your password.

It does not enable other necessary repositories such as universe but I could add that functionality if people think it would be useful.

#1286

I'm getting the following error while starting avant-window-navigator

:/home/yashi# avant-window-navigator

(avant-window-navigator:8705): WARNING : Failed to make connection to session bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.

(avant-window-navigator:8705): CRITICAL : dbus_g_proxy_new_for_name: assertion `connection != NULL' failed

(avant-window-navigator:8705): CRITICAL : dbus_g_proxy_call: assertion `DBUS_IS_G_PROXY (proxy)' failed

(avant-window-navigator:8705): WARNING : There was an error requesting the name: nnection != NULL' failed

* glibc detected * avant-window-navigator: double free or corruption (out): 0x0820a7a8 ***

Thanks in advance!

#1287

Affinity failed with following error messages

~$ affinity

(affinity:8758): WARNING : Binding '<Control><Alt>a' failed!

Action Engine : Scanning /home/yashi/.gnome2/affinity/actions Action Engine : Scanning /usr/local/share/affinity/actions Application Engine : Scanning /home/yashi/.local/share/applications

(affinity:8758): GLib-CRITICAL **: g_dir_read_name: assertion `dir != NULL' failed

(affinity:8758): GLib-CRITICAL : g_dir_close: assertion dir != NULL' failed Application Engine : Scanning /usr/local/share/applications Application Engine : Scanning /usr/share/applications Application Engine : Scanning /usr/share/applications/kde Application Engine : Scanning /usr/share/applications/screensavers Desktop Search Engine : None You may need to install development packages of either Beagle or Tracker. (affinity:8758): Gtk-CRITICAL : gtk_icon_theme_load_icon: assertion error == NULL || *error == NULL' failed

(affinity:8758): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed

(affinity:8758): Gtk-CRITICAL **: gtk_icon_theme_load_icon: assertion `error == NULL || *error == NULL' failed Segmentation fault (core dumped)

Beagle/beagle-dev/libbeagle-dev/libeagle0 packages have been installed, but still the same problem.

Thanks

#1288

manunani said: I'm getting the following error while starting avant-window-navigator

:/home/yashi# avant-window-navigator

(avant-window-navigator:8705): WARNING : Failed to make connection to session bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.

(avant-window-navigator:8705): CRITICAL : dbus_g_proxy_new_for_name: assertion `connection != NULL' failed

(avant-window-navigator:8705): CRITICAL : dbus_g_proxy_call: assertion `DBUS_IS_G_PROXY (proxy)' failed

(avant-window-navigator:8705): WARNING : There was an error requesting the name: nnection != NULL' failed

* glibc detected * avant-window-navigator: double free or corruption (out): 0x0820a7a8 ***

Thanks in advance!

looks like its failing to connect to DBUS. it also looks like form your command prompt (#) that you're trying to run it as root, AWN should be run as a normal user. running as a normal user will also probably fix the DBUS issue.

manunani said: Affinity failed with following error messages

<snip>

Beagle/beagle-dev/libbeagle-dev/libeagle0 packages have been installed, but still the same problem.

Thanks

I do not support affinity anymore. it has not had any development for a while so I wouldn't be surprised if things are broken.

#1289

Thanks for the quick response.

Starting as normal user fixed the problem.

#1290

luv awn, tried kibba before, but its kind of unstable

#1291

anyone else get this error when trying to build the repository list (apt-get update):

Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gusty/avant-window-navigator/binary-i386/Packages.gz 404 Not Found

#1292

yea, i did!!! it was odd... it finally worked for me but, give it some time...

how long have you been waiting...

if this helps, i don't know..

http://ubuntuforums.org/showthread.php?t=642844

#1293

thanks for the help. Install, uninstall and explanations were all spot on.

#1294

Does anyone know how to make the notification-area background transparent?

#1295

Tripero said: Does anyone know how to make the notification-area background transparent?

not that I know of, you could always do a little tweaking. ;)

#1296

Tripero said: Does anyone know how to make the notification-area background transparent?

not currently possible due to limitations of the notification icon spec. this is scheduled to be fixed by awn 0.3.

#1297

on gutsy the AWN seems to be working fine for me, but the applets that came with it when i installed it on my laptop(diff comp), don't seem to be in any of the directories i installed it to(on this one). when i installed on my laptop i could just add them from the window in picture 1

naes@naestwo:~/awn-curves$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages
naes@naestwo:~/awn-curves$

this seemed to be the only problem with the install. Does broken packages mean that the packages are there but broken, or that the link to them is broken? What can i do to fix this? Should i just try to remove everything and reinstall?

Edit: synaptic wont let me install libawn-bzr....

"libawn-bzr: Depends: libpango1.0-0 (>=1.18.3) but 1.18.2-0ubuntu1 is to be installed" Is something about my repositories off? I can post it.. ??

#1298

nae5 said: the AWN seems to be working fine for me, but the applets that came with it when i installed it on my laptop(diff comp), don't seem to be in any of the directories i installed it to(on this one). when i installed on my laptop i could just add them from the window in picture 1

naes@naestwo:~/awn-curves$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr151-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages
naes@naestwo:~/awn-curves$

this seemed to be the only problem with the install. Does broken packages mean that the packages are there but broken, or that the link to them is broken? What can i do to fix this? Should i just try to remove everything and reinstall?

you have to have universe and ubuntu-updates enabled

#1299
bzr: ERROR: Target directory "avant-window-navigator" already exists.

I keep getting this error when trying to build from bzr. Where is this file located? I think this happened because I closed the gnome-terminal before the bzr command was done.

#1300

Islington said:

bzr: ERROR: Target directory "avant-window-navigator" already exists.


I keep getting this error when trying to build from bzr. Where is this file located? I think this happened because I closed the gnome-terminal before the bzr command was done.

yeah that is why. just do 

rm -r avant-window-navigator

then try it again.
#1301

I don't know if this has been covered, but there are over 1200 posts in this thread...

What would the minimum requirements be for something like this?

Or, what would be some minimal things I could do with this that would work for a slower PC? I don't know all the specs since it's an old PC my dad brought home from work and I'm not near it now. I got ubuntu working and all I know is it has 384 MB RAM.

#1302

O O ok, I see. I had none of those checked off, although universe, multiverse are enabled. What about the other ones? Being security, proposed, and backports. Are they safe?, probably, right?

#1303

RavUn said: I don't know if this has been covered, but there are over 1200 posts in this thread...

What would the minimum requirements be for something like this?

Or, what would be some minimal things I could do with this that would work for a slower PC? I don't know all the specs since it's an old PC my dad brought home from work and I'm not near it now. I got ubuntu working and all I know is it has 384 MB RAM.

fairly low, basically if your system is capable of running compiz you should be fine running awn.

nae5 said: O O ok, I see. I had none of those checked off, although universe, multiverse are enabled. What about the other ones? Being security, proposed, and backports. Are they safe?, probably, right?

everything except -proposed is safe.

#1304

Ok, I installed it and now when I go to Avant Window Navigator from accessories it starts to open and something flashes at the bottom but then it disappears and nothing happens. I tried restarting and still have the same issue.

Do I have to have a particular video card for it to work? I have compiz installed but I don't know if I need to do anything with it...

#1305

RavUn said: Ok, I installed it and now when I go to Avant Window Navigator from accessories it starts to open and something flashes at the bottom but then it disappears and nothing happens. I tried restarting and still have the same issue.

Do I have to have a particular video card for it to work? I have compiz installed but I don't know if I need to do anything with it...

it will probably help to run it from terminal and post whatever happens.

#1306

ok... I run it and it says "Error: Screen isn't composited. Please run compiz (-fusion) or another compositing manager."

I have compiz installed but hadn't ever run it :P

I then try to run compiz and it says:


Checking for Xgl: not present. 
No whitelisted driver found
aborting and using fallback: /usr/bin/metacity 
Window manager warning: Log level 8: gdk_window_set_back_pixmap: assertion `pixmap == NULL || gdk_drawable_get_depth (window) == gdk_drawable_get_depth (pixmap)' failed
Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1000028 (awn_elemen)
Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.

Also, I'm unable to turn on visual effects if that has anything to do with it. I turn it on then it says something like "unable to enable visual effects"

#1307

RavUn said: ok... I run it and it says "Error: Screen isn't composited. Please run compiz (-fusion) or another compositing manager."

I have compiz installed but hadn't ever run it :P

I then try to run compiz and it says:


Checking for Xgl: not present. 
No whitelisted driver found
aborting and using fallback: /usr/bin/metacity 
Window manager warning: Log level 8: gdk_window_set_back_pixmap: assertion `pixmap == NULL || gdk_drawable_get_depth (window) == gdk_drawable_get_depth (pixmap)' failed
Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1000028 (awn_elemen)
Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.

Also, I'm unable to turn on visual effects if that has anything to do with it. I turn it on then it says something like "unable to enable visual effects"

hm, what graphics card do you have? if its an ati/nvidia, did you enable the restricted driver? you have to be able to get compiz working before you can run awn.

#1308

There are times when the awn dock pops above open windows and stays there, despite being set to "keep below" and "auto hide". I am forced to click on the dock and then on the window again to make it go back down. is there a fix for this?

#1309

Hybrid86 said: There are times when the awn dock pops above open windows and stays there, despite being set to "keep below" and "auto hide". I am forced to click on the dock and then on the window again to make it go back down. is there a fix for this?

not to my knowledge, I've seen this problem too.

#1310

reacocard said: hm, what graphics card do you have? if its an ati/nvidia, did you enable the restricted driver? you have to be able to get compiz working before you can run awn.

it also works with xcompmgr isnt it ?

#1311

ayoli said: it also works with xcompmgr isnt it ?

yes, though with some bugs

#1312

Have they stopped packaging AWN for 64 bit systems? I've gotten 2 rounds of updates on my 32 bit system, but nothing so far on my 64-bit system, via the repos.

#1313

LavianoTS386 said: Have they stopped packaging AWN for 64 bit systems? I've gotten 2 rounds of updates on my 32 bit system, but nothing so far on my 64-bit system, via the repos.

my 64-bit builder is AWOL right now, until he gets back there's nothing I can do.

#1314

libwnck-1.so.18: cannot open shared object file

Looks like a bug or upgrade error. Somehow the library libwnck is updated but your config-file (or something) still points to it.

I've managed to solve the problem by copying the updated library 'libwnck-1.so.22.2.4' to be the one which is required. try this:

sudo cp /usr/lib/libwnck-1.so.22.2.4 /usr/lib/libwnck-1.so.18

[COLOR="Red"]Note:[/COLOR] If your libwnck is'nt 22.2.4 you should search your filesystem for libwnck-1.so and use the newest version you can find to copy.

I'm not sure this is genuine but it works for me on 7.10. Good luck!

#1315

jayleesan said: Looks like a bug or upgrade error.

Somehow the library libwnck is updated but your config-file (or something) still points to it.

I've managed to solve the problem by copying the updated library 'libwnck-1.so.22.2.4' to be the one which is required. try this:

sudo cp /usr/lib/libwnck-1.so.22.2.4 /usr/lib/libwnck-1.so.18

[COLOR="Red"]Note:[/COLOR] If your libwnck is'nt 22.2.4 you should search your filesystem for libwnck-1.so and use the newest version you can find to copy.

I'm not sure this is genuine but it works for me on 7.10. Good luck!

already coved in the FAQ on the guide, the problem is upgrading to gutsy without also switching to the gutsy AWN repo, solution is switching to the gutsy AWN repo.

#1316

reacocard said: already coved in the FAQ on the guide, the problem is upgrading to gutsy without also switching to the gutsy AWN repo, solution is switching to the gutsy AWN repo.

Yeah.. well... Been there, done that... Unfortunately updating the repo and re-installing all awn related packages still left me with the same error. So therefor... Might be worth a shot...

#1317

jayleesan said: Yeah.. well... Been there, done that... Unfortunately updating the repo and re-installing all awn related packages still left me with the same error. So therefor... Might be worth a shot...

you may still have had some source-compiled stuff laying around that was causing it then. the repo itself once properly upgraded would not give that error.

#1318

reacocard said: you may still have had some source-compiled stuff laying around that was causing it then. the repo itself once properly upgraded would not give that error.

I guess so... sorry for the inconvenience than...

#1319

-

#1320

kvonb said: The latest update version of AWN doesn't seem to have the option to move the panel to other sides of the screen.

Did it have that option before? I could swear it did!

AWN has never had that option. It will not have it until version 0.3, the current version is 0.2.1

#1321

reacocard said: my 64-bit builder is AWOL right now, until he gets back there's nothing I can do.

For folks willing to test a more unstable version of awn that tests new changes before they enter trunk, the awn-core-testing team has a PPA repo which contains 64bit debs. Reacocard's repo is more stable and the most desirable repo for most users, but the testing PPA does have newer 64bit debs. Though like I said it does contain code that has not yet been declared stable enough for trunk, so use with care.

The repo can be found here: https://launchpad.net/~awn-testing/+archive

Alternatively, if you need a more up to date 64bit debs, you could create your own using the instructions here: http://wiki.awn-project.org/index.php?title=HOWTO:BuildYourOwnDebianPackages

#1322

Well I followed the instructions on how to install and everything looks good. But when I click on the AWN manager nothing happens. my PC just thinks for a second and nothing. Any ideas?

#1323

run this and give the output:

awn-manager

nikoPSK

#1324

reverend1313 said: Well I followed the instructions on how to install and everything looks good. But when I click on the AWN manager nothing happens. my PC just thinks for a second and nothing. Any ideas?

AWN itself must be run at least once before the manager will work.

#1325

reacocard said: AWN itself must be run at least once before the manager will work.

ah, now I know, thanks reacocard.

#1326

-

#1327

kvonb said: Anyone made debs for Kubuntu 7.10 at all?

Kubuntu == Ubuntu for the purposes of packaging. Just use this repo.

#1328

Thank u very very much :D i just wish i could move it around "/

#1329

CupAnoodleS said: Thank u very very much :D

i just wish i could move it around "/

next ver. :p

#1330

looks interesting but doesn't work

#1331

Can you be a little more specific about what isn't working? Is it installing and not starting? I don't mean to sound rude, but there's over a hundred thirty pages of posts, most of which got AWN working, although some after a little trouble. If you can give us some more info we can try to help you get it running. Are you running Ubuntu, or one of the variants, and are in running the 32-bit version or the 64-bit?

#1332

thnx

#1333

I am trying to install AWN but i just get this error:

avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>=1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed

awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>=1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed

What can i do. Anyone have some pointers.

#1334

DeathGrind said: I am trying to install AWN but i just get this error:

avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>=1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed

awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>=1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: python-libawn-bzr but it is not going to be installed

What can i do. Anyone have some pointers.

as mentioned in the guide you have to have the gutsy-updates repository enabled, refer to the guide for more detailed instructions.

#1335

Right off the bat I got this following the first post:



-desktop:~$ sudo apt-key add reacocard.asc
gpg: can't open `reacocard.asc': No such file or directory

I went ahead and did:



sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr

It seemed to install ok. I hope I'm off to a good start :???:

#1336

can i have both kiba dock and awn dock installed ? i have kiba dock installed already, now wanted to try awn

#1337

The only way I can see it working is if you use different mount point for one of them (top or one of the sides), although someone may have other advice.

#1338

kjk85 said: can i have both kiba dock and awn dock installed ? i have kiba dock installed already, now wanted to try awn

Yes, as far as I know, you *can* have them both installed at the same time.

However, I don't know if you can have them both running at the same time, if only because they would overlap each other.

#1339

is the default installation which written in the page 1 included all the packages already like stack ... ?

#1340

kjk85 said: is the default installation which written in the page 1 included all the packages already like stack ... ?

applets bzr got updated, so it should. :)

#1341

Megaqwerty said: Yes, as far as I know, you *can* have them both installed at the same time.

However, I don't know if you can have them both running at the same time, if only because they would overlap each other.

You can have them running at the same time since kiba dock can be configured to stand on each side of your screen (same for cairo-dock). I tried cairo dock which was placed on the left with awn at bottom without pb.

#1342

Good to know, thanks.

#1343

I get a white 1inch thick window at the bottom when I launch avant-window-navigator. What gives? I see no errors on the terminal window when I launch the navigator. Needless to say, Compiz is running.

#1344

BuntuFreak said: I get a white 1inch thick window at the bottom when I launch avant-window-navigator. What gives?

I see no errors on the terminal window when I launch the navigator. Needless to say, Compiz is running.

Looks like an applet that doesn't work.

#1345

Okay, so if its some applet that does not work, then how do I find out which? I have a chicken and egg problem.

My compiz effects are enabled, but I have no window captions. More to the point, no characters posting to my Gnome Terminal. So I cannot see what I'm typing.

I was thinking I could type 'avant-window-navigator' at the Terminal prompt and maybe see which applet was the culprit. But to see the results, I would have to turn compiz off.

Any suggestions on how I can go about finding the offending applet?

P.S. Another thread said I needed emerald. I did install emerald. And entered it as the command under "Window Decorations" in the Compiz Settings Manager. That has made no difference. But I'm wondering if all my problems are related to each other. So please opine.

Thanks much.

#1346

I can't help with why some effects aren't working, but I may be able to help with Emerald. I went through the missing window decorations issue when I upgraded to Gutsy and Emerald requires a specific command when it gets invoked at login. What I found worked (from others on these forums) is to put Emerald in the System > Preferences > Sessions > Startup Programs but with this in the Command box

emerald --replaceIf you don't have the "--replace" you may want to try it and see if that helps. Just putting it in the Compiz Settings Manager definitely wasn't enough for me.

#1347

Okay I have uninstalled and reinstalled this on my home computer many times now. The bar is not showing up at the bottom of my screen like it should. I watched the installation and I could see no error messages. When I try to launch the program it a box shows up by the by application and then goes away.

I installed this on my work computer with no problems it is working great there. The only difference is I have a wide screen monitor at home. I am wondering if I damaged Ubuntu some way now and I have to start all over again,

I have a ATI 1950X PRO and Sceptre 20 wide screen monitor

I am completely new to linux and Ubuntu so I know that is part of the problem too.

#1348

dalvon said: Okay I have uninstalled and reinstalled this on my home computer many times now. The bar is not showing up at the bottom of my screen like it should. I watched the installation and I could see no error messages. When I try to launch the program it a box shows up by the by application and then goes away.

I installed this on my work computer with no problems it is working great there. The only difference is I have a wide screen monitor at home. I am wondering if I damaged Ubuntu some way now and I have to start all over again,

I have a ATI 1950X PRO and Sceptre 20 wide screen monitor

I am completely new to linux and Ubuntu so I know that is part of the problem too.

Okay I actually found the problem, but I am not sure how to fix it.

When I ran the following from terminal avant-window-navigator

I got the below error message

Error: Screen isn't composited. Please run compiz (-fusion) or another compositing manager.

So does that mean I have to reinstall compiz I have checked it is installed

#1349

dalvon said: Okay I actually found the problem, but I am not sure how to fix it.

When I ran the following from terminal avant-window-navigator

I got the below error message

Error: Screen isn't composited. Please run compiz (-fusion) or another compositing manager.

So does that mean I have to reinstall compiz I have checked it is installed

Well I fixed it it was my video drivers I had to install xserver-xgl to get it work and of course I had to reboot

#1350

Quick question, I have AWN-BRZ installed and was wondering if there is any settings file that I can edit to increase the "animation" speed. for instance, it's setup to autohide... and when I move the cursor to the bottom of the screen, it slowly and very smoothly comes up while the icons are "bouncing" at regular speed. This last part tells me that it's not because my comp. can't handle it but that it's setup to come up slow... is there a way to speed this up?

#1351

Victormd said: Quick question, I have AWN-BRZ installed and was wondering if there is any settings file that I can edit to increase the "animation" speed. for instance, it's setup to autohide... and when I move the cursor to the bottom of the screen, it slowly and very smoothly comes up while the icons are "bouncing" at regular speed. This last part tells me that it's not because my comp. can't handle it but that it's setup to come up slow... is there a way to speed this up?

In the 32-bit version there is a gconf option to disable bar (but not icon) animations. Open 'gconf-editor', navigate to apps->avant-window-manager and check the box for no_bar_resize_animation. If that doesn't fix your issue then no, there is no option to change the speed.

#1352

reacocard said: as mentioned in the guide you have to have the gutsy-updates repository enabled, refer to the guide for more detailed instructions.

edit: Nevermind, got it! I was looking at my sources file, and seeing the deb download.tuxfamily.org repositories. But yeah, it was actually the enabling of the "Recommended Updates (gutsy-updates)" tickbox in the System --> Admin --> Software Sources --> Updates tab.

btw: Reacocard, you obviously being the pro on this... Any idea if there's plans, or what the status is, of making it so that minimized apps actually show up in the dock as they do in OSX, ie miniature versions of the actual windows themselves? Gotta be the one big thing holding AWN back right now, IMO.

#1353

Recoil42 said: edit: Nevermind, got it! I was looking at my sources file, and seeing the deb download.tuxfamily.org repositories. But yeah, it was actually the enabling of the "Recommended Updates (gutsy-updates)" tickbox in the System --> Admin --> Software Sources --> Updates tab.

btw: Reacocard, you obviously being the pro on this... Any idea if there's plans, or what the status is, of making it so that minimized apps actually show up in the dock as they do in OSX, ie miniature versions of the actual windows themselves? Gotta be the one big thing holding AWN back right now, IMO.

That's somewhat difficult, since it involves a much higher level of integration with compiz. No doubt it will be implemented at some point in the distant future, but for now the closest is the window previews plugin in compiz.

#1354

I keep getting the same error.

tony@tony-desktop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr155-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages
#1355

tlages said: I keep getting the same error.

tony@tony-desktop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed
                              Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                              Depends: libawn-bzr (= 0.2.0-bzr155-1) but it is not going to be installed
  awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed
                        Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed
                        Depends: libawn-bzr but it is not going to be installed
                        Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages

you have to have ubuntu-updates enabled, as it says in the guide.

#1356

Thanks.

#1357

I reinstalled awn after removing awn-curves. Now none of my launchers are visible. I see them in the awn-manager, but the only thing showing are the applets.

#1358

Whoops wrong thread sorry

#1359

Whee, updates! Could you let us know what were the changes?

#1360

Vadi said: Whee, updates! Could you let us know what were the changes?

Looking at the bzr commit logs, it appears to be almost entirely minor bugfixes.

Now before anyone says "why didn't I get an update?", the update was only for amd64. I just got a new 64bit computer and I don't yet have a 32bit build environment set up. Eventually I will, and then releases for 32bit and 64bit will be synchronized.

#1361

Actually I got updates for my 32bit install a couple hours ago. I didn't wait for the changelog so I'll be looking for that info myself later on. Thanks for all your hard work, reacocard. You rock!

#1362

reacocard said: Looking at the bzr commit logs, it appears to be almost entirely minor bugfixes.

Now before anyone says "why didn't I get an update?", the update was only for amd64. I just got a new 64bit computer and I don't yet have a 32bit build environment set up. Eventually I will, and then releases for 32bit and 64bit will be synchronized.

huh ? so why did I have updates for 32 bits a couple of hours ago ? did you build them with the right flags ?

#1363

ayoli said: huh ? so why did I have updates for 32 bits a couple of hours ago ? did you build them with the right flags ?

huh, odd. maybe there was one I forgot to upload before I switched computers and that's what you got. What version is it? The one I built for 64bit was 0.2.0-bzr166-1.

So let me correct my statement above: there will be no further updates of the 32bit packages until I get a 32bit build environment set up, which may take a few weeks.

#1364

I took an update today and I'm showing I am running avant-window-navigator-bzr version 0.2.0-bzr158-1

#1365

DJ_Peng said: I took an update today and I'm showing I am running avant-window-navigator-bzr version 0.2.0-bzr158-1

ok, so must have just forgotten to upload that one before I switched.

anyway, I may have 32bit builds going again soon, I'm working on making a PPA to replace the current repo. If it works out I'll switch over to using that as my primary builder/host. It means longer times from when I upload to when the packages become available, but it does allow me to build for both 32 and 64 bit at the same time and to build the packages in a clean environment. It also lets me automate it more, so I could even just set up a cron job to automatically upload a new build every day! More on this when I have it.

#1366

Thanks for the info on what some of us got, as well as on your plans for the foreseeable future.

#1367

The PPA is now up and seems to be working fine, anyone interested in trying it out can find it here: https://launchpad.net/~reacocard-awn/+archive. I would really appreciate having a few people test before I put it up on the main page. Note that awn-core-applets is not yet built in the PPA, it will likely be ready within an hour however.

EDIT: may be a bit longer on awn-core-applets than I had expected, PPA rejected the first attempt due to a dumb mistake I made and now won't take the package. I can probably work around it though.

EDIT2: Ok, uploaded a fixed version to the PPA, hopefully there are no more troubles

EDIT3: No such luck. Gah. Anyone know what package AM_CHECK_PYMOD is from?

#1368

If I'm not mistaken, AM_CHECK_PYMOD is syntax for an autotools file. And thus, I assume the "AM" stands for automake. Hope that helps!

#1369

Megaqwerty said: If I'm not mistaken, AM_CHECK_PYMOD is syntax for an autotools file. And thus, I assume the "AM" stands for automake. Hope that helps!

ok now I feel dumb, automake wasn't in the build-deps. trying again, hopefully it works this time...

EDIT: Ok I'm having terrible luck but this process is at least revealing a few flaws in my build system. Even if the PPA doesn't work out the improvements I've made to my auto-builder are worth the trouble. Assuming no more build-dep problems, I *think* the version I just uploaded will work, but we'll see.

EDIT2: build-deps, how dost thou plague me? Let me count the ways...

#1370

Latest update got rid of the bling switcher :( also it seems version 0.2.1 is out so I think we need an update :) Thanks for all work

#1371

reference2myself said: Latest update got rid of the bling switcher :( also it seems version 0.2.1 is out so I think we need an update :) Thanks for all work

Bling switcher was removed due to licensing issues. If you want new packages, I suggest trying the new PPA I set up here: https://launchpad.net/~reacocard-awn/+archive/. It should work now.

#1372

Is there a signature available for your PPA?

#1373

DJ_Peng said: Is there a signature available for your PPA?

no, it's a bug in the PPA system that they do not have one, it's supposed to be fixed around march.

#1374

I cant seem to connect to download.tuxfamily.org

is there another one i can put in my source list, that has the updates and files

#1375

anderskitson said: I cant seem to connect to download.tuxfamily.org

is there another one i can put in my source list, that has the updates and files

You may want to try the new reacocard's repository. You'll find sources url here : https://launchpad.net/~reacocard-awn/+archive

#1376

Perfect, now its all good to go, I was just switching from the 32bit version of gusty to 64, and wanted to make sure everything i used to have works, before i format the old one. Thanks

#1377

I removed the old repository, and added this one in software sources. Reloaded the lists, did "sudo apt-get upgrade", and AWN started up okay. So, works for me!

#1378

how u make it auto launch at start up

#1379

Assuming you are using Gnome, here is what you need to do: 1) Go to System>Preferences>Sessions 2) Click Add 3) Fill out forms (the "Command" form should have /usr/bin/avant-window-navigator) 4) Click OK That's it!

Hope that helps,

Megaqwerty

#1380

Thanks everyone who tested the new repo, I'm moving over to it officially now. This means that the old repo is now discontinued and no further updates to AWN will be distributed through it. Everyone who wants updates will need to upgrade to using the PPA. The guide has not been changed yet but that will be fixed soon.

The PPA also opens up the possibility for me to build for other versions of Ubuntu, though I cannot test such packages myself. I plan on trying to make builds for hardy and feisty later today, so if all goes well the repo will be available to a much broader range than before.

#1381

That is excellent; glad the PPA idea is taking off and helping out.

#1382

I have a problem. AWN seemed to install properly ( no errors, got it from BZR, etc etc )

But, when I go to APPLICATIONS -> ACCESORIES -> AVANT WINDOW MANAGER Nothing happens. It doesn't load up.

If I execute it from TERMINAL, I get the following message

avant-window-navigator: error while loading shared libraries: libawn.so.0: cannot open shared object file: No such file or directory

Running on Ubuntu Gutsy 64-bit.

I can't for the life of me figure out what is wrong.

#1383

interesting, what does ``` dpkg -l | grep awn

#1384

Megaqwerty said: interesting, what does ```

dpkg -l | grep awn


ZimmerX said tat he got it from bzr then build it I guess, so dpkg -l |grep awn should not return anything.
Another command to try to locate libawn could be : 

find /usr -iname "libawn*"

#1385

Nevermind guys, I have an 8800GTS, so Compiz didn't install correctly. I had to manually install it. It's all working now.

#1386

ZimmerX said tat he got it from bzr then build it I guess, so dpkg -l |grep awn should not return anything.

Another command to try to locate libawn could be :

Oh, I thought he meant that he installed the bzr .deb version (as opposed to the legacy one). But it seems he's figured it out.

#1387

Heyo. I am having a slight problem with the trash applet in your repository. Sadly, it just comes up as a line instead of the trash bin icon. The Trash Stack Applet works, so at the moment I am using that. Has anyone else had this problem also? I don't want to compile the applets myself unless I have to.

To note:I did not have this problem using the old repositories (.2.0 BZR).

Thanks ahead of time to anyone who can help me out.

#1388

GumbyX said: Heyo. I am having a slight problem with the trash applet in your repository. Sadly, it just comes up as a line instead of the trash bin icon. The Trash Stack Applet works, so at the moment I am using that. Has anyone else had this problem also? I don't want to compile the applets myself unless I have to.

To note:I did not have this problem using the old repositories (.2.0 BZR).

Thanks ahead of time to anyone who can help me out.

the applets are current somewhat broken in the PPA, unfortunately school and illness has made it impossible for me to get it into a working state as soon as I wanted to. It will be fixed, hopefully within a week but I can't guarantee it.

#1389

Hope you feel better soon, reacocard. And not just for supporting AWN, either.

#1390

reacocard said: the applets are current somewhat broken in the PPA, unfortunately school and illness has made it impossible for me to get it into a working state as soon as I wanted to. It will be fixed, hopefully within a week but I can't guarantee it.

No problem. Thanks for getting back to me and hope you feel better.

#1391

Woo, 0.3.1!

What's new?

Oh and get well soon.

#1392

Thanks for getting the new version up so quickly reacocard. I and many other appreciate it.

#1393

New version! Yay! I have been away for awhile...

#1394

yay, affinity integrated as an awn applet ! this new version rocks :D thanks.

#1395

Just a quick query. I've been closing AWN when taking updates for it. Is that necessary or can I take updates while it's still running?

#1396

DJ_Peng said: Just a quick query. I've been closing AWN when taking updates for it. Is that necessary or can I take updates while it's still running?

you can update while running, but I'd recommend restarting awn soon after the update.

#1397

OK. I'll keep closing it while I update just to be on the safe side. I got an error with this latest update (sorry, don't remember the error but AWN was closed) but when I tried to apply the update right afterward it went without a hitch.

#1398

DJ_Peng said: OK. I'll keep closing it while I update just to be on the safe side. I got an error with this latest update (sorry, don't remember the error but AWN was closed) but when I tried to apply the update right afterward it went without a hitch.

that was probably my fault, I uploaded a bad version then immediately realized what had happened and uploaded a correct one, you were probably just lucky enough to hit that 5-minute window when the package was broken. :)

#1399

i have a problem with awn manager, when i start it, i get the following error:

peter@peter-laptop:~$ awn-manager Traceback (most recent call last): File "/usr/bin/awn-manager", line 203, in <module> awnmanager = AwnManager() File "/usr/bin/awn-manager", line 76, in __init__ icon = theme.load_icon('awn-manager', 128, gtk.ICON_LOOKUP_USE_BUILTIN) gobject.GError: Icon 'awn-manager' not present in theme peter@peter-laptop:~$

somebody on the awn forum suggested that there are icons missing.. thx

#1400

Excuse me for my ignorance, but I can't seem to get the preferences to show for AWN. I installed per the first post of this thread and it starts, but I would like to have the background at the perspective type view (or whatever its called). Am I missing something?

Thanks!

Edit: I should mention......it is a brand new install for Gutsy and all updates have been added. Restricted driver for video is all installed.

#1401

Ok, nevermind, I got it. I had to uninstall it thru synaptic and then reinstall. I also added the python binding and dev files, but not sure if I needed to. Anyhow, it looks like I'm good to go!

#1402

Are there any future plans for something similar to the Bling Switcher? I really only liked it since it took up 1 icon spot, and had the screen # I was working on. I usually just use hotkeys to switch around, but it was nice having a number. (Especially since Gnome by default does not have support for multiple desktop backgrounds, and I have yet to make that work.)

#1403

oni5115 said: Are there any future plans for something similar to the Bling Switcher? I really only liked it since it took up 1 icon spot, and had the screen # I was working on. I usually just use hotkeys to switch around, but it was nice having a number. (Especially since Gnome by default does not have support for multiple desktop backgrounds, and I have yet to make that work.)

Not to my knowledge.

#1404

Hi, I've been using Avant for about a week and have found it to be stellar, thank you for making the repo for it! I'm posting because the last few days seems to have left my dock a complete unworkable mess (not entirely, but just to get your attention). I'm hoping maybe someone can point me in the right direction...

So normally I was able to add and remove launchers at will, which was necessary with the launcher edit button not yet being implemented (there was a bug that for some reason wasn't letting me change icons for launchers once I had added them to the dock, so to get around it I was just redoing the launchers with the newer icons). With your newer updates came the edit button, which was very welcome. I believe my problem started the update after that one... I found that I was unable to add launchers in the avant-manager. I could hit add, type in a title, a command, select a picture, hit okay, and... nothing. Nothing showed up in my dock, in the list of launchers, anywhere. There wasn't even a text output when running in terminal... it was like I had never even tried to create a launcher in the first place. After struggling with this for a while I decided to start fresh, and completely uninstalled all of my repo packages regarding awn. I also ran that terminal command (before I uninstalled) "gconftool-2 --recursive-unset /apps/avant-window-navigator" to wipe my settings, and "removed" all of my launchers that were set up at the time. I then rebooted, and reinstalled.

I am still having the same problems now. Worse is that I'm unable to re-add the launchers I just deleted before uninstalling... well, that's not true, drag and drop seems to work, but only with certain files (which may have been the case before, I didn't really like drag and drop so I didn't try it out very much). So the launcher menu seems to be totally borked. Either hitting okay causes nothing to happen, like I never opened the diolog in the first place, or I find that clicking okay literally does nothing, i.e. avant won't let me click "okay" or "cancel" to get out of the launcher dialog. I have to x out, which essentially is a cancel command.

So yeah, sorry if that's a lot of text, but I'm hoping that what I'm saying is specific enough that someone can shed some light on this for me. What's going on with my launcher panel? if it is possibly something being carried through even my original uninstallation, how can I make a truly clean uninstall and get rid of whatever settings are not disdappearing when I choose "complete uninstall" in synaptic?

Thanks in advance for any replies, I'd like to get back to enjoying avant as soon as I can.

#1405

DancemasterGlenn said: Hi, I've been using Avant for about a week and have found it to be stellar, thank you for making the repo for it! I'm posting because the last few days seems to have left my dock a complete unworkable mess (not entirely, but just to get your attention). I'm hoping maybe someone can point me in the right direction...

So normally I was able to add and remove launchers at will, which was necessary with the launcher edit button not yet being implemented (there was a bug that for some reason wasn't letting me change icons for launchers once I had added them to the dock, so to get around it I was just redoing the launchers with the newer icons). With your newer updates came the edit button, which was very welcome. I believe my problem started the update after that one... I found that I was unable to add launchers in the avant-manager. I could hit add, type in a title, a command, select a picture, hit okay, and... nothing. Nothing showed up in my dock, in the list of launchers, anywhere. There wasn't even a text output when running in terminal... it was like I had never even tried to create a launcher in the first place. After struggling with this for a while I decided to start fresh, and completely uninstalled all of my repo packages regarding awn. I also ran that terminal command (before I uninstalled) "gconftool-2 --recursive-unset /apps/avant-window-navigator" to wipe my settings, and "removed" all of my launchers that were set up at the time. I then rebooted, and reinstalled.

I am still having the same problems now. Worse is that I'm unable to re-add the launchers I just deleted before uninstalling... well, that's not true, drag and drop seems to work, but only with certain files (which may have been the case before, I didn't really like drag and drop so I didn't try it out very much). So the launcher menu seems to be totally borked. Either hitting okay causes nothing to happen, like I never opened the diolog in the first place, or I find that clicking okay literally does nothing, i.e. avant won't let me click "okay" or "cancel" to get out of the launcher dialog. I have to x out, which essentially is a cancel command.

So yeah, sorry if that's a lot of text, but I'm hoping that what I'm saying is specific enough that someone can shed some light on this for me. What's going on with my launcher panel? if it is possibly something being carried through even my original uninstallation, how can I make a truly clean uninstall and get rid of whatever settings are not disdappearing when I choose "complete uninstall" in synaptic?

Thanks in advance for any replies, I'd like to get back to enjoying avant as soon as I can.

hm, the launcher editor does indeed seem to be broken, but awn-manager gives no errors when they are edited. Not really sure why this is, I'll have to investigate this.

#1406

Good luck, thanks for the speedy reply :)

#1407

Upon updating from 7.04 to 7.10, I also followed your guide. AWN will not launch. I ran the rm commands that you suggested (removing the awn folders), ran the "sudo ldconfig", uninstalled, removed the repos, updated, removed the packages, all that you had suggested, as well as reinstalling after that. When run from terminal, it now leaves me with this error:

bash: /usr/local/bin/avant-window-navigator: No such file or directory

-scratches head-

#1408

There was an update this morning that seems to have broken the File Manager applet (icon is gone, there's just a skinny white line where it used to be), and AWN Manager has been removed from System > Preferences. Right clicking and selecting Preferences on the tool bar itself doesn't open the AWN Manager, and typing awn-manager in command line doesn't work either.

...HELP!

#1409

LoSt180 said: There was an update this morning that seems to have broken the File Manager applet (icon is gone, there's just a skinny white line where it used to be), and AWN Manager has been removed from System > Preferences. Right clicking and selecting Preferences on the tool bar itself doesn't open the AWN Manager, and typing awn-manager in command line doesn't work either.

...HELP!

I moved awn-manager into it's own package, you can restore it by doing

sudo apt-get install awn-manager
#1410

The update ran on a second PC with AWN, and awn-manager is gone also. along with file manager being broke. the update was avant-window-navigator to 0.3.1.bzr194.9~gutsy and awn-core-applets to 0.3.1.bzr335.1~gutsy plus libwan and python.

I tried the command you posted above and got this error:


$ sudo apt-get install awn-manager

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  awn-manager: Depends: avant-window-navigator (>= 0.2)
E: Broken packages

lost@PRIMERA-L:~$ avant-window-navigator -v
Avant Window Navigator 0.3.1
#1411

LoSt180 said: The update ran on a second PC with AWN, and awn-manager is gone also. along with file manager being broke. the update was avant-window-navigator to 0.3.1.bzr194.9~gutsy and awn-core-applets to 0.3.1.bzr335.1~gutsy plus libwan and python.

I tried the command you posted above and got this error:


$ sudo apt-get install awn-manager

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  awn-manager: Depends: avant-window-navigator (>= 0.2)
E: Broken packages

lost@PRIMERA-L:~$ avant-window-navigator -v
Avant Window Navigator 0.3.1

sorry, my bad, the command should have been

sudo apt-get install awn-manager-bzr
#1412

reacocard said: I moved awn-manager into it's own package, you can restore it by doing

sudo apt-get install awn-manager

awn-manager: Depends: avant-window-navigator (>= 0.2) E: Broken packagesWhich is funny since AWN is running. Any suggestions?

#1413

reacocard said: sorry, my bad, the command should have been

sudo apt-get install awn-manager-bzr

It works! thanks.

Any ideas on the "File Browser" and "File Browser Launcher" applets? They only show up as an unclickable white line. The "Places" applets seems to be the only one that works now...

#1414

The corrected install line did the trick for me. I'm gonna guess I missed the announcement that it was put into it's own package. That's what I get for trying to read the forums while people are talking to me (like a roomie is doing at this sec).

#1415

CeeDub said: I tried installing python-gnome2-desktop, but it seemed to already be installed. I noticed another package called python-gnome2. I gave that a try and it seemed to do the trick. Thanks for all the help.

thanks CeeDub... it worked for me too...

#1416

Thanks for the other two updates, but atm Systray snd File browser do not work.

#1417

GumbyX said: Thanks for the other two updates, but atm Systray snd File browser do not work.

File browser I can confirm not working (missing an icon, probably a makefile issue). As for systray, did you make sure to close any other systrays you have running before you tried to run the applet? If there are any others running it won't load.

#1418

Thanks a bunch for fixing the launchers! I'm having another issue, I think that the Pandora applet is broken, but I actually don't know what is supposed to happen when I click it (so I don't know if it's just something I'm doing wrong?). Anyway, when I click the icon on the dock, the icon bounces, then just plain disappears. Weird. I don't even know if I'll be using this applet, because I don't know what it actually will do (just pop up a browser with the Pandora page loaded?), but I thought I'd let you know it's not working over here.

Keep up the great work, I appreciate it.

#1419

I have added awn tp my session.

However I would like to use the sleep command before it to delay it starting up by 10 seconds.

I have ``` sleep 10 && avant-window-navigator


Anyone have any ideas why it doesn't work with the session?
#1420

unabatedshagie said: I have added awn tp my session.

However I would like to use the sleep command before it to delay it starting up by 10 seconds.

I have ``` sleep 10 && avant-window-navigator


Anyone have any ideas why it doesn't work with the session?

you'll have to create a bash script to run the sleep command for you, the sessions dialog doesn't understand &&. This should do:

#!/bin/sh sleep 10 exec avant-window-navigator

save that somewhere, then run (substituting in the path of the file you just saved)

chmod +x path/to/the/script

and then add that script to your session.
#1421

I have AWN running and the icons for the launchers show. However, the icons for the applets appear as white lines... any suggestions???

#1422

Sounds like something isn't installed properly. Maybe do a reinstall of the applet packages?

#1423

I tried reinstalling everything that had any relation to "applet" in synaptics and nothing... I've also tried removing and reinstalling AWN and still nothing...

#1424

Victormd said: what's the name of the applet package? Can I install them through synaptics?

If you have the repository installed like explained in the first post (first page) then yes you can. The name of the applets package is awn-core-applets-bzr.

edit : your problem can also be a missing dep, check that you have these packages installed

  • python-gnome2
  • python-gnome2-extras
#1425

python-gnome2 and python-gnome2-extras are installed tried reinstalling them and nothing... I did the exact same process on my desktop and everything worked fine. My desktop is 64bit Ubuntu and the laptop I'm installing AWN on is a 32bit Ubuntu (thought it would be easier)... Gonna try uninstalling and reinstalling again to see what happens...

#1426

quick update... unistalled and installed again and it worked... not sure what was the problem but it's working great now!!! thanks

#1427

Is there any way to avoid getting a "WARNING Package CANNOT BE VERIFIED" error everytime an update comes out?

#1428

LoSt180 said: Is there any way to avoid getting a "WARNING Package CANNOT BE VERIFIED" error everytime an update comes out?

Yes with addind the pub key of the repository, but If I remind well, launchpad repositories don't have this feature atm.

#1429

LoSt180 said: Is there any way to avoid getting a "WARNING Package CANNOT BE VERIFIED" error everytime an update comes out?

ayoli said: Yes with addind the pub key of the repository, but If I remind well, launchpad repositories don't have this feature atm.

that is correct, PPAs currently do not support being singed. This is slated to be fixed in march.

#1430

Is anyone having problems with the new Affinity applet? It was working perfectly when I upgrade to the recent awn-core-applets-bzr, but for some reason, when I search for something today, I get no results. Anyone know why this might be happening or experiencing the same problem?

#1431

GumbyX said: Is anyone having problems with the new Affinity applet? It was working perfectly when I upgrade to the recent awn-core-applets-bzr, but for some reason, when I search for something today, I get no results. Anyone know why this might be happening or experiencing the same problem?

Yep, same here : no results for searches that gave results before updating. Applet broken I guess. Shame :(

#1432

ayoli said: Yep, same here : no results for searches that gave results before updating. Applet broken I guess. Shame :(

So only two people are having this problem? Find that odd.

Anyway I just wanted to give an update on this problem: For some reason on my desktop (running 7.10 64-Bit) I still can't get Affinity to work, but on my laptop (7.10 32-bit) I can use it without a problem. Now I am totally confused. :(

#1433

I renember I had an issue with tracker-search-tool. It stopped to work on day and I had to rebuild trackerd index. First I had to kill the traker deamon, then ran this : trackerd -v 2 -R (where R means re-index and v verbosity with a level of 2) I'm gonna try this (can take the whole night to reindex all my files !)

#1434

Reindexing isn't finished but I already can have results in afinity awn plugin :D So reindexing tracker might be the fix. Another note : I have no idea where the bug comes from (applet, deamon) ?

#1435

Just updated, the weird behavior still happens when trying to use the Pandora launcher. Another question... I'm using pidgin as a launcher (since it's custom and all I don't know if anything can be done about this) but usually clicking the launcher launches, and then clicking again controls minimizing/unminimizing of the buddy list. Opening a conversation window makes a new icon on the task manager side, displaying the status of who I'm talking with. However, at some point it always seems that these two things get switched on me... clicking my launcher icon minimizes the conversation window, and my task manager icon controls the buddy list (which now, instead of displaying the name of the person I'm talking to and the status of said person, it just shows the pidgin icon. This can only be reverted by closing my conversation window and re-opening it. Not a big deal, but a minor inconvenience. Is there anything I can do on my end to prevent this?

Oh, I think I see what's happening... if I click the pidgin icon in my notification area (not on the bar), it's set to hide the buddy list completely (as in, it doesn't even show up on the task manager list). When I do this, for some reason it makes the conversation window disappear from the task manager side of the toolbar, and become associated with the launcher icon. So when I click it again in the notification area, the buddy list is essentially being re-created, and since the conversation window has taken over its association with the launcher icon, it's having to make its own. Hope that makes sense.

So I guess the question is, could avant be made so that even though I'm hiding my buddy list, avant won't think it's gone and mess with my conversation window binding... and keep that associated with the task manager icon? I'm not sure this is possible, especially since pidgin isn't built into avant, but it would be nice to hear back as to what I could do. Thanks a bunch!

#1436

The above tutorial/help sorted my problems out. I was getting an error about libawn_bzr if I tried to reinstall the AWN applets from package manager. In the end I tried purging the files, completely removing AWN etc and still kept getting the error over writing the file.

I put the repositories in as above, ran the install and its all back to normal.

It's partially my own fault, I'm far too inquisitive so keep trying different things on Ubuntu, eventually I'll probably make it crash totally but at the moment I'm amazed how robust it is!

If anyones on 7.10 and has the libzwn_bzr error then try the solution at the top and see if it sorts you.

#1437

Works like a charm!

Thank you!

#1438

ayoli said: Reindexing isn't finished but I already can have results in afinity awn plugin :D

So reindexing tracker might be the fix. Another note : I have no idea where the bug comes from (applet, deamon) ?

Thanks for the heads up! Affinity is working now. I remember this happening once before when Affinity was first released. I believe its the deamon because I could not search using Tracker either before restarting trackerd.

#1439

GumbyX said: Thanks for the heads up! Affinity is working now. I remember this happening once before when Affinity was first released. I believe its the deamon because I could not search using Tracker either before restarting trackerd.

Actually, not sure that is only a deamon's bug. I had another awn update just after reindexing. After that I had again the bug and needed to reindex (a bit annoying).

#1440

ayoli said: Actually, not sure that is only a deamon's bug. I had another awn update just after reindexing. After that I had again the bug and needed to reindex (a bit annoying).

Odd, maybe we should list it on the bug report for both.

BTW, what version of Ubuntu are you running (including if its 32 or 64 bit)?

#1441

The code with the dependencies on the first original post as an error. It's on the one when installing AWN from source.

There is a comma after "librsvg2-common". It needs to be removed or the terminal will give you an error.

#1442

GumbyX said: Odd, maybe we should list it on the bug report for both.

BTW, what version of Ubuntu are you running (including if its 32 or 64 bit)?

I'm running a gutsy 7.10 32 bits. I think there is already a bug report on launchpad for trackerd, I'll try to find it later.

#1443

TheSe7enthSin said: The code with the dependencies on the first original post as an error. It's on the one when installing AWN from source.

There is a comma after "librsvg2-common". It needs to be removed or the terminal will give you an error.

fixed

#1444

hi! i install awn with your howto, and work good! but i have some problem when active the applet, seems not work! i cant see the applet in the dock, i just see a vertical white line hope someone can help me sorry for my bad english

#1445

Thanks..worked like a charm on my 7.10 x386.

#1446

alberello2005 said: hi! i install awn with your howto, and work good!

but i have some problem when active the applet, seems not work! i cant see the applet in the dock, i just see a vertical white line hope someone can help me sorry for my bad english

There are a few applets that currently do not work. Those applets show up as white lines. They will be fixed in a future update.

#1447

Can we get a listing of known bad applets? Just so we can know not to try them out until (at least) the next release?

#1448

DJ_Peng said: Can we get a listing of known bad applets? Just so we can know not to try them out until (at least) the next release?

file browser, pandora, and standalone taskmanager are completely broken. Others (like tsclient) may appear broken if they are missing dependencies.

#1449

Thanks. I'll stay away from those for now. Too bad it was just about time to check out other applets.

#1450

Hi,

I've had alot of trouble getting the applets to work/display properly on the launch-bar. They didn't work at all after i installed awn-curves (they just appeared as white lines, consistent with failure to loading the applet). After uninstalling awn-curves, re-installing awn and setting the bar-angle to -1, it finally (partially) worked. As you can see from the screenshot, the applets on the left-hand side refuse to "line up" properly. Also, there are 2 applets on the right-hand side that doesn't display at all.

I suspect that awn-curves or any earlier awn-installation left lingering settings in the system, seen as themes and certain settings where persistent after uninstalling and reinstalling. Do you think that could be it?

It's pretty frustrating installing, uninstalling and reinstalling not knowing what I'm actually doing most of the time, seen as I'm new to Linux. Would be great if you could give me any pointers as to what's causing my problem and, possibly, how to fix it. However, I'm pretty sure reinstalling isn't the answer :p

-EffKay-

#1451

EffKay said: Hi,

I've had alot of trouble getting the applets to work/display properly on the launch-bar. They didn't work at all after i installed awn-curves (they just appeared as white lines, consistent with failure to loading the applet). After uninstalling awn-curves, re-installing awn and setting the bar-angle to -1, it finally (partially) worked. As you can see from the screenshot, the applets on the left-hand side refuse to "line up" properly. Also, there are 2 applets on the right-hand side that doesn't display at all.

I suspect that awn-curves or any earlier awn-installation left lingering settings in the system, seen as themes and certain settings where persistent after uninstalling and reinstalling. Do you think that could be it?

It's pretty frustrating installing, uninstalling and reinstalling not knowing what I'm actually doing most of the time, seen as I'm new to Linux. Would be great if you could give me any pointers as to what's causing my problem and, possibly, how to fix it. However, I'm pretty sure reinstalling isn't the answer :p

-EffKay-

The wrong offsets are a known problem (and part of why curve isn't officially supported yet). As for the two not appearing, I'd guess it's part of the same problem, but just to be sure, what applets are those two that are not showing?

#1452

I love AWN!

I am however having a heck of a time getting the mail applet to do anything other than tell me I have a dummy message. I want to use the mail applet to monitor my gmail account.

Thanks.

#1453

Thanks the dock is working is great!:)

#1454

2 things:

  • Question: I'd like to use AWN only for launchers. How can I stop my current tasks from popping up?
  • Glitch: With the bar set to be curvy (bar_angle=-1), autohide doesn't work properly since some of the dock items keep peeking over the bottom of the screen even when the dock's trying to hide.
#1455

breaking said: 2 things:

  • Question: I'd like to use AWN only for launchers. How can I stop my current tasks from popping up?
  • Glitch: With the bar set to be curvy (bar_angle=-1), autohide doesn't work properly since some of the dock items keep peeking over the bottom of the screen even when the dock's trying to hide.

1) not currently possible, but malept is working on separating these functions so it should become possible relatively soon.

2) known bug, one of the reasons curves isn't yet officially supported.

#1456

Ok, the title of this is " HOWTO: functional eye-candy with Avant-Window-Navigator and Affinity" I am a newbie to this PC of course, but nothing goes into what "Affinity" is? What is it? And where can I get it?

#1457

Drmgiver said: Ok, the title of this is " HOWTO: functional eye-candy with Avant-Window-Navigator and Affinity" I am a newbie to this PC of course, but nothing goes into what "Affinity" is? What is it? And where can I get it?

Affinity is now an applet within AWN, just install the awn-core-applets-bzr package and add the applet.

#1458

Well, I added that package, but I still don't see where "affinity" is.

#1459

There's a question that I've never been able to answer, which I thought Drmgiver was actually asking: What on earth *is* Affinity. I've been using AWN for a few months now and I have no clue just what it is.

#1460

That is what I was asking. lol

#1461

:lolflag: I though so.

#1462

reacocard said: 1) not currently possible, but malept is working on separating these functions so it should become possible relatively soon.

2) known bug, one of the reasons curves isn't yet officially supported.

A quick clarification regarding (1). If the packages are build with vala applet support (I don't believe Reacocard is planning on building the vala applets for legitimate enough reasons). then the simple-launcher applet can do that. Though it's by no means perfect... we'll get a non-experimental implementation with 0.6.

How to use: remove the taskmanager/launcher applet. Add as many simple-launchers as are wanted and drag and drop the desired desktop files into the launchers.

#1463

I installed Avent fine, it runs and it appears on the bottom of my screen, but when i go to add some applets to it, i add them then click refresh, nothing comes up except an extra blank space, i hover over the new empty area and it gives the description but i get no real icon! i will log out and log back in and only some of them that i add get fixed, some still stay blank. some appear as just white spacer lines. Does anyone why this is happening? Also if i can't figure out the issue and decide to go back to the regular task bar on the bottom of my screen how do i get it back, i removed it from my screen thinking that i would have no issue with Avant :(

Thanks guys! ~Richy

#1464

Thread title changed at the request of the OPer.

#1465

Thanks, K.Mandia. I know when I installed AWN Affinity was experiencing some rather major problems so I never used it. (Which is why I have no clue what Affinity is.)

#1466

For those who've been asking what affinity is, here's it's homepage: http://code.google.com/p/affinity-search/

It's rather sad it's dead, it was quite promising. Perhaps njpatel will start it back up once he finishes AWN.

#1467

ive tried installing AWN multiple times. ive tried through synaptic and termanal. i try to install libawn (through synaptic) and libpango and i cant libawn requires libpango and when i install libpango the only option is to reinstall and ive tried and it doesnt reinstall. it stays the same but this is what i got when i tried to do urs

[I]ryan@Ryan-Linux:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.3.1.bzr198.1~gutsy) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed E: Broken packages [/I]

any help???

#1468

rhddallas said: ive tried installing AWN multiple times.

ive tried through synaptic and termanal. i try to install libawn (through synaptic) and libpango and i cant libawn requires libpango and when i install libpango the only option is to reinstall and ive tried and it doesnt reinstall. it stays the same but this is what i got when i tried to do urs

[I]ryan@Ryan-Linux:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.3.1.bzr198.1~gutsy) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed E: Broken packages [/I]

any help???

as detailed in the guide, you must have ubuntu-updates enabled.

#1469

ok, i'm at a loss atm. this is a bit of a hybrid compiz/AWN question, so if anyone has the answer, help a man out.

I am trying to turn the compiz animations off for the stacks and stacks-plugger applets. i had it set up on my last config, and have since lost that config.

I had thought it was type=PopUpMenu, but that doesn't work.

Any ideas?

#1470

ok like i just copied the error ill go through and put in the whole set when i get home but i did get all updates and upgrades and everything (im on my laptop that runs XP right now... linux is my desktop)

#1471

Tristam Green said: ok, i'm at a loss atm. this is a bit of a hybrid compiz/AWN question, so if anyone has the answer, help a man out.

I am trying to turn the compiz animations off for the stacks and stacks-plugger applets. i had it set up on my last config, and have since lost that config.

I had thought it was type=PopUpMenu, but that doesn't work.

Any ideas?

name=stacks_applet.py

#1472

I've used AWN with no significant problems for the most part. Recently I decided to update the version on my 32-bit Gutsy laptop.

I had been using the following repositories for AWN:

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

...but those appeared to have not been updated in a while, so I switched the repository in my sources.list file to this one, then did an update and upgrade. When I restarted avant-window-navigator, ALL of the applets were white lines, even after reloading them, restarting X, etc. I got the following output:

Screen is composited.
APPLET : /usr/lib/awn/applets/trasher.desktop
APPLET : /usr/lib/awn/applets/awnterm.desktop
LOADED : /usr/share/applications/swkde.desktop
LOADED : /usr/share/applications/thunderbird.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-4.desktop
LOADED : /usr/share/applications/pidgin.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-3.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-1.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-2.desktop
APPLET : /usr/lib/awn/applets/taskman.desktop
APPLET : /usr/lib/awn/applets/notification-area.desktop
APPLET : /usr/lib/awn/applets/digitalClock.desktop
APPLET : /usr/lib/awn/applets/quit-applet.desktop
** (awn-applet-activation:6394): WARNING **: This desktop file does not exist /usr/lib/awn/applets/awnterm.desktop
** (awn-applet-activation:6392): WARNING **: This desktop file does not exist /usr/lib/awn/applets/trasher.desktop
** (awn-applet-activation:6396): WARNING **: This desktop file does not exist /usr/lib/awn/applets/notification-area.deskto
** (awn-applet-activation:6398): WARNING **: Unable to load module /usr/lib/awn/applets/digitalClock/digitalClock.py
** (awn-applet-activation:6398): WARNING **: /usr/lib/awn/applets/digitalClock/digitalClock.py: invalid ELF header
** (awn-applet-activation:6398): WARNING **: Could not create plug
APPLET : /usr/lib/awn/applets/quit-applet.desktop
APPLET : /usr/lib/awn/applets/mimenu.desktop
** (awn-applet-activation:6400): WARNING **: Unable to load module /usr/lib/awn/applets/quit-applet/quit-applet.py
** (awn-applet-activation:6400): WARNING **: /usr/lib/awn/applets/quit-applet/quit-applet.py: invalid ELF header
** (awn-applet-activation:6400): WARNING **: Could not create plug
** (awn-applet-activation:6402): WARNING **: Unable to load module /usr/lib/awn/applets/mimenu/mimenu.py
** (awn-applet-activation:6402): WARNING **: /usr/lib/awn/applets/mimenu/mimenu.py: invalid ELF header
** (awn-applet-activation:6402): WARNING **: Could not create plug
** (awn-applet-activation:6404): WARNING **: This desktop file does not exist /usr/lib/awn/applets/main-menu.desktop
APPLET : /usr/lib/awn/applets/main-menu.desktop

Just for kicks, I tried

sudo chmod a+rwx -R /usr/lib/awn/applets

...and that allowed some plugins to work, but several retained the "unable to load" and "invalid ELF header" and "could not create plug" errors, plus there are now a bunch of repetitions of this error below the attempt to load the quit-applet:

** (awn-applet-activation:6704): CRITICAL **: awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

I've tried many permutations of reinstalling, uninstalling-reinstalling, installing from different repositories... nothing works. I don't even know what I broke! Usually ELF errors are confined to my 64-bit machine...

#1473

TygerFish said: I've used AWN with no significant problems for the most part. Recently I decided to update the version on my 32-bit Gutsy laptop.

I had been using the following repositories for AWN:

deb http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator
deb-src http://download.tuxfamily.org/syzygy42 gutsy avant-window-navigator

...but those appeared to have not been updated in a while, so I switched the repository in my sources.list file to this one, then did an update and upgrade. When I restarted avant-window-navigator, ALL of the applets were white lines, even after reloading them, restarting X, etc. I got the following output:

Screen is composited.
APPLET : /usr/lib/awn/applets/trasher.desktop
APPLET : /usr/lib/awn/applets/awnterm.desktop
LOADED : /usr/share/applications/swkde.desktop
LOADED : /usr/share/applications/thunderbird.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-4.desktop
LOADED : /usr/share/applications/pidgin.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-3.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-1.desktop
LOADED : /home/cj/.config/awn/launchers/awn_launcher-2.desktop
APPLET : /usr/lib/awn/applets/taskman.desktop
APPLET : /usr/lib/awn/applets/notification-area.desktop
APPLET : /usr/lib/awn/applets/digitalClock.desktop
APPLET : /usr/lib/awn/applets/quit-applet.desktop
** (awn-applet-activation:6394): WARNING **: This desktop file does not exist /usr/lib/awn/applets/awnterm.desktop
** (awn-applet-activation:6392): WARNING **: This desktop file does not exist /usr/lib/awn/applets/trasher.desktop
** (awn-applet-activation:6396): WARNING **: This desktop file does not exist /usr/lib/awn/applets/notification-area.deskto
** (awn-applet-activation:6398): WARNING **: Unable to load module /usr/lib/awn/applets/digitalClock/digitalClock.py
** (awn-applet-activation:6398): WARNING **: /usr/lib/awn/applets/digitalClock/digitalClock.py: invalid ELF header
** (awn-applet-activation:6398): WARNING **: Could not create plug
APPLET : /usr/lib/awn/applets/quit-applet.desktop
APPLET : /usr/lib/awn/applets/mimenu.desktop
** (awn-applet-activation:6400): WARNING **: Unable to load module /usr/lib/awn/applets/quit-applet/quit-applet.py
** (awn-applet-activation:6400): WARNING **: /usr/lib/awn/applets/quit-applet/quit-applet.py: invalid ELF header
** (awn-applet-activation:6400): WARNING **: Could not create plug
** (awn-applet-activation:6402): WARNING **: Unable to load module /usr/lib/awn/applets/mimenu/mimenu.py
** (awn-applet-activation:6402): WARNING **: /usr/lib/awn/applets/mimenu/mimenu.py: invalid ELF header
** (awn-applet-activation:6402): WARNING **: Could not create plug
** (awn-applet-activation:6404): WARNING **: This desktop file does not exist /usr/lib/awn/applets/main-menu.desktop
APPLET : /usr/lib/awn/applets/main-menu.desktop

Just for kicks, I tried

sudo chmod a+rwx -R /usr/lib/awn/applets

...and that allowed some plugins to work, but several retained the "unable to load" and "invalid ELF header" and "could not create plug" errors, plus there are now a bunch of repetitions of this error below the attempt to load the quit-applet:

** (awn-applet-activation:6704): CRITICAL **: awn_draw_icons: assertion `x >= 0 && x < fx->icon_width && w-x > 0 && w-x <= fx->icon_width && y >= 0 && x < fx->icon_height && h-y > 0 && h-y <= fx->icon_height' failed

I've tried many permutations of reinstalling, uninstalling-reinstalling, installing from different repositories... nothing works. I don't even know what I broke! Usually ELF errors are confined to my 64-bit machine...

very odd. try completely uninstalling, then unset all awn preferences with this command:

gconftool --recursive-unset /apps/avant-window-navigator

then reinstall from the repo. If that doesn't work, post the new terminal output from starting awn.

#1474

what is the password for sudo

#1475

It's the administrative password you set when you installed Ubuntu

#1476

hershe33 said: what is the password for sudo

Or, rather the password for your login (assuming you are the first user created on the computer)

#1477

reacocard said: very odd. try completely uninstalling, then unset all awn preferences with this command:

gconftool --recursive-unset /apps/avant-window-navigator

then reinstall from the repo. If that doesn't work, post the new terminal output from starting awn.

I bet you weren't expecting THIS output:

$ gconftool --recursive-unset /apps/avant-window-navigator
Error on option --recursive-unset: unknown option.
Run 'gconftool --help' to see a full list of available command line options.

:) But this seemed to work:

gconftool-2 --recursive-unset /apps/avant-window-navigator

Alas, after reinstalling from your repository, it did not work. I went back with gconf-editor and saw that not all the gconf awn data had been purged:

gconftool --all-dirs /apps/avant-window-navigator/applets
 /apps/avant-window-navigator/applets/awn-terminal
 /apps/avant-window-navigator/applets/filebrowser
 /apps/avant-window-navigator/applets/awn-notification-daemon
 /apps/avant-window-navigator/applets/switcher
 /apps/avant-window-navigator/applets/shinyswitcher
 /apps/avant-window-navigator/applets/trash
 /apps/avant-window-navigator/applets/places

Each of those seemed to have its configuration files intact, and the weird thing is I don't recall ever having used a few of them.

But I also noticed while awn was uninstalled that there was still an avant-window-navigator executable sitting in my /usr/local/bin directory! Using "locate avant" I found that there was still an installation of it in the /usr/local/share/avant-window-navigator/ directory. I manually deleted that with rm and reinstalled from your repository. Then I got this error trying to launch awn:

$ avant-window-navigator 
avant-window-navigator: symbol lookup error: avant-window-navigator: undefined symbol: awn_vfs_init

I saw here that someone had fixed this problem with "sudo ldconfig" but that didn't work for me.

#1478

TygerFish said: But I also noticed while awn was uninstalled that there was still an avant-window-navigator executable sitting in my /usr/local/bin directory! Using "locate avant" I found that there was still an installation of it in the /usr/local/share/avant-window-navigator/ directory. I manually deleted that with rm and reinstalled from your repository. Then I got this error trying to launch awn:

$ avant-window-navigator 
avant-window-navigator: symbol lookup error: avant-window-navigator: undefined symbol: awn_vfs_init

I saw here that someone had fixed this problem with "sudo ldconfig" but that didn't work for me.

Update: Using slocate, I found a bunch of other awn-related stuff all over the place, even with no awn-related packages installed. There were binaries for awn-applet-activation and awn-manager, and a stuff in all of these directories:

/usr/lib/awn/
/usr/local/lib/
/usr/local/lib/awn/
/usr/local/include/libawn
/usr/local/lib/python2.5/site-packages/
~/.config/awn

I did some more rm cleanup and then reinstalled from your repository. Then awn launched with a bunch of notifications that I assume came from the purged gconf settings:

[a bunch of stuff] is unset, setting now...
Screen is composited.
Creating new applet :/usr/lib/awn/applets/taskman.desktop uid:1

And this time it worked! I noticed in awn-manager that this was the first time it reported version 0.3.1 and had the new interface. I'm not sure how I broke it, but I'm glad it's fixed now because I completely took away the GNOME bar to use AWN as my only interface. :)

#1479

thanks to all in this thread. after following the instructions here i was able to install awm correctly cheers

#1480

The first time I installed AWN, everything worked perfectly from the get go... I installed it on a different machine and now, even though AWN is working, if I add a launcher, it does not apply the proper Icon to the launcher (i.e., firefox shows up as a default "gear" icon). The first time I installed, AWN would automatically find and apply the proper icon. Is this a bug or am I missing something?

#1481

Victormd said: The first time I installed AWN, everything worked perfectly from the get go... I installed it on a different machine and now, even though AWN is working, if I add a launcher, it does not apply the proper Icon to the launcher (i.e., firefox shows up as a default "gear" icon). The first time I installed, AWN would automatically find and apply the proper icon. Is this a bug or am I missing something?

icon matching does still have some bugs, perhaps you've just stumbled upon one. You can right-lick the icon in AWN and choose to set a different icon though.

#1482

I've got a problem..

when i make the install command, this is showing up:

holder@holder-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr

Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.3.1.bzr198.1~gutsy) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

I've tried anything =/

PLEASE HELP!

Thanks.

#1483

ForksHolder said: I've got a problem..

when i make the install command, this is showing up:

I've tried anything =/

PLEASE HELP!

Thanks.

I think you need to have gusty-updates enabled (menu system>administration>software sources pick th third tab check the box gusty-updates).

#1484

I'm getting ready to grab the Hardy alpha soon and I was wondering if there are any known issues with AWN. I have been following the thread but I can't recall if anyone's mentioned any problems. Losing AWN on this comp will definitely make some tears fall.

#1485

DJ_Peng said: I'm getting ready to grab the Hardy alpha soon and I was wondering if there are any known issues with AWN. I have been following the thread but I can't recall if anyone's mentioned any problems. Losing AWN on this comp will definitely make some tears fall.

Reacocard's ppa repos doesn't seem to have hardy packages yet for hardy according to the Packages files in hardy dir. But you should be able to build it, i don't think that is so difficult.

#1486

Thanks, ayoli. I was actually thinking of doing a distro upgrade over my current Gutsy install so I'd have a version of AWN installed. I'm mainly hoping Hardy won't bork AWN/Gutsy.

#1487

When i launch an application, it sort of doubles on the dock, i have one active Firefox window, but i have two icons on the bar. It really pi&&e* me off, because if I launch more programs my desktop fill at twice the time, and that is not acceptable.

Hoping to recieve some help.

#1488

reacocard said: icon matching does still have some bugs, perhaps you've just stumbled upon one. You can right-lick the icon in AWN and choose to set a different icon though.

I have tried that, but when I restart Ubuntu, the icons (and items for that matter) disappear...

#1489

Emshains & Victormd, a week or so ago, I had the same problems you are having now. I uninstalled using the completely uninstall option in synaptic and then deleted the /.gconf/apps/avant-window-navigator from my home folder. I then reinstalled and started from scratch and I haven't had a problem since.

#1490

vgrisham said: Emshains & Victormd, a week or so ago, I had the same problems you are having now. I uninstalled using the completely uninstall option in synaptic and then deleted the /.gconf/apps/avant-window-navigator from my home folder. I then reinstalled and started from scratch and I haven't had a problem since.

I did that too. Now it works like a charm. Thanks.

#1491

I have one problem with the Affinity Applet...every time I search for a mp3 file and then try to play it (using audacious), Affinity crashes and clears itself from the dock, otherwise it seems to work just fine...Anybody know whats going on? Thanx

#1492

DJ_Peng said: I'm getting ready to grab the Hardy alpha soon and I was wondering if there are any known issues with AWN. I have been following the thread but I can't recall if anyone's mentioned any problems. Losing AWN on this comp will definitely make some tears fall.

Just changed to Hardy alpha 6 64bit, and installed AWN from repository used in #0. Not many of the applets are working, but the basic functions are all fine. Since i am not using many of these i will not miss them much. And they will be back, i think.

I got some .py errors, so most python related do not work.

Dilbert, Weather is no go. Lastfm works fine.

I do not know about what works if you compile.

#1493

hey

I got OK upto the part to finish without any errors but i can't open AWN, when i click it nothing happens i tried to continue and when i input the command:

mnwr@rebellion:~$ bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator bzr: ERROR: Unknown branch format: 'Bazaar pack repository format 1 (needs bzr 0.92)\n'

The results are as above and i cant proceed any further..complete newbie here :|

#1494

studo77 said: Just changed to Hardy alpha 6 64bit, and installed AWN from repository used in #0. Not many of the applets are working, but the basic functions are all fine. Since i am not using many of these i will not miss them much. And they will be back, i think.

I got some .py errors, so most python related do not work.

Dilbert, Weather is no go. Lastfm works fine.

I do not know about what works if you compile. I saw AWN in the repos once I got Hardy installed (had a few false starts with display and audio issues but finally got them fixed yesterday). I didn't have any extras but I had forgotten about the repo in the OP so I'll go get that now. I'm sorry to hear weather doesn't work. The GNOME panel weather applet doesn't get as close to my home as the AWN applet does. Oh well. That's what I get for using an alpha OS. Thanks for the reminder.

#1495

mnwr said: hey

mnwr@rebellion:~$ bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator bzr: ERROR: Unknown branch format: 'Bazaar pack repository format 1 (needs bzr 0.92)\n' :|

The branch format for awn core was upgraded last night.

Meaning you need a new version of bzr:

http://bazaar-vcs.org/Download

#1496

DJ_Peng said: I saw AWN in the repos once I got Hardy installed (had a few false starts with display and audio issues but finally got them fixed yesterday).I didn't have any extras but I had forgotten about the repo in the OP so I'll go get that now.

Silly me. One I used the OP to set up AWN works fine for me in Hardy, complete with the Weather applet.

#1497

vgrisham said: Emshains & Victormd, a week or so ago, I had the same problems you are having now. I uninstalled using the completely uninstall option in synaptic and then deleted the /.gconf/apps/avant-window-navigator from my home folder. I then reinstalled and started from scratch and I haven't had a problem since.

Thanks! I don't know what I did but I got it to work now... but if it "breaks" again I'll try this. thanks again

#1498

Hardy packages now available in the PPA!

#1499

Woo hoo! Is that what I got or should I change "gutsy" to "hardy" in my 3rd party repo list and look for updates?

#1500

DJ_Peng said: Woo hoo! Is that what I got or should I change "gutsy" to "hardy" in my 3rd party repo list and look for updates?

change it to hardy and update.

#1501

Cool. Thanks for getting this on Hardy so soon for us. You actually reminded me that I need to see if the Screenlets have been bumped to Hardy yet as well.

#1502

DJ_Peng said: Cool. Thanks for getting this on Hardy so soon for us. You actually reminded me that I need to see if the Screenlets have been bumped to Hardy yet as well.

they haven't so far as I could find, but the gutsy package works fine in hardy.

#1503

umm...guys...I did sumthin wrong...I started copy+pasting all the codes in termainal and now nuthin works.When I open add-remove it says:Failed to check for installed available apps...

#1504

munch3 said: umm...guys...I did sumthin wrong...I started copy+pasting all the codes in termainal and now nuthin works.When I open add-remove it says:Failed to check for installed available apps...

post the output of these commands (one at a time!):

cat /etc/apt/sources.list
ls /usr/bin | grep avant
dpkg-query -l | grep avant
dpkg-query -l | grep awn

EDIT: never mind, I see you fixed it: http://ubuntuforums.org/showthread.php?t=730234 BTW, it's considered very impolite to repost the same question in several places at once. Just post in one spot, and if you don't get a reply within 8-10 hours, then repost.

#1505

mine works!

Semper Fi

[[IMG]http://img26.picoodle.com/img/img26/4/3/20/t_Screenshotm_0969225.png[/IMG]](http://www.picoodle.com/view.php?img=/4/3/20/f_Screenshotm_0969225.png&srv=img26)

#1506

reacocard said: change it to hardy and update.

I get this:

Unpacking avant-window-navigator-bzr (from .../avant-window-navigator-bzr_0.3.1.bzr207.5~hardy_i386.deb) ...

dpkg: error processing /var/cache/apt/archives/avant-window-navigator-bzr_0.3.1.bzr207.5~hardy_i386.deb (--unpack): trying to overwrite `/usr/share/avant-window-navigator/avant-window-navigator-24.png', which is also in package avant-window-navigator-data dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/avant-window-navigator-bzr_0.3.1.bzr207.5~hardy_i386.deb E: Sub-process /usr/bin/dpkg returned an error code (1) noah@noah:~$ sudo mv /usr/share/avant-window-navigator/avant-window-navigator-24.png.bk /usr/share/avant-window-navigator/avant-window-navigator-24.png

#1507

nchase said: I get this:

you can try :

sudo dpkg -i --force-overwrite /var/cache/apt/archives/avant-window-navigator*.deb

btw, this a packaging error that should be fixed.

#1508

ayoli said: you can try :

sudo dpkg -i --force-overwrite /var/cache/apt/archives/avant-window-navigator*.deb

btw, this a packaging error that should be fixed.

this worked, thanks

#1509

ayoli said: btw, this a packaging error that should be fixed.

not my package that's causing it, I have no avant-window-navigator-data package. must be left over from some other install.

#1510

Helo Guys,

Well I have been reading through all these posts but Im having quite a strange problem with regards trying to install AWN.

I am very new to Ubuntu/Linux but have been getting along ok so far, but this problem has me confused. I am using Feisty Fawn and have added these two lines to my /etc/apt/sources.list

[B]deb http://download.tuxfamily.org/syzygy42/ feisty avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42/ feisty avant-window-navigator[/B]

I added the gpg key also.

Now when I type into the terminal,

sudo apt-get update

sudo apt-get install avant-window-manager

[B]andrew@GamingRig:~$ sudo apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Package avant-window-navigator is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package avant-window-navigator has no installation candidate[/B]

I hope you guys might be abale to help me,

Andy.

#1511

reacocard said: not my package that's causing it, I have no avant-window-navigator-data package. must be left over from some other install.

Thanks for clarification, I'm not yet on hardy and can' know what the packages name are :)

#1512

RizingDamp said: Helo Guys,

Well I have been reading through all these posts but Im having quite a strange problem with regards trying to install AWN.

I am very new to Ubuntu/Linux but have been getting along ok so far, but this problem has me confused. I am using Feisty Fawn and have added these two lines to my /etc/apt/sources.list

[B]deb http://download.tuxfamily.org/syzygy42/ feisty avant-window-navigator deb-src http://download.tuxfamily.org/syzygy42/ feisty avant-window-navigator[/B]

I added the gpg key also.

Now when I type into the terminal,

sudo apt-get update

sudo apt-get install avant-window-manager

[B]andrew@GamingRig:~$ sudo apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Package avant-window-navigator is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package avant-window-navigator has no installation candidate[/B]

I hope you guys might be abale to help me,

Andy.

I only support gutsy and hardy, as detailed in my guide. If you want to use AWN on feisty you'll have to compile from source.

ayoli said: Thanks for clarification, I'm not yet on hardy and can' know what the packages name are :)

the names for my repo are the same in each. names for other sources may be completely different.

#1513

Hi,

Firstly thanks very much for a very nice applet bar!

I have recently updated my install to use the launchpad based repo rather than the default ubuntu one, and am attempting to use the curves option. I have one issue with the curves layout, which I am not sure has been raised or not, or whether it is fixable through control data etc...

I can get curves working but it doesn't seem to handle positioning of applets correctly, their position is fixed horizontally. My shortcut icons do follow the curvature however, so things look slightly odd.

I have attached a screenshot to demonstrate the issue, look at the first 4 icons from the left (applets), compared with the others to the right (app shortcuts).

Is there a fix for this? Can I get round the issue with gconf settings etc?

Regards, Mark

#1514

kaivalagi said: Hi,

Firstly thanks very much for a very nice applet bar!

I have recently updated my install to use the launchpad based repo rather than the default ubuntu one, and am attempting to use the curves option. I have one issue with the curves layout, which I am not sure has been raised or not, or whether it is fixable through control data etc...

I can get curves working but it doesn't seem to handle positioning of applets correctly, their position is fixed horizontally. My shortcut icons do follow the curvature however, so things look slightly odd.

I have attached a screenshot to demonstrate the issue, look at the first 4 icons from the left (applets), compared with the others to the right (app shortcuts).

Is there a fix for this? Can I get round the issue with gconf settings etc?

Regards, Mark

this is a known issue, and one of the reason curves is not yet officially supported. no workarounds yet, but expect it to be fixed by awn 0.4.

#1515

I eagerly await the 0.4 release :) Many thanks

#1516

Is there any way to change the icon for affinity, it is tiny in comparison to my other launchers/applets, please see attached screenshots.

thanks dje

#1517

dje said: Is there any way to change the icon for affinity, it is tiny in comparison to my other launchers/applets, please see attached screenshots.

thanks dje

It's supposed to change size with the rest, but I can confirm the same happens here so I guess there's just a bug in the applet. I've opened a bug on this here: https://bugs.launchpad.net/awn-extras/+bug/205413

#1518

reacocard, how do the icons get defined for the aplets by the way? I thought I could change the icon of affinity by editing the .desktop file in /usr/lib/awn/applets, but it only affects the manager it seems

Just curious...

#1519

kaivalagi said: reacocard, how do the icons get defined for the aplets by the way? I thought I could change the icon of affinity by editing the .desktop file in /usr/lib/awn/applets, but it only affects the manager it seems

Just curious...

Not sure, but my guess is it's pulling it from your GTK icon theme. I don't deal with the AWN code itself, I just distribute it.

#1520

I've got a problem of not being able to the see the AWN task bar on a gutsy machine with a recent install from source. I can get into the config screen though?

Sorry if the below post is vague.

FYI: The machine has compiz up and running.

the below command:

bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator

Needed a newer version of bzr which I installed from the following location:

http://launchpadlibrarian.net/12057627/bzr_1.2-1%7Ebazaar2%7Efeisty1_i386.deb

the ./autogen.sh command also wouldn't complete as I needed some stuff from the repositories (something to do with documentation - apologies for being vague).

I couldn't initially see the config screen but needed to run a command from the terminal (again sorry being vague).

Gnome loads normally and looks like it's loading the Avant Window Navigator but there is nothing at the bottom the screen? Even if I push the bottom gnome bar to the left?

I've tried playing with the config screen settings with no joy.

thanks in advance for assistance.

#1521

I changed my theme to Clearlooks and the icon the correct size, please see attached screenshot or bug report in launchpad

dje

EDIT: Also changing to Tangerine icons restores correct size so me thinks it is the human icon theme that is the problem?

#1522

john_spiral said: I've got a problem of not being able to the see the AWN task bar on a gutsy machine with a recent install from source. I can get into the config screen though?

Sorry if the below post is vague.

FYI: The machine has compiz up and running.

the below command:

bzr checkout http://bazaar.launchpad.net/~awn-core/awn/trunk avant-window-navigator

Needed a newer version of bzr which I installed from the following location:

http://launchpadlibrarian.net/12057627/bzr_1.2-1%7Ebazaar2%7Efeisty1_i386.deb

the ./autogen.sh command also wouldn't complete as I needed some stuff from the repositories (something to do with documentation - apologies for being vague).

I couldn't initially see the config screen but needed to run a command from the terminal (again sorry being vague).

Gnome loads normally and looks like it's loading the Avant Window Navigator but there is nothing at the bottom the screen? Even if I push the bottom gnome bar to the left?

I've tried playing with the config screen settings with no joy.

thanks in advance for assistance.

you have to tell AWN to start itself, either via checking th eoption in the confi g dialog or by manually adding it. You can also start it manually by pressing alt+F2 and enering 'avant-window-navigator'.

#1523

reacocard said: you have to tell AWN to start itself, either via checking th eoption in the confi g dialog or by manually adding it. You can also start it manually by pressing alt+F2 and enering 'avant-window-navigator'.

Hi,

The avant-window-navigator command brings up AWN no probs -nice to see it's actually installed.

But the "Automatically start AWN on login" doesn't seem to work. Even a reboot hasn't resolved?

#1524

Check in the System > Preferences > Sessions dialog to be sure the box for AWN is checked. I believe I may have had to put it in there manually.

#1525

I can confirm, I had to add my own session entry for AWN

#1526

Hello

Just thought i would say this howto helped me to get awn work fine. Thanx a lot for a usefull thread :) Im pretty happy with how i customized awn.

#1527

I'm having a lot of trouble installing AWM. I'm very very new. Every time I try it says "E:Type 'echo' is not known on line 84 in source list /etc/apt/sources.list" What am I doing wrong

#1528

Rich Messenger said: I'm having a lot of trouble installing AWM. I'm very very new. Every time I try it says "E:Type 'echo' is not known on line 84 in source list /etc/apt/sources.list" What am I doing wrong

You must have an error in your /etc/apt/sources.list Paste the content of this file here.

#1529

I have some problems... I have latest updates and i am very new at Ubuntu and linux at all.

awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

#1530

ayoli said: You must have an error in your /etc/apt/sources.list

Paste the content of this file here.

How do I get to the contents of it?

#1531

Rich Messenger said: How do I get to the contents of it?

hit ALT+F2 in the run dialog enter :

gksudo gedit /etc/apt/sources.list

at password prompt give your user password copy the content of the file in gedit with CTRL C and pas it here with CTRL V (in a code block)

#1532

ayoli said: hit ALT+F2

in the run dialog enter :

gksudo gedit /etc/apt/sources.list

at password prompt give your user password copy the content of the file in gedit with CTRL C and pas it here with CTRL V (in a code block)

This is what it says

deb cdrom:[Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016)]/ gutsy main restricted

See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to

newer versions of the distribution.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted

Major bug fix updates produced after the final release of the

distribution.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu

team, and may not be under a free licence. Please satisfy yourself as to

your rights to use the software. Also, please note that software in

universe WILL NOT receive any review or updates from the Ubuntu security

team.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy universe

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy universe

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates universe

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates universe

N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu

team, and may not be under a free licence. Please satisfy yourself as to

your rights to use the software. Also, please note that software in

multiverse WILL NOT receive any review or updates from the Ubuntu

security team.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy multiverse

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy multiverse

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates multiverse

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates multiverse

Uncomment the following two lines to add software from the 'backports'

repository.

N.B. software from this repository may not have been tested as

extensively as that contained in the main release, although it includes

newer versions of some applications which may provide useful features.

Also, please note that software in backports WILL NOT receive any review

or updates from the Ubuntu security team.

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

Uncomment the following two lines to add software from Canonical's

'partner' repository. This software is not part of Ubuntu, but is

offered by Canonical and the respective vendors as a service to Ubuntu

users.

deb http://archive.canonical.com/ubuntu gutsy partner

deb-src http://archive.canonical.com/ubuntu gutsy partner

Line commented out by installer because it failed to verify:

deb http://security.ubuntu.com/ubuntu gutsy-security main restricted

Line commented out by installer because it failed to verify:

deb-src http://security.ubuntu.com/ubuntu gutsy-security main restricted

Line commented out by installer because it failed to verify:

deb http://security.ubuntu.com/ubuntu gutsy-security universe

Line commented out by installer because it failed to verify:

deb-src http://security.ubuntu.com/ubuntu gutsy-security universe

Line commented out by installer because it failed to verify:

deb http://security.ubuntu.com/ubuntu gutsy-security multiverse

Line commented out by installer because it failed to verify:

deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy restricted main multiverse universe #Added by software-properties deb http://security.ubuntu.com/ubuntu/ gutsy-security main multiverse restricted universe deb-src http://security.ubuntu.com/ubuntu/ gutsy-security main multiverse restricted universe #Added by software-properties deb http://archive.ubuntu.com/ubuntu/ gutsy-updates main multiverse restricted universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy-updates main multiverse restricted universe #Added by software-properties

deb-src http://security.ubuntu.com/ubuntu gutsy-security multiverse

echo 'deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main'

deb http://archive.ubuntu.com/ubuntu/ gutsy-backports restricted main multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy-backports restricted main multiverse universe #Added by software-properties deb http://archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe #Added by software-properties

#1533

Rich Messenger said: This is what it says

deb cdrom:[Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016)]/ gutsy main restricted

See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to

newer versions of the distribution.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted

Major bug fix updates produced after the final release of the

distribution.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu

team, and may not be under a free licence. Please satisfy yourself as to

your rights to use the software. Also, please note that software in

universe WILL NOT receive any review or updates from the Ubuntu security

team.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy universe

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy universe

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates universe

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates universe

N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu

team, and may not be under a free licence. Please satisfy yourself as to

your rights to use the software. Also, please note that software in

multiverse WILL NOT receive any review or updates from the Ubuntu

security team.

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy multiverse

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy multiverse

Line commented out by installer because it failed to verify:

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates multiverse

Line commented out by installer because it failed to verify:

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates multiverse

Uncomment the following two lines to add software from the 'backports'

repository.

N.B. software from this repository may not have been tested as

extensively as that contained in the main release, although it includes

newer versions of some applications which may provide useful features.

Also, please note that software in backports WILL NOT receive any review

or updates from the Ubuntu security team.

deb http://us.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

Uncomment the following two lines to add software from Canonical's

'partner' repository. This software is not part of Ubuntu, but is

offered by Canonical and the respective vendors as a service to Ubuntu

users.

deb http://archive.canonical.com/ubuntu gutsy partner

deb-src http://archive.canonical.com/ubuntu gutsy partner

Line commented out by installer because it failed to verify:

deb http://security.ubuntu.com/ubuntu gutsy-security main restricted

Line commented out by installer because it failed to verify:

deb-src http://security.ubuntu.com/ubuntu gutsy-security main restricted

Line commented out by installer because it failed to verify:

deb http://security.ubuntu.com/ubuntu gutsy-security universe

Line commented out by installer because it failed to verify:

deb-src http://security.ubuntu.com/ubuntu gutsy-security universe

Line commented out by installer because it failed to verify:

deb http://security.ubuntu.com/ubuntu gutsy-security multiverse

Line commented out by installer because it failed to verify:

deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy restricted main multiverse universe #Added by software-properties deb http://security.ubuntu.com/ubuntu/ gutsy-security main multiverse restricted universe deb-src http://security.ubuntu.com/ubuntu/ gutsy-security main multiverse restricted universe #Added by software-properties deb http://archive.ubuntu.com/ubuntu/ gutsy-updates main multiverse restricted universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy-updates main multiverse restricted universe #Added by software-properties

deb-src http://security.ubuntu.com/ubuntu gutsy-security multiverse

echo 'deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main'

deb http://archive.ubuntu.com/ubuntu/ gutsy-backports restricted main multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy-backports restricted main multiverse universe #Added by software-properties deb http://archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy-proposed restricted main multiverse universe #Added by software-properties run again gksudo gedit /etc/apt/sources.list replace this line :

echo 'deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main'

with these two :


deb http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main
deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main

save, exit gedit and run in a terminal :

sudo apt-get update
#1534

Thank You Much Ayoli!

#1535

miki81 said: I have some problems...

I have latest updates and i am very new at Ubuntu and linux at all.

awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed
E: Broken packages 

try doing:

sudo apt-get install python-libawn-bzr

and post the output of that here

#1536

Thank You

#1537

reacocard said: try doing:

sudo apt-get install python-libawn-bzr

and post the output of that here

It says :

The following packages have unmet dependencies: python-libawn-bzr: Depends: libawn-bzr (= 0.3.1.bzr214.1~hardy) but it is not going to be installed E: Broken packages

#1538

miki81 said: It says :

The following packages have unmet dependencies: python-libawn-bzr: Depends: libawn-bzr (= 0.3.1.bzr214.1~hardy) but it is not going to be installed E: Broken packages

try:

sudo apt-get install libawn-bzr

again, post the output

#1539

reacocard said: try:

sudo apt-get install libawn-bzr

again, post the output

OMG :(

The following packages have unmet dependencies: libawn-bzr: Depends: libc6 (>= 2.7-1) but 2.6.1-1ubuntu10 is to be installed Depends: libcairo2 (>= 1.5.14) but 1.4.10-1ubuntu4.4 is to be installed Depends: libglib2.0-0 (>= 2.16.0) but 2.14.1-1ubuntu1 is to be installed Depends: liborbit2 (>= 1:2.14.10) but 1:2.14.9-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.20.0) but 1.18.3-0ubuntu1 is to be installed E: Broken packages mihajlo@dambldor:~$

#1540

miki81 said: OMG :(

The following packages have unmet dependencies: libawn-bzr: Depends: libc6 (>= 2.7-1) but 2.6.1-1ubuntu10 is to be installed Depends: libcairo2 (>= 1.5.14) but 1.4.10-1ubuntu4.4 is to be installed Depends: libglib2.0-0 (>= 2.16.0) but 2.14.1-1ubuntu1 is to be installed Depends: liborbit2 (>= 1:2.14.10) but 1:2.14.9-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.20.0) but 1.18.3-0ubuntu1 is to be installed E: Broken packages mihajlo@dambldor:~$

looks like you don't have the latest hardy updates. make sure you have both main and universe enabled, and also ubuntu-updates (you can do all this in system->administration->software sources), then run these commands:

sudo apt-get update
sudo apt-get upgrade
#1541

After updating to this last version, I can't get the volume control to remember my prefereces. Anybody else?

AND also: How do I get to set the affinity-preferences? Running it, I'm getting this error:``` Traceback (most recent call last): File "/usr/bin/affinity-preferences", line 288, in <module> gtk.glade.bindtextdomain(I18N_DOMAIN, DATADIR + '/locale') NameError: name 'DATADIR' is not defined

#1542

olavjunior said: After updating to this last version, I can't get the volume control to remember my prefereces. Anybody else?

AND also: How do I get to set the affinity-preferences? Running it, I'm getting this error:``` Traceback (most recent call last): File "/usr/bin/affinity-preferences", line 288, in <module> gtk.glade.bindtextdomain(I18N_DOMAIN, DATADIR + '/locale') NameError: name 'DATADIR' is not defined

didn't even know that affinity-preferences existed.
btw same error, probably because of an incompete port of affinity.
Maybe defining DATADIR or put an hard path instead of it could solve this issue (and mybe raise another one ;) )
#1543

In a terminal, type :

gksudo gedit /etc/apt/sources.list

copy and paste the text inside

#1544

how can i get awn not to list the windows i have open?

because it gets really confused with the list of windows open + launchers, i'd like to use it just for the launcher like a "launchers bar" ;)

can that be done?

#1545

saz said: how can i get awn not to list the windows i have open?

because it gets really confused with the list of windows open + launchers, i'd like to use it just for the launcher like a "launchers bar" ;)

can that be done?

not currently possible in my packages, it may be possible if you compile awn with support for vala applets. I cannot compile in this support since it needs a newer version of vala than ubuntu provides.

#1546

I have seen another dock was only a launcher dock, but it's been quite some time since I've used it so an update may have hanged that. It's also possible that the dock I used a year ago may not be in development any longer. You may want to investigate other docks in the forum search.

#1547

http://ubuntuforums.org/showthread.php?t=736842

this guy seems to want what want too...

just don't know why bother opening a new thread, but wtv...

#1548

I'm using Hardy 64. I can't get the trash applet to show as full or to empty the trash (unless I open the trash first). I have the composite applet icon option enabled. Any ideas?

#1549

vgrisham said: I'm using Hardy 64. I can't get the trash applet to show as full or to empty the trash (unless I open the trash first). I have the composite applet icon option enabled. Any ideas?

It might be related to this bug: https://bugs.launchpad.net/awn-extras/+bug/194431

#1550

vgrisham said: I'm using Hardy 64. I can't get the trash applet to show as full or to empty the trash (unless I open the trash first). I have the composite applet icon option enabled. Any ideas?

It's because Hardy stores its trash in a different place now, which the trash applet does not yet support. No fixes at this point.

#1551

I was wondering why the AWN Trash applet (Hardy i386) didn't seem to have anything to do with the system trash can. Thanks for pointing this bug out. I've subscribed to it.

#1552

I don't know if this has been mentioned before (too lazy to search the thread)...

I added a standalone launcher applet but decided to remove it. Now they just add themselves. How do I stop this?

#1553

phenest said: I don't know if this has been mentioned before (too lazy to search the thread)...

I added a standalone launcher applet but decided to remove it. Now they just add themselves. How do I stop this?

This applet actually isn't included in Reacocard's repository (it's a a vala applet). That being said... removing all standalone-launcher and 'Standalone Taskmanager' applets from awn-manager then exiting awn properly should get rid of them. But if that's not working do the following.

1) Close awn 2) Run 'killall taskmand' . Chances are it will say no process found. 3) Start awn-manager 4) Remove any standalone-launchers. 5) Remove anything called "Standalone Taskmanager" 6) Start awn.

As a side note: I'd suggest any support related questions for standalone-launchers be posted at: http://awn.planetblur.org/index.php?shard=forum&action=g_reply&ID=1495&page=1

thanks,

#1554

reacocard said: It's because Hardy stores its trash in a different place now, which the trash applet does not yet support. No fixes at this point.

Well, Synaptic updated AWN this morning, et voila, the trash icon is now dynamic. Thanks.

#1555

vgrisham said: Well, Synaptic updated AWN this morning, et voila, the trash icon is now dynamic. Thanks.

guess they fixed it when I wasn't looking. :)

#1556

reacocard said: guess they fixed it when I wasn't looking. :)

Well, that was short lived. It's not working again.

#1557

just installed with your simple how-to. Thanks very much :KS

#1558

For Gutsy Gibbon I get this error:

E: /var/cache/apt/archives/awn-core-applets-bzr_0.3.1.bzr396.1~gutsy_amd64.deb: trying to overwrite `/usr/bin/affinity-preferences', which is also in package affinity

Sorry this thread is very long if this is a repeat question...But I would think this would have been fixed by now...

Thanks

Soctu

#1559

soctu said: For Gutsy Gibbon I get this error:

E: /var/cache/apt/archives/awn-core-applets-bzr_0.3.1.bzr396.1~gutsy_amd64.deb: trying to overwrite `/usr/bin/affinity-preferences', which is also in package affinity

Sorry this thread is very long if this is a repeat question...But I would think this would have been fixed by now...

Thanks

Soctu

you need to uninstall affinity first I believe. Never seen this particular error before.

#1560

I completly uinstalled it several times even manually. To no avail.

#1561

This is absolutely beautiful... Just discovered it through your post. I hope it will completely replace my taskbar once I find time to configure. Cheers :)

#1562

krelverehan said: This is absolutely beautiful... Just discovered it through your post. I hope it will completely replace my taskbar once I find time to configure. Cheers :)

I wish you luck in that endeavor. I have managed to do so myself, actually, with the assitance of a couple other progams, namely trayer and gnome-do. Here's a screenshot of my desktop:

[[img]http://xs126.xs.to/xs126/08144/screenshot595.png.xs.jpg[/img]](http://xs.to/xs.php?h=xs126&d=08144&f=screenshot595.png)

the only applet on my avant is the battery applet, but if you prefer menus to gnome-do then there are at least four distinct applets available for that.

#1563

reacocard said: I wish you luck in that endeavor. I have managed to do so myself, actually, with the assitance of a couple other progams, namely trayer and gnome-do. Here's a screenshot of my desktop:

[[img]http://xs126.xs.to/xs126/08144/screenshot595.png.xs.jpg[/img]](http://xs.to/xs.php?h=xs126&d=08144&f=screenshot595.png)

the only applet on my avant is the battery applet, but if you prefer menus to gnome-do then there are at least four distinct applets available for that. That is a nice desktop you've got there. Gnome-do is nice and all, but you're right, not for everybody. But the text taking up most of the top right, is that trayer? I've installed it, but I can't get it to do anything...

#1564

krelverehan said: That is a nice desktop you've got there. Gnome-do is nice and all, but you're right, not for everybody. But the text taking up most of the top right, is that trayer? I've installed it, but I can't get it to do anything...

nope, the text is from conky. trayer is the systray in the lower right. All of trayer's options are set through commandline parameters, here's what I use:

trayer --edge bottom --align right --widthtype request --height 32 --SetDockType true --SetPartialStrut true --transparent true --alpha 255  --expand true

and here is my .conkyrc


# Create own window instead of using desktop (required in nautilus)
own_window yes
#own_window_hints undecorated,below,skip_taskbar,skip_pager
own_window_hints undecorated,sticky,below,skip_taskbar,skip_pager
own_window_type normal
own_window_title CONKY
#background yes

# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes

# fiddle with window
use_spacer yes
use_xft yes

# Update interval in seconds
update_interval 2.0

# Minimum size of text area
minimum_size 180
#maximum_size 180
maximum_width 180

# Draw shades?
draw_shades yes

# Text stuff
draw_outline no # amplifies text if yes
draw_borders no

uppercase no # set to yes if you want all text to be in uppercase

# Stippled borders?
stippled_borders 8

# border margins
border_margin 4

# border width
border_width 1

# Default colors and also border colors, grey90 == #e5e5e5
default_color white
default_shade_color black
default_outline_color white

own_window_colour brown
own_window_transparent yes

# Text alignment, other possible values are commented
#alignment top_left
alignment top_right
#alignment bottom_left
#alignment bottom_right

# Gap between borders of screen and text
gap_x 10
gap_y 5

# stuff after 'TEXT' will be formatted on screen

override_utf8_locale no
xftfont DejaVu Sans Mono:size=8
xftalpha 0.8



TEXT
Date: $alignr ${time %a}, ${time %e %B %G}
Time: $alignr ${time %H:%M:%S} ${time %Z}
Uptime: $alignr $uptime
Load: $alignr $loadavg
Speed: $alignr${freq 1}MHz
Temperature: $alignr${acpitemp}C

CPU0: $alignr${cpu cpu1}%  ${cpubar cpu1 6,85}
CPU1: $alignr${cpu cpu2}%  ${cpubar cpu2 6,85}
Ram   $alignr$memperc%  ${membar 6,85}
Swap  $alignr$swapperc%  ${swapbar 6,85}
/     $alignr${fs_used_perc /} %  ${fs_bar 6,85 /}
/home $alignr${fs_used_perc /home} %  ${fs_bar 6,85 /home}
/boot $alignr${fs_used_perc /boot} %  ${fs_bar 6,85 /boot}

wlan0:
ip: $alignr${addr wlan0}
downspeed: $alignr${downspeedf wlan0}
upspeed: $alignr${upspeedf wlan0}
totaldown: $alignr${totaldown wlan0}
totalup: $alignr${totalup wlan0}

eth0:
ip: $alignr${addr eth0}
downspeed: $alignr${downspeedf eth0}
upspeed: $alignr${upspeedf eth0}
totaldown: $alignr${totaldown eth0}
totalup: $alignr${totalup eth0}

${diskiograph_read 20,85} $alignr${diskiograph_write 20,85}
#1565

reacocard said: I wish you luck in that endeavor. I have managed to do so myself, actually, with the assitance of a couple other progams, namely trayer and gnome-do. Here's a screenshot of my desktop:

I like how clean the desktop is with no panels or anything. I also would like to do something like this, because I need to have as much screen space as possible (I have a 12inch laptop screen). One question though, where do your tasks get kept? It seem like you have no place to show open tasks/apps. Do you simply use alt+tab?

Thanks also for pointing to gnome-do. It looks like exactly what I want. I hate to go through menus. In fact I was going to install google desktop just so that I could launch programs with its search/launch box. But now I think I can use gnome-do :) (if I understand its function correctly)

#1566

Kiri said: I like how clean the desktop is with no panels or anything. I also would like to do something like this, because I need to have as much screen space as possible (I have a 12inch laptop screen).

One question though, where do your tasks get kept? It seem like you have no place to show open tasks/apps. Do you simply use alt+tab?

Thanks also for pointing to gnome-do. It looks like exactly what I want. I hate to go through menus. In fact I was going to install google desktop just so that I could launch programs with its search/launch box. But now I think I can use gnome-do :) (if I understand its function correctly)

avant in the lower left and alt+tab serve my needs for application switching. gnome-do is indeed awesome, just be aware it uses a significant amount of ram (40-60MB for me).

if you want to get the absolute maximum screen space, you can set avant to auto-hide (or stay under), and tell tray to stay under windows as well, which will make effectively the entire screen available for application windows.

#1567

hi, i removed gnome-panel and switch to stalonetray like systray. i place stalonetray on bottom right of screen but stalonetray not overlap awn dock. is it possibile to fix it?

#1568

reacocard said: avant in the lower left and alt+tab serve my needs for application switching. gnome-do is indeed awesome, just be aware it uses a significant amount of ram (40-60MB for me).

if you want to get the absolute maximum screen space, you can set avant to auto-hide (or stay under), and tell tray to stay under windows as well, which will make effectively the entire screen available for application windows.

Thanks. I think even if avant is on top, at least I can see the maximized window and avant is not too intrusive in that regard. Autohide might work well too, thanks.

I installed gnome-do. Its very cool, but I was a little disappointed with its memory usage and when I installed with the amarok plugin it crashed and threw my cpu to 90%. But without amarok plugin it runs ok. Next step I have to figure out how to configure it...

#1569

reacocard said: nope, the text is from conky. trayer is the systray in the lower right. All of trayer's options are set through commandline parameters, here's what I use:

and here is my .conkyrc

That is great... I've got conky fine up and running with a few personal tweaks :)

Now, I know how to change between fonts, but how do I make the desired font bold?

#1570

soctu said: I completly uinstalled it several times even manually. To no avail.

weird error, maybe due to an old affinity instal that wasn't fully purged. Try this :

sudo dpkg --force overwrite -i http://interne.radio-larzac.org/technique/cr-reunion-1er-avril/feuille-de-route-initiale
#1571

Question: Is it possible to set a hotkey or have a button to toggle the visibility of AWN? Basically I want to keep it visable, but occasionally I might need to hide it for a moment if it is in the way of the maximized window. A hotkey or even toggle on the bar would be really useful for this. Is it possible at the moment?

#1572

krelverehan said: That is great... I've got conky fine up and running with a few personal tweaks :)

Now, I know how to change between fonts, but how do I make the desired font bold?

you use the $font parameter, like so:

${font DejaVu Sans Mono:bold:size=8}this text is bold!$font this text is not bold :(

Kiri said: Question: Is it possible to set a hotkey or have a button to toggle the visibility of AWN?

Basically I want to keep it visable, but occasionally I might need to hide it for a moment if it is in the way of the maximized window. A hotkey or even toggle on the bar would be really useful for this. Is it possible at the moment?

no, it is not currently possible. I would suggest filing a feature request for that in launchpad.

#1573

Hi,

i tried installing AWN and i THINK it installed properly cause its in the application menu. However, when i click APP-> acc -> an grey box flashes quickly in the top left portion of my screen and dissappears. I feel like AWN is tryin to open but quickly shuts down!

thanks,

-mike

#1574

yungwunn911 said: Hi,

i tried installing AWN and i THINK it installed properly cause its in the application menu. However, when i click APP-> acc -> an grey box flashes quickly in the top left portion of my screen and dissappears. I feel like AWN is tryin to open but quickly shuts down!

thanks,

-mike

could you please run 'avant-window-navigator' (sans quotes) in a terminal and post the output?

#1575

I have posted a feature request on launchpad for a hotkey to toggle hide/unhide of the AWN bar: https://answers.launchpad.net/awn/+question/28891

#1576

Kiri said: I have posted a feature request on launchpad for a hotkey to toggle hide/unhide of the AWN bar:

https://answers.launchpad.net/awn/+question/28891

There's already a bug report for that that's been confirmed by Neil: https://bugs.launchpad.net/awn/+bug/135232

#1577

SQuark said: There's already a bug report for that that's been confirmed by Neil: https://bugs.launchpad.net/awn/+bug/135232

It doesn't seem to actually have been implemented though. But I got a reply just now saying that they will include it in the next release :)

#1578

Hi,

I'm trying to install this but I get:

elliot@elliot-desktop:~$ sudo apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Package avant-window-navigator is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However, the following packages replace it: avant-window-navigator-data E: Package avant-window-navigator has no installation candidate

Help?

#1579

Elliot76 said: Hi,

I'm trying to install this but I get:

elliot@elliot-desktop:~$ sudo apt-get install avant-window-navigator Reading package lists... Done Building dependency tree Reading state information... Done Package avant-window-navigator is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However, the following packages replace it: avant-window-navigator-data E: Package avant-window-navigator has no installation candidate

Help?

it's avant-window-navigator-bzr not avant-window-navigator, assuming you followed the rest of the guide.

#1580

I belive the package you are looking for is avant-window-navigator-bzr

Hope that helps,

Megaqwerty

EDIT: Heh, beaten to it by a few seconds. Kinda wish there was a way to delete useless "duplicate" posts like mine.

#1581

I'm trying to install AWN from source under Feisty, autogen.sh complains

"Requested 'gdk-2.0 >= 2.12' but version of GDK is 2.10.11"

Is there a way to upgrade GDK (what is GDK anyways, shouldn't it be GTK?)?

thanks

#1582

jupiter2006 said:

Is there a way to upgrade GDK (what is GDK anyways, shouldn't it be GTK?)?

thanks

I was going to take a guess and say "Gnome Desktop Kernel"... but apparently that is completely wrong and it is actually "Grammar Deployment Kit" :lolflag:

Don't know how to update is sorry. I would guess something like: sudo apt-get update gdk But I really wouldn't recommend going with my guesses... ;)

#1583

jupiter2006 said: I'm trying to install AWN from source under Feisty, autogen.sh complains

"Requested 'gdk-2.0 >= 2.12' but version of GDK is 2.10.11"

Is there a way to upgrade GDK (what is GDK anyways, shouldn't it be GTK?)?

thanks

the only way to upgrade it would be to recompile that from sources as well, but since GTK relies on GDK, if you messed it up your system would be rendered mostly unusable, so I would not recommend that. Simplest solution is for you to upgrade to gutsy or hardy, which already have the required version.

#1584

Hi reacocard, your pakets are really great, thank you. In the AWN-Wiki, there is written:

Warning: You'll most likely get a warning about no public key (or something similar). This is a known bug in Launchpad and is slated to be fixed in March 2008.

but it's April. When will it be fixed? thank you

#1585

Tux_Johannes said: Hi reacocard,

your pakets are really great, thank you. In the AWN-Wiki, there is written:

but it's April. When will it be fixed? thank you

No idea, it's a launchpad bug, not mine. Nothing I can do about it until the launchpad devs decide to fix it.

#1586

Hello all,

I have been working with awn for a while, and I am trying to work with affinity. I am getting the following error when tyring to run the preferences affinity-preferences.


Traceback (most recent call last):
  File "/usr/bin/affinity-preferences", line 288, in <module>
    gtk.glade.bindtextdomain(I18N_DOMAIN, DATADIR + '/locale')
NameError: name 'DATADIR' is not defined

I have seen this posted on this thread but no solution is given for the next 4 pages ( I didn't look at all of them).

The reason I am trying to run the preferences is to see why when I type the name of a program on the affinity search I don't get any hits.

The image shown on this link is what I can't do

http://planet.awn-project.org/?cat=24

I have trackerd running and it is indexing my files, so I don't know what the issue can be, is there a setting I am missing?

I have installed affinity from these repos


deb http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main
deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main

My system is:

Ubuntu Gutsy 2.6.22-14-generic Compiz-fussion

Regards Fotis

#1587

Installed via reacocards repository

aashay@kriz-jr:~$ aptitude search avant awn
c   avant-window-navigator          - A MacOS X like panel for GNOME            
i   avant-window-navigator-bzr      - Avant Window Navigator                    
c   awn-core-applets                - A collection of applets for avant-windows-
i   awn-core-applets-bzr            - A collection of applets for avant-window-n
c   awn-manager                     - A preferences manager for avant-window-nav
i   awn-manager-bzr                 - library for Avant Window Navigator applets
i A libawn-bzr                      - library for Avant Window Navigator applets
i   libawn-bzr-dev                  - library for Avant Window Navigator applets
p   libawn-dev                      - library for avant-window-navigator - devel
c   libawn0                         - library for avant-window-navigator        
pB  python-awn                      - library for avant-window-navigator - Pytho
iBA python-libawn-bzr               - library for Avant Window Navigator applets

This is what I get when running awn:

** (awn-applet-activation:19165): WARNING **: Unable to load module /usr/lib/awn/applets/media-control/mediacontrol.py


** (awn-applet-activation:19165): WARNING **: /usr/lib/awn/applets/media-control/mediacontrol.py: invalid ELF header

** (awn-applet-activation:19165): WARNING **: Could not create plug

EDIT: Ran the cleanup mentioned in the first post and reinstalled. All is fine now

#1588

Here's a weird one: in Hardy (though this would happen occasionally in Gutsy, too), the Trash applet (the simple, lightweight one) icon sits significantly llower on the bar than all the other icons. Any ideas why this would be happening and a hopefully simple way to fix it?

#1589

i have the exactly same problem...but with other applet, the stack one. i have the curved thing ^^

#1590

Just updated in Gutsy, not sure what the changes were yet... in addition, I had a thought. Would it be possible to add some delay to avant popping up after autohiding? In other words, if avant was hidden, you would hold your cursor at the bottom of the screen for a second or two before it popped up. I like the autohide feature a lot, but avant always pops up by accident while I'm moving my mouse near the bottom of the screen... not to mention there's already a delay added between moving my cursor away from avant, and avant actually hiding... anyone else think this would be useful?

#1591

First of all big thanks to reacocard for simplifying the AWN process!

I am having a problem, however... a day or two ago I received an update for AWN and since then the auto-hide options (hide behind maximized window) have been completely broken. I see in the bug tracker there are some issues out there with the auto-hiding, but right up until this update it was working fine.

Anyone else?

EDIT: Embarrassingly, I seem to have found the problem immediately after posting... the compizfusion plugin Desktop Wall breaks AWN's auto-hide (and it's 100% consistent for me). The Desktop Cube and the Desktop Plane both seem to work fine!

#1592

Hay all I've tried to install avant without luck. so I thought I'd try one more time. I get the same error every time. any help would be great,

laptop@Home-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr

Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr (= 0.3.1.bzr220.1~gutsy) but it is not going to be installed awn-core-applets-bzr: Depends: libawn-bzr but it is not going to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.18.2-0ubuntu1 is to be installed Depends: libawn-bzr but it is not going to be installed awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed E: Broken packages

#1593

dandixon said: Hay all

I've tried to install avant without luck. so I thought I'd try one more time. I get the same error every time. any help would be great,

as the guide says, you must have ubuntu-updates enabled.

#1594

thanks I did that on my home box but not the laptop where I'm trying to install this tool. But now the I have turned the update on I get a new error.> laptop@Home-laptop:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr [sudo] password for laptop: Reading package lists... Done Building dependency tree Reading state information... Done awn-core-applets-bzr is already the newest version. awn-manager-bzr is already the newest version. The following NEW packages will be installed: avant-window-navigator-bzr 0 upgraded, 1 newly installed, 0 to remove and 229 not upgraded. 7 not fully installed or removed. Need to get 0B/285kB of archives. After unpacking, 1466kB of additional disk space will be used. WARNING: The following packages cannot be authenticated! avant-window-navigator-bzr Install these packages without verification [y/N]? y (Reading database ... 106082 files and directories currently installed.) Unpacking avant-window-navigator-bzr (from .../avant-window-navigator-bzr_0.3.1.bzr220.1~gutsy_i386.deb) ... dpkg: error processing /var/cache/apt/archives/avant-window-navigator-bzr_0.3.1.bzr220.1~gutsy_i386.deb (--unpack): trying to overwrite `/usr/share/avant-window-navigator/avant-window-navigator-48.png', which is also in package avant-window-navigator-data dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/avant-window-navigator-bzr_0.3.1.bzr220.1~gutsy_i386.deb E: Sub-process /usr/bin/dpkg returned an error code (1)

thanks

#1595

dandixon said: thanks I did that on my home box but not the laptop where I'm trying to install this tool.

But now the I have turned the update on I get a new error. thanks

you need to completely remove the old version of avant-window-navigator first.

#1596

reacocard said: file browser, pandora, and standalone taskmanager are completely broken. Others (like tsclient) may appear broken if they are missing dependencies.

I'm running AWN on Hardy 64. The tsclient applet stopped working early last week. Is this a known issue with Hardy, or do I need to install some dependencies?

#1597

vgrisham said: I'm running AWN on Hardy 64. The tsclient applet stopped working early last week. Is this a known issue with Hardy, or do I need to install some dependencies?

the tsclient package should be the only additional depenency for that applet. If that is installed and working correctly, then I'd say it's a hardy issue.

#1598

reacocard said: the tsclient package should be the only additional depenency for that applet. If that is installed and working correctly, then I'd say it's a hardy issue.

For what it is worth, my Tsclient stopped working last week too after an update. It just shows a vertical white line when I add it to the bar. Previous to the update it was ok. I just saw another update tonight and installed that but it still does the same.

#1599

reacocard said: the tsclient package should be the only additional depenency for that applet. If that is installed and working correctly, then I'd say it's a hardy issue.

Yes, tsclient is installed and working fine. Should I file a bug report at Ubuntu launchpad?

#1600

vgrisham said: Yes, tsclient is installed and working fine. Should I file a bug report at Ubuntu launchpad?

yeah, file one against awn-extras.

#1601

HI there, I've only been using Gutsy for 2 days now, and have come to an absolute standstill trying to get avant to install. I have pasted everything from the terminal below. It just seems as if the resources are unavailable to download or something. Any help would be greatly appreciated!

thomas@thomas-desktop:~$ echo 'deb http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main' | sudo tee -a /etc/apt/sources.list [sudo] password for thomas: deb http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main thomas@thomas-desktop:~$ echo 'deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main' | sudo tee -a /etc/apt/sources.list deb-src http://ppa.launchpad.net/reacocard-awn/ubuntu gutsy main thomas@thomas-desktop:~$ sudo apt-get update Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/main Translation-en_GB Ign cdrom://Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016) gutsy/restricted Translation-en_GB Get: 1 http://archive.canonical.com gutsy Release.gpg [191B] Ign http://archive.canonical.com gutsy/partner Translation-en_GB Ign http://ppa.launchpad.net gutsy Release.gpg Ign http://ppa.launchpad.net gutsy/main Translation-en_GB Get: 2 http://security.ubuntu.com gutsy-security Release.gpg [191B] Ign http://security.ubuntu.com gutsy-security/restricted Translation-en_GB Hit http://archive.canonical.com gutsy Release Get: 3 http://ppa.launchpad.net gutsy Release [27.6kB] Ign http://hydr0g3n.free.fr ./ Release.gpg Ign http://security.ubuntu.com gutsy-security/main Translation-en_GB Ign http://security.ubuntu.com gutsy-security/multiverse Translation-en_GB Ign http://security.ubuntu.com gutsy-security/universe Translation-en_GB Hit http://security.ubuntu.com gutsy-security Release Hit http://archive.canonical.com gutsy/partner Packages Get: 4 http://de.archive.ubuntu.com gutsy-backports Release.gpg [191B] Hit http://archive.canonical.com gutsy/partner Sources Ign http://de.archive.ubuntu.com gutsy-backports/restricted Translation-en_GB Hit http://security.ubuntu.com gutsy-security/restricted Packages Hit http://security.ubuntu.com gutsy-security/main Packages Hit http://security.ubuntu.com gutsy-security/multiverse Packages Hit http://security.ubuntu.com gutsy-security/universe Packages Hit http://security.ubuntu.com gutsy-security/restricted Sources Hit http://security.ubuntu.com gutsy-security/main Sources Hit http://security.ubuntu.com gutsy-security/multiverse Sources Hit http://security.ubuntu.com gutsy-security/universe Sources Ign http://ppa.launchpad.net gutsy/main Packages Ign http://de.archive.ubuntu.com gutsy-backports/main Translation-en_GB Ign http://de.archive.ubuntu.com gutsy-backports/multiverse Translation-en_GB Ign http://ppa.launchpad.net gutsy/main Sources Ign http://de.archive.ubuntu.com gutsy-backports/universe Translation-en_GB Get: 5 http://ppa.launchpad.net gutsy/main Packages [1516B] Ign http://hydr0g3n.free.fr ./ Translation-en_GB Hit http://de.archive.ubuntu.com gutsy-backports Release Get: 6 http://ppa.launchpad.net gutsy/main Sources [758B] Hit http://de.archive.ubuntu.com gutsy-backports/restricted Packages Hit http://de.archive.ubuntu.com gutsy-backports/main Packages Hit http://de.archive.ubuntu.com gutsy-backports/multiverse Packages Hit http://de.archive.ubuntu.com gutsy-backports/universe Packages Get: 7 http://gb.archive.ubuntu.com gutsy Release.gpg [191B] Hit http://gb.archive.ubuntu.com gutsy/main Translation-en_GB Hit http://gb.archive.ubuntu.com gutsy/restricted Translation-en_GB Hit http://gb.archive.ubuntu.com gutsy/universe Translation-en_GB Hit http://gb.archive.ubuntu.com gutsy/multiverse Translation-en_GB Get: 8 http://gb.archive.ubuntu.com gutsy-updates Release.gpg [191B] Ign http://gb.archive.ubuntu.com gutsy-updates/main Translation-en_GB Ign http://gb.archive.ubuntu.com gutsy-updates/restricted Translation-en_GB Ign http://gb.archive.ubuntu.com gutsy-updates/universe Translation-en_GB Ign http://gb.archive.ubuntu.com gutsy-updates/multiverse Translation-en_GB Hit http://gb.archive.ubuntu.com gutsy Release Hit http://gb.archive.ubuntu.com gutsy-updates Release Hit http://gb.archive.ubuntu.com gutsy/main Packages Hit http://gb.archive.ubuntu.com gutsy/restricted Packages Hit http://gb.archive.ubuntu.com gutsy/universe Packages Hit http://gb.archive.ubuntu.com gutsy/multiverse Packages Hit http://gb.archive.ubuntu.com gutsy/main Sources Hit http://gb.archive.ubuntu.com gutsy/restricted Sources Hit http://gb.archive.ubuntu.com gutsy/universe Sources Hit http://gb.archive.ubuntu.com gutsy/multiverse Sources Hit http://gb.archive.ubuntu.com gutsy-updates/main Packages Hit http://gb.archive.ubuntu.com gutsy-updates/restricted Packages Hit http://gb.archive.ubuntu.com gutsy-updates/universe Packages Hit http://gb.archive.ubuntu.com gutsy-updates/multiverse Packages Hit http://gb.archive.ubuntu.com gutsy-updates/main Sources Hit http://gb.archive.ubuntu.com gutsy-updates/restricted Sources Hit http://gb.archive.ubuntu.com gutsy-updates/universe Sources Hit http://gb.archive.ubuntu.com gutsy-updates/multiverse Sources Ign http://hydr0g3n.free.fr ./ Release Ign http://hydr0g3n.free.fr ./ Packages Ign http://download.tuxfamily.org gutsy Release.gpg Ign http://download.tuxfamily.org gutsy/avant-window-navigator Translation-en_GB Ign http://download.tuxfamily.org gutsy Release Ign http://download.tuxfamily.org gutsy/avant-window-navigator Packages Ign http://download.tuxfamily.org gutsy/avant-window-navigator Sources Err http://download.tuxfamily.org gutsy/avant-window-navigator Packages 404 Not Found Err http://download.tuxfamily.org gutsy/avant-window-navigator Sources 404 Not Found Ign http://hydr0g3n.free.fr ./ Sources Hit http://hydr0g3n.free.fr ./ Packages Hit http://hydr0g3n.free.fr ./ Sources Fetched 29.9kB in 15s (1934B/s) Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/binary-i386/Packages.gz 404 Not Found Failed to fetch http://download.tuxfamily.org/syzygy42/dists/gutsy/avant-window-navigator/source/Sources.gz 404 Not Found Reading package lists... Done E: Some index files failed to download, they have been ignored, or old ones used instead. thomas@thomas-desktop:~$

Thanks!

#1602

For some reason you're using outdated instructions! That repository (tuxfamily.org) is no longer in use. Go to System - Adminsitration - Software Sources, click the Third-party tab, and disable the tuxfamily one.

Then try the first post again (click), you should be using the launchpad.net repository.

#1603

reacocard said: yeah, file one against awn-extras.

Okay. I filed a bug for the dead (in Hardy) tsclient applet. Here's the link.

It looks like Andrew found a fix and is waiting for someone from awnlib to review it before passing it on to bzr.

#1604

Vadi said: For some reason you're using outdated instructions! That repository (tuxfamily.org) is no longer in use. Go to System - Adminsitration - Software Sources, click the Third-party tab, and disable the tuxfamily one.

Then try the first post again (click), you should be using the launchpad.net repository.

Thanks for the help, it seems to have installed now, Though the icon doesn't seem to open it. I haven't managed to actually open the program yet! :s

#1605

Any news on when will 8.04 support be added?

#1606

Vadi said: Any news on when will 8.04 support be added?

Hardy packages have been available for a while now, instructions are in the guide as always.

#1607

Edit: could you please change the 'Repository (Gutsy only):' title then heh. Also universe and ubuntu-updates are enabled by default in 8.04

#1608

Vadi said: Edit: could you please change the 'Repository (Gutsy only):' title then heh. Also universe and ubuntu-updates are enabled by default in 8.04

oops, missed that. as for the repositories stuff, it's safer to leave it in as those upgrading from gutsy and then using this guide might not have them enabled.

#1609

Oh. My. God. I'm so sick of this not working. I want to install is SO badly. Why's it got to be so damn difficult? Linux is great but it's such a headache, if only it were as easy as DOWNLOAD -> install. :P

This is what I get: Running "Linux Mint 3.0 Cassandra" I updated sudo apt-get update, upgrade etc. so yeah.

damien@COOKIEXP:~$ sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr

Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: avant-window-navigator-bzr: Depends: libart-2.0-2 (>= 2.3.18) but 2.3.17-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: libc6 (>= 2.6-1) but 2.5-0ubuntu14 is to be installed Depends: libdbus-1-3 (>= 1.1.1) but 1.0.2-1ubuntu4 is to be installed Depends: libdbus-glib-1-2 (>= 0.74) but 0.73-1 is to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.12.11-0ubuntu1 is to be installed Depends: libgnomeui-0 (>= 2.19.1) but 2.17.92-0ubuntu1 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.10.11-0ubuntu3 is to be installed Depends: liborbit2 (>= 1:2.14.8) but 1:2.14.7-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.16.2-0ubuntu1 is to be installed Depends: libwnck22 (>= 2.19.5) but it is not installable Depends: libxdamage1 (>= 1:1.1) but 1:1.0.3-3 is to be installed Depends: libawn-bzr (= 0.3.1.bzr222.1~gutsy) but it is not going to be installed awn-core-applets-bzr: Depends: libart-2.0-2 (>= 2.3.18) but 2.3.17-1 is to be installed Depends: libawn-bzr but it is not going to be installed Depends: libc6 (>= 2.6-1) but 2.5-0ubuntu14 is to be installed Depends: libdbus-1-3 (>= 1.1.1) but 1.0.2-1ubuntu4 is to be installed Depends: libdbus-glib-1-2 (>= 0.74) but 0.73-1 is to be installed Depends: libglade2-0 (>= 1:2.6.1) but 1:2.6.0-3 is to be installed Depends: libglib2.0-0 (>= 2.14.0) but 2.12.11-0ubuntu1 is to be installed Depends: libgnomeui-0 (>= 2.19.1) but 2.17.92-0ubuntu1 is to be installed Depends: libgtk2.0-0 (>= 2.12.0) but 2.10.11-0ubuntu3 is to be installed Depends: libgtop2-7 (>= 2.19.4) but 2.14.8-0ubuntu1 is to be installed Depends: libnotify1 (>= 0.4.4) but 0.4.3-1 is to be installed Depends: libnotify1-gtk2.10 but it is not installable Depends: liborbit2 (>= 1:2.14.8) but 1:2.14.7-0ubuntu1 is to be installed Depends: libpango1.0-0 (>= 1.18.3) but 1.16.2-0ubuntu1 is to be installed Depends: libtrackerclient0 (>= 0.6.3) but it is not going to be installed Depends: libvte9 (>= 1:0.16.9) but 1:0.16.1-0ubuntu1 is to be installed Depends: libwnck22 (>= 2.19.5) but it is not installable Depends: libxdamage1 (>= 1:1.1) but 1:1.0.3-3 is to be installed Depends: libxml2 (>= 2.6.29) but 2.6.27.dfsg-1ubuntu3.1 is to be installed Depends: libawn-bzr but it is not going to be installed awn-manager-bzr: Depends: python-libawn-bzr but it is not going to be installed E: Broken packages damien@COOKIEXP:~$

Please help me! Step by step Thanks :(

#1610

damien275x said: Oh. My. God.

I'm so sick of this not working. I want to install is SO badly. Why's it got to be so damn difficult? Linux is great but it's such a headache, if only it were as easy as DOWNLOAD -> install. :P

This is what I get: Running "Linux Mint 3.0 Cassandra" I updated sudo apt-get update, upgrade etc. so yeah.

Please help me! Step by step Thanks :(

Are you sure you have all the right repositories enabled? It might be different for Mint, but I thought it uses the Ubuntu repo's too so I don't know why that would be a problem.

Before we begin, make sure you have all the needed ubuntu repositories installed, namely universe and ubuntu-updates. This can be done in System -> Administration -> Software Sources by enabling 'recommended updates' under the 'Updates' tab, and also enabling 'Community-maintained Open Source software' under the 'Ubuntu Software' tab.

EDIT: Actually, I looked on the Mint website and it says that Darnya is the newest release, version 4.0, which is based off of Gutsy. So I guess the one you're using is based off of Feisty. So, you should either upgrade to 4.0, or follow the instructions for Feisty.

#1611

damien275x said: Oh. My. God.

I'm so sick of this not working. I want to install is SO badly. Why's it got to be so damn difficult? Linux is great but it's such a headache, if only it were as easy as DOWNLOAD -> install. :P

This is what I get: Running "Linux Mint 3.0 Cassandra" I updated sudo apt-get update, upgrade etc. so yeah.

Please help me! Step by step Thanks :(

note what the guide says: I support ONLY ubuntu gutsy and hardy. that does not include derivative distros like Mint. That said, make sure you're running the newest version of Mint and using the gutsy packages from the guide.

#1612

I've just pushed out a new revision for hardy that switches to using the desktop-agnostic version of AWN. In theory, this should be seamless but if anyone notices any new issues after this update let me know. Gutsy users will see an update but it has no changes, it's just an artifact of my build system.

#1613

But there are no instructions for fiesty. They're all old useless tutorials that use that tux package that doesnt even exist Sigh.............

there's no way im upgrading, it took ages to set this machine up the way i like it i guess ill have to go without it.

#1614

damien275x said: But there are no instructions for fiesty.

They're all old useless tutorials that use that tux package that doesnt even exist Sigh.............

there's no way im upgrading, it took ages to set this machine up the way i like it i guess ill have to go without it.

Current AWN won't compile on feisty, hence there are no packages. If it did compile, there would be. Simple as that. Also, if you don't like upgrading, you should install hardy when it comes out in a few days and stick with that instead of feisty. Hardy is an LTS release so it'll be supported much longer than feisty will be, and you're more likely to be able to get help for it than for feisty.

#1615

Any one on my issue #1586?

#1616

NOOOO!!!...after today's update awn stopped working...it just won't open.. alothouh the manager does... is this just me or does someone else have the same prob?

#1617

OMG it stopped working for me too.

Most of my applets don't work, and when i try to change the launchers position with awn-manager the dock crashes. Its feels very buggy and the launchers sometimes doesn't work.

Its was so great back a couple hours ago :(

#1618

same :( ...but your lucky you can even get the dock...myne doesn't show up at all...i tried uninstalling and going from the official repositories but there are no applets :(

#1619

myddewji13 said: same :( ...but your lucky you can even get the dock...myne doesn't show up at all...i tried uninstalling and going from the official repositories but there are no applets :(

Yes but it made my desktop feel buggy so i unistalled and im waiting for a fix (maybe?), it was great before. I'm gonna look other awn projects and see if i can change mean while there isn't a fix for this one :(

#1620

damien275x said:

This is what I get: Running "Linux Mint 3.0 Cassandra"

This is a Ubuntu forum, not a Linux Mint one... and this guide is for Ubuntu too. I wouldn't be expecting it to work.

#1621

All work ok under; Ubuntu hardy after last update; only stacks plugger appelet stop working??Purge and reinstall don't solve the problem.That plugin work nice in previus Awn-bzr versions. Thanks for hard job on Awn):P

#1622

AWN is dead after this morning's update on both my 32-Bit Hardy laptop and my 64-bit Hardy desktop. I tried purging and reinstalling to no avail.

Here's what I get:

vaughn@vaughn-desktop:~$ avant-window-navigator

Screen is composited. APPLET : /usr/lib/awn/applets/main-menu.desktop APPLET : /usr/lib/awn/applets/places.desktop APPLET : /usr/lib/awn/applets/stacks.desktop LOADED : /home/vaughn/.config/awn/launchers/awn_launcher-1.desktop LOADED : /home/vaughn/.config/awn/launchers/awn_launcher.desktop

(avant-window-navigator:6333): WARNING : Invalid Version string '0.9.4' in /usr/share/applications/gnucash.desktop LOADED : /usr/share/applications/gnucash.desktop LOADED : /home/vaughn/.config/awn/launchers/awn_launcher-2.desktop

(avant-window-navigator:6333): WARNING : Could not load the desktop item at '/home/vaughn/Desktop/amarok.desktop': No such file or directory Segmentation fault Anybody know what's going on?

#1623

I've moved this thread into the new forum system, it can now be found here: http://ubuntuforums.org/showthread.php?t=762363

All new questions/comments/requests should go there instead. Mods, if you see this message please close/lock this thread.

#1624

reacocard said: install the gnome-icon-theme package

similar problem fixed by using gdk-pixbuf-query-loaders to fix my gdk-pixbuf.loaders file. 1) find your gdk-pixbuf.loaders file mine was: /usr/local/etc/gtk-2.0/gdk-pixbuf.loaders 2) check where gdk-pixbuf-query-loaders executable is. I found two places. /usr/local/bin and /usr/bin. The one in /usr/local/bin generated output that didn't know about svg files, and caused the problem. 3) run the correct one and redirect its output to replace your gdk-pixbuf.loaders file. In my case:

/usr/bin/gdk-pixbuf-query-loaders > /usr/local/etc/gtk-2.0/gdk-pixbuf.loaders

4) Celebrate

#1625

thnx

#1626

Thanks for your tutorial I uninstalled my old version from another repository and used your tutorial which worked a dream. However I'm having a problem shown in the screenshot below. At first my icons sit on the dock as they used to until I installed hardy. After a click on them they separate from the dock as shown so they are hidden under my open apps, also setting my bar value to -1 doesn't work. Anyone got any clues?

#1627

Apologies sorted it by default it obviously switches on autohide in bar behaviour unchecking this restores it to how I want it. -1 still doesn't put a curve in though.....

#1628

this thread is no longer active, please repost in this one: http://ubuntuforums.org/showthread.php?t=762363

#1629

Thread closed at the request of the OPer. Please follow the link in the initial post for an updated thread.