What's a good lightweight file manager for fluxbox?

I just installed arch and it's flippin awesome. I installed fluxbox because I prefer a light window manager with lots of functionality. When I used fluxbox with ubuntu I used thunar. But this time around since I'm using arch I want to use a file manager less dependent on less libraries and other share resources. So whats a good functional and maintained file manager that would be good for fluxbox?

skottish wrote:
frp wrote:
Since I didn't see it here mentioned, why not try Tux Commander? it only depends on gtk2.
I tried both thunar and pcmanfm, uninstalled them and stick with tuxcmd. The only little problem you might come into, is to manually add the buttons to mount cds and usbs (pmount helps here), unless you put them on fstab and they automatically appear there.
Well, just give it a try
$ pacman -S tuxcmd
note: if you ever tried total commander on windows, you'll fit in this one like a glove
I just checked this out and it's pretty nice. The only thing is that it does everything by file extension and not by mime type, which is counter-intuitive for a Linux desktop IMO.
Altho you can put name+extension as 'name'(so you can see the file 'as one'), yes, you'll have to manually had the programs you want to open each file type/extension.
Thanks for spotting that out

Similar Messages

  • What is a good vob file converter for mac?

    I want to use some old family videos and stills in a new iMovie.  How do I convert .BUP, .IFO, .VOB files to use in iMovie?

    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle. For that you need mpegStreamclip:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://store.apple.com/us/product/D2187Z/A/quicktime-mpeg-2-playback-component-f or-mac-os-x
    (unless you are running Lion in which case see below))
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.
    And from the TOU of these forums:
    Keep within the Law
    No material may be submitted that is intended to promote or commit an illegal act.
    Do not submit software or descriptions of processes that break or otherwise ‘work around’ digital rights management software or hardware. This includes conversations about ‘ripping’ DVDs or working around FairPlay software used on the iTunes Store.
    If you are running Lion or later:
    From the MPEG Streamclip homepage
    The installer of the MPEG-2 Playback Component may refuse to install the component in Lion. Apple states the component is unnecessary in Lion onwards, however MPEG Streamclip still needs it. See this:
    http://support.apple.com/kb/HT3381
    To install the component in Lion, please download MPEG Streamclip 1.9.3b7 beta above; inside the disk image you will find the Utility MPEG2 Component Lion: use it to install the MPEG-2 Playback Component in Lion. The original installer's disk image (QuickTimeMPEG2.dmg) is required.
    The current versions of MPEG Streamclip cannot take advantage of the built-in MPEG-2 functionality of Lion. For MPEG-2 files you still need to install the QuickTime MPEG-2 Playback Component, which is not preinstalled in Lion. (The same applies to Mountain Lion even though that has it preinstalled.) You don't have to install QuickTime 7.

  • What's a good way to manage custom schema for DS  5.1?

    What's a good way to manage custom schema?
    Custom Schema for Object Class and Attributes
    The reason I ask this is because there might be a need in the future where I need to export those custome schema into different branded directory server. I just want to make this as painless as possible.
    Right now, I thought of 2 options
    1) Create my own LDIF file with my custom attributes and object classes, so if one day I need to export to another directory server, I can just copy that custom created LDIF file over. (Will this work?)
    2) Create a JAVA application using JNDI. What this Java App. will do is read through a XML file and create those object classes and attributes on-the-fly. (of course, the XML structure will be predefined by me, so that my Java App. will be able to parse through it correctly. Will this work?)
    Anymore suggestion? I would want to hear more advices and suggestions.
    Also, I assume that will work even with replication. All I need to update is the master server, and the slaves will replicate automatically.
    Thank you very much! :)

    Demo: I'm using the nul character to represent the end of the word, so that the data structure can represent that "hell" and "hello" are both in the vocabulary:
    import java.util.*;
    class Node {
        private SortedMap<Character, Node> children = new TreeMap<Character, Node>();
        //0 <= index <= word.length()
        private void add(String word, int index) {
            if (index == word.length()) {
                children.put(Character.valueOf('\u0000'), null);
            } else {
                char ch = word.charAt(index);
                Node child = children.get(ch);
                if (child == null) {
                    children.put(ch, child = new Node());
                child.add(word, index+1);
        public void add(String word) {
            if (word == null || word.length()==0)
                throw new IllegalArgumentException();
            add(word, 0);
        public String toString() {
            return children.toString();
    public class Example {
        public static void main(String[] args) throws Exception {
            Node root = new Node();
            root.add("hello");
            root.add("how");
            root.add("who");
            root.add("hell");
            System.out.println(root.toString());
    }

  • Good file-manager for OpenBox? (with icons)

    I tried rox with the magickthumbnails and videothumbmails, but havent got it working yet.
    I am now trying thunar, but it has dull generic icons.  Everything looks like a piece of paper.  I'm sure it'd look good if I was running XFCE.
    Is there a standard/common file-manager for use with openbox?  Preferably one with icons for different file-types.

    DonVla wrote:
    hi,
    i also recommend rox. fast and the drag'n'drop functionality is brilliant.
    the default layout is truely ugly. but you can change everything.
    i've changed the rox icons by hand:
    in my ~/.gtkrc-2.0.mine:
    # rox-filer toolbar icons
    pixmap_path "~/.icons/panel_icons/icons_2"
    style "normal" {
    stock["gtk-close"] = {{"close.png"}}
    # stock["gtk-close"] = {{"exit.png"}}
    stock["gtk-go-up"] = {{"1uparrow.png"}}
    stock["gtk-home"] = {{"gohome.png"}}
    stock["gtk-refresh"] = {{"redo.png"}}
    stock["gtk-zoom-in"] = {{"add.png"}}
    stock["gtk-zoom-fit"] = {{"stop.png"}}
    stock["gtk-jump-to"] = {{"bookmarks.png"}}
    # stock["gtk-sort-ascending"] = {{"bottom.png"}}
    # stock["gtk-help"] = {{"help-icon.png"}}
    stock["rox-show-hidden"] = {{"filter.png"}}
    stock["rox-show-details"] = {{"view_tree.png"}}
    # stock["rox-select"] = {{"select-icon.png"}}
    widget "*" style "normal"
    it's quite self explanatory .
    vlad
    ps:
    and that's what it looks like:
    http://img206.imageshack.us/img206/2949 … 24aak4.png
    That's a pretty cool setup u got there. Is that conky in the top centre? If so, mind sharing your .conkyrc.
    What Icon theme are u using? is that panel-thingy AWN?
    Could u also elaborate this line < pixmap_path "~/.icons/panel_icons/icons_2" > ?

  • What are some good visual effects programmes for the Mac?

    I have been editing with Final Cut Express since 05 and I want to be able to do fancy visual effects I cannot do with Final Cut Express so I put it to you; what are some good visual effects programmes for the Mac? I know there is Adobe After Effects but I am wondering if there are any others, including from Apple.

    Russ H wrote:
    Or does it? Because by purchasing Motion, you also get the Pro Res codecs and Animation. Will FCE be able to work with them if they're in your QT library? I think so but am not positive. I'd check with the FCE gurus in that discussion forum.
    So I half answered my own question. FCE will respect the alpha channel in a PR 4444 file. But from the limited testing I was able to to, there doesn't seem to be a way to export it ( or other flavors of PR) as a PR sequence. It renders as AIC, which is fine. FWIW, it can always be exported as Pro Res via QT Conversion, but why bother?
    However,  I now have to say – despite what I said in my first post – that I'm not 100% percent certain that the all the codecs will be available by buying Motion. I'm like 95% sure, the more I think about it. But I have too much NLE and graphics "stuff" on my systems to test it conclusively.
    Russ

  • What is the safest duplicate file cleaner for macbook pro?

    What is the safest duplicate file cleaner for macbook pro?

    Welcome to the Apple Support Communities
    First, use speech recognition. It's installed on OS X, so you don't have to install a third-party app. See > http://support.apple.com/kb/PH11258?viewlocale=en_US

  • What is a good external battery pack for a 13" retina display?

    what is a good external battery pack  for my 13" retina display(macbook)

    Have a look here for the sizes and prices.
    It is however, much better to get a USB external drive that comes with it's own power adapter to avoid issues when or if your USB port can't supply enough power to your external drive.
    That issue however does happen rarely but it does happen.  Especially when connecting other devices to your other USB port while your external hard drive is connected to your other usb port.

  • What is a good mobile TV app for an I pad 2?

    What is a good mobile TV app for an I pad 2?

    Many networks have IOS apps (i.e. ABC). Search the app store

  • Need file manager for dev alpha b

    can some one give me link to best file manager for my dev alpha b device,as i didnt got it installed from default os

    Try this:
    Files & Folders, the unified file & cloud manager for PlayBook and BB10 with SkyDrive, SugarSync, Box, Dropbox, Google Drive, Google Docs. Free 3-day trial! - Jon Webb - Innovatology - Utrecht, Netherlands

  • FILE MANAGER FOR UNIX

    I am trying to write a file manager for a unix machine. Does anyone know how to 'grab' the existing file structure, l just want to copy the functionality of existing Unix file managers - then add my own graphical representation of files and directories. Any reply would be greatly appreciated.

    start off by looking at java.io.File All the methods you will need are there. listRoots(), listFiles(), isDirectory() etc.. Hint: the best plan is to use recusion to descend into the directory structure.

  • What's a good solid-state drive for my Pro 1.1, c.250-500gb?

    What's a good solid-state drive for my Pro 1.1, c.250-500gb?

    I only in the last months learned about the XP941 as an option, and for all Mac Pro models.
    And that was in the middle of a long thread that led me to look further.
         SATA Express meets the '09 MacPro - Bootable NGFF PCIE SSD  (  1 2 3 4 5 6 ... Last Page)
    So the adapter is cheap $24-52 versus say Sonnet Tempo Pro SSD ($295) which is not even bootable in 2006/7.
    No need for $15 Icy Dock. Does not take up drive bay or any of the 6 SATA II ports.
    Yes up until last fall/winter the 840 EVO was fine, I have half a dozen ranging from 128GB up to 500GB and they work fine.
    In the past I ended up using the Sonnet card just for data (graphic library for Adobe and iPhoto) and not the system.
    Options are always good to have.

  • What is a good banking finance program for personal accounting?

    What is a good banking finance program for personal accounting?

    One that I use and like is iBank. http://www.iggsoftware.com/ibank/

  • Best File Manager For Really Large Folders

    I have a folder with 397GB of music. None of the music players like it much. Rhythmbox and Banshee either wont run or are so slow they're not useable.
    I have been using Xmms to play, which is great. Nautilus is way to slow and MC doesn't quite have the features I want.
    What file manager would you recommend for really big folders?

    I've used about everything there is. Amarok was nice for a while, but there were a ton of little annoyances that added up and eventually I was too frustrated to keep using it. I have settled on XMMS2 + gxmms2 + xmms2-scrobbler. It's been good to me.
    Ideally, foobar2000 would be ported to Linux. There is nothing like it.
    I also prefer PCManFM as a file manager. Dolphin and Thunar are OK. but PCManFM is very fast...it's good at dealing with my giant directories with thousands of files in it.
    Also, for all that music, what file system do you have it on? I used to keep all my music on an NTFS drive for compatibility but it kept screwing itself up and it was slow, but recently I switched to ReiserFS and I've seen amazing improvements.
    Last edited by sa (2009-01-11 19:26:58)

  • Thunar as default file manager for firefox

    i am using xubuntu 9.04..
    I'm using Openbox as windows manager[pure openbox session], it's working great, but i have a problem ...
    open containing folder doestnt recognize Thunar as my only file manager, it keeps asking to open with...
    how can fix this problem?
    thank you in advance

    I am having a similiar issue... when I hit open folder it pops up sometype of file search program
    EDIT: Perhaps this works for you... for some reason it doesn't for me...
    http://rubylution.ping.de/articles/2007 … nder-linux
    Basically navigate to about:config and create the following three:
    network.protocol-handler.expose.file = true (Boolean)
    network.protocol-handler.external.file = true (Boolean)
    network.protocol-handler.app.file = /usr/bin/thunar (String)
    The program that runs instead of thunar has a title "Find Files" -- I did a quick search of installed programs related to "search" and I only have catfish installed and I know that is not the program... How would I go about determing what this application is or what it is a part of? Is there a way I can click on the program and it output the PID so I can then match it up with the entry in top/htop?
    SOLVED : figured it out... it was pcmanfm search program... for some reason it was not opening the folder but instead opening its search program... removing pcmanfm from my system fixed it and now folders are properly opening with thunar
    Last edited by ugkbunb (2009-09-18 20:23:35)

  • What's a good codec to install for old projects?

    I have some projects cut on CS4.  Tried opening with Premiere CS and I'm getting error in regards to the codec.  I'm assuming this is in regards the .avi files.  The files where originally captured with the Canon mkII.  I used Neo Scene to covert them to .avi files.  It's just this old projects from a couple years ago that  have trouble.  I cut a video this past year with new footage with no problems.  At one time in the past, I installed Main Concepts codec to solve the problem. 

    AVI is a wrapper, what is inside YOUR wrapper - Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    https://forums.adobe.com/thread/1070933 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

Maybe you are looking for

  • Boot Camp, Vista Ultimate x64 SP1, 2009 Mac Pro Quad 2.93, ATI 4870 HD

    Hello All, I’ve run into a problem installing Boot Camp with Vista Ultimate x64 SP1 on my early 2009 Mac Pro Quad 2.93 with Apple’s ATI Radeon 4870 HD (the one with one DVI and one mini-display). I followed the instructions from the Boot Camp Install

  • FTP Adapter Sender: Dynamic configuration of directory

    Hello all, I need to read files from an FTP server. The source directory contains the current date and hence changes everyday. That means: Today it's          /home/user/out/20100519/ready/ Tomorrow it's gonna be     /home/user/out/20100520/ready/ an

  • SQL 2005 Setup on Win7 Ultimate [No SQL Services after installation]

    Win 7 Ultimate (64bit) 4GB RAM New installation of Win 7 Ultimate Re-installation of SQL: Originally SQLExpress which didn't work out so I went to SQL2005 Standard Edition SP1 & updated to SQL2005 SP4.  I installed Visual Studio 2005 during the SP1 i

  • User exits For Vl01n

    i want to block the delivery aftercycle closing in VL01N for shipping point 1103 selection date not more that 3 days after closing. For Order Type Is 2873 1901 2902 A popup Message Will Apper If Delivery Is After  Day's . So How Can I Solve This Issu

  • Updating from os x 10.5.8 to 10.6.8

    While trying to synch my new I-phone 5 to my mac air with 0s x 10.5.8 I was prompted to update to I-tunes 10.7.  After that download I was prompted to update to at least os x version 10.6.8 or later.  I downloaded 10.6.8 but wasn't able  to install w