Eagle Mode: zoomable user interface (ZUI) with file manager

Filemanagers, partitioning tools, etc.
Post Reply
Message
Author
User avatar
spiritwild
Posts: 181
Joined: Mon 03 Oct 2016, 10:06

Eagle Mode: zoomable user interface (ZUI) with file manager

#1 Post by spiritwild »

Played with this on lxpup tahr 14.12. I found it interesting but very awkward for my simple needs. Actually, it reminds me of some old Dos programs that use to emulate windows back in the day.

Maybe someone has use for it, it's quite unique.


http://eaglemode.sourceforge.net/

User avatar
Flash
Official Dog Handler
Posts: 13071
Joined: Wed 04 May 2005, 16:04
Location: Arizona USA

#2 Post by Flash »

A screenshot would be a nice touch. (Max 800 pixels wide, thank you.)

User avatar
Pete
Posts: 660
Joined: Sun 02 Mar 2014, 18:36

#3 Post by Pete »

Uhmmm, interesting concept.
Don't know if it's a stroke of genius or pure madness, but certainly a different approach.

BTW, lots of screenshots here:

http://eaglemode.sourceforge.net/screenshots.html

dancytron
Posts: 1519
Joined: Wed 18 Jul 2012, 19:20

Careful with the live image.

#4 Post by dancytron »

I went to the site, watched the video and was intrigued.

I download the live cd version, burned it to a usb stick with universal usb installer.

It booted and I clicked once on the desktop and it crashed hard. I had some disk errors on my Windows XP partition and had to do a system restore and general futz around with it to get it working again.

So be careful with it if you decide to give it a try.

User avatar
LazY Puppy
Posts: 1934
Joined: Fri 21 Nov 2014, 18:14
Location: Germany

#5 Post by LazY Puppy »

Downloaded the eaglemode_0.91.0-1_i386.deb and created a .sfs file.

Works in tahr 6.0.2.

Press and hold mouse wheel down to scroll windows zoomed content.

Very interesting...

Edit:

Now going to test the 64bit version in tahr64 605.
Attachments
Screenshot-2016-10-07-04-36-05.jpg
(138.97 KiB) Downloaded 379 times
RSH

"you only wanted to work your Puppies in German", "you are a separatist in that you want Germany to secede from Europe" (musher0) :lol:

No, but I gave my old drum kit away for free to a music store collecting instruments for refugees! :wink:

slavvo67
Posts: 1610
Joined: Sat 13 Oct 2012, 02:07
Location: The other Mr. 305

#6 Post by slavvo67 »

Considering my eyes just aren't what they used to be... I'll be taking a look, as well. Thanks for the insight RSH!

Slavvo67

TyroBGinner
Posts: 236
Joined: Wed 30 Mar 2016, 20:18

#7 Post by TyroBGinner »

I have mentioned Eagle Mode on the forum before, but it engendered no interest. I have been using it for a few years after seeing it mentioned on other forums.

It is quite cool and deliciously unix-y - or irix-y, more specifically.

If only there were more graphical toys like this - things in the manner of fsv, xcruise, and tdfsb. In particular, fsv was inspired by one of SGI's graphical file managers - it famously appeared in the movie Jurassic Park.

The visual presentation of information structures can stand some improvement. Interesting and striking examples in the field may be found here.

User avatar
LazY Puppy
Posts: 1934
Joined: Fri 21 Nov 2014, 18:14
Location: Germany

#8 Post by LazY Puppy »

Downloaded the eaglemode_0.91.0-1_amd64.deb and created a .sfs file.

Works in tahr64 6.0.5.

Press and hold mouse wheel down to scroll windows zoomed content. Work also for the application bar on top of the window.

Very, very interesting...

...and very, very cool. The more I get familiar with that, the more I like it.

To configure some of its applications plugins, just edit the perl files in:

/usr/lib/eaglemode/etc/emFileMan/Commands

Example file:

/usr/lib/eaglemode/etc/emFileMan/Commands/AudioVideo/Kaffeine.pl

Since there is no kaffeine installed in tahr (and since I don't have such .sfs file) I just changed this for the use of Aqualung Audio Player.
Original using Kaffeine wrote:#!/usr/bin/perl
#[[BEGIN PROPERTIES]]
# Type = Command
# Order = 1.0
# Interpreter = perl
# DefaultFor = .aac:.asf:.au:.avi:.flac:.fli:.flv:.it:.m2t:.m2v:.mkv:.mod:.mov:.mp3:.mp4:.mpeg:.mpg:.mpv:.ogg:.ogv:.ra:.rm:.s3m:.stm:.wav:.vob:.wma:.wmv:.xm
# Caption = Kaffeine
# Descr =Open audio or video files in the Kaffeine Player. It is
# Descr =even possible to open a directory which contains files to
# Descr =be played.
# Descr =
# Descr =Selection details:
# Descr =
# Descr = Source: Ignored.
# Descr =
# Descr = Target: The files or the directory to be opened.
# Icon = thirdparty/kaffeine.tga
#[[END PROPERTIES]]

use strict;
use warnings;
BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; }

OpenTargetsWith('kaffeine');
I just changed the red parts above to the green ones below.
Modification for Aqualung wrote:#!/usr/bin/perl
#[[BEGIN PROPERTIES]]
# Type = Command
# Order = 1.0
# Interpreter = perl
# DefaultFor = .aac:.asf:.au:.avi:.flac:.fli:.flv:.it:.m2t:.m2v:.mkv:.mod:.mov:.mp3:.mp4:.mpeg:.mpg:.mpv:.ogg:.ogv:.ra:.rm:.s3m:.stm:.wav:.vob:.wma:.wmv:.xm
# Caption = Aqualung
# Descr =Open audio files in the Aqualung Player. It is
# Descr =even possible to open a directory which contains files to
# Descr =be played.
# Descr =
# Descr =Selection details:
# Descr =
# Descr = Source: Ignored.
# Descr =
# Descr = Target: The files or the directory to be opened.
# Icon = thirdparty/Aqualung.tga
#[[END PROPERTIES]]

use strict;
use warnings;
BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; }

OpenTargetsWith('aqualung');
I should change also the list of: DefaultFor

Done this also already for the use of geany instead of none-existing gedit text editor.

Since these files are some sort of 'plugins' it's probably possible to create own perl files like the example above. Though, I didn't check this out by now.
RSH

"you only wanted to work your Puppies in German", "you are a separatist in that you want Germany to secede from Europe" (musher0) :lol:

No, but I gave my old drum kit away for free to a music store collecting instruments for refugees! :wink:

User avatar
LazY Puppy
Posts: 1934
Joined: Fri 21 Nov 2014, 18:14
Location: Germany

#9 Post by LazY Puppy »

Since these files are some sort of 'plugins' it's probably possible to create own perl files like the example above. Though, I didn't check this out by now.
Checked this right now.

Doing a copy of /usr/lib/eaglemode/etc/emFileMan/Commands/AudioVideo/VLC.pl copied to /usr/lib/eaglemode/etc/emFileMan/Commands/AudioVideo/Aqualung.pl.

Reset the /usr/lib/eaglemode/etc/emFileMan/Commands/AudioVideo/Kaffeine.pl back to original.

Edited all the parts in /usr/lib/eaglemode/etc/emFileMan/Commands/AudioVideo/Aqualung.pl for the use of Aqualung Player.

Removed /root/.eaglemode and started eaglemode.

Aqualung item appeared in the applications bar and runs from that item.
RSH

"you only wanted to work your Puppies in German", "you are a separatist in that you want Germany to secede from Europe" (musher0) :lol:

No, but I gave my old drum kit away for free to a music store collecting instruments for refugees! :wink:

User avatar
Pete
Posts: 660
Joined: Sun 02 Mar 2014, 18:36

#10 Post by Pete »

TyroBGinner wrote:.... fsv was inspired by one of SGI's graphical file managers - it famously appeared in the movie Jurassic Park.
....
This one?

https://www.youtube.com/watch?v=dxIPcbmo1_U



@LazY Puppy

You've done quite a bit of work already and have inspired me to try it out.

User avatar
Flash
Official Dog Handler
Posts: 13071
Joined: Wed 04 May 2005, 16:04
Location: Arizona USA

#11 Post by Flash »

I downloaded the 64-bit AMD .deb. Just clicking on it installed it without any problem in Quirky Werewolf 64. After fiddling with it for half an hour, I decided it wasn't for me and closed it out. When I went back to using the Internet, I found that I had learned to expect the scroll wheel to zoom instead of scrolling. That slowed me down for a while until I unlearned it.

Eagle Mode is an impressive piece of work, but no use to me.

I noticed that it incorrectly reports the size of directories. Why is that so hard to do?

TyroBGinner
Posts: 236
Joined: Wed 30 Mar 2016, 20:18

#12 Post by TyroBGinner »

Could you give some detail on the incorrect reporting of directory sizes?

User avatar
Flash
Official Dog Handler
Posts: 13071
Joined: Wed 04 May 2005, 16:04
Location: Arizona USA

#13 Post by Flash »

When I was looking at a directory that contained, say, 200 MB of files, the number that Eagle Mode showed was something like 64 kB, or at any rate much less than the correct size, and all the directories showed the same number. All the file managers I've seen do pretty much the same thing, except ROX, which shows nothing at all for the size of a directory. At least ROX is honest. :lol:

rodocop
Posts: 43
Joined: Wed 16 Nov 2011, 11:29
Location: Saint-Petersburg, Russia

#14 Post by rodocop »

Very special thingie!

Visually thrilling, spectacular and 'universe-in-mind'ing one. WOW!

Post Reply