Bambus - A small and simple GTK Gui to change Wallpapers using feh,...

It is a old project, which I wrote a year ago.
Bambus - A small and simple GTK Gui to change Wallpapers using feh, Esetroot, hsetroot, habak or any other command tool.
Aur package: bambus
To restore a Wallpaper at a WM start-up (Openbox, Awesome,...) execute the command
bambus -restore
To restore a Wallpaper randomly execute
bambus -any
To restore Wallpapers in a special order execute
bambus -each
Screenshots:
Last edited by ying (2010-11-10 06:35:06)

Hey thx a lot for your posts.
@ApotheoZ: Hmm I don't know where I got them from(Take a look at wallbase.com). But I'll load it up for you.
Last edited by ying (2010-11-10 16:36:26)

Similar Messages

  • I have problem  in signing in I don't like read and accept terms I cannot access this I don't know about this read and accept terms this is poor, I just like android's simple option and simple singing in, but how to use apple I'd?

    I have problem  in signing in I don't like read and accept terms I cannot access this I don't know about this read and accept terms this is poor, I just like android's simple option and simple singing in, but how to use apple I'd?

    Your computer is called an iMac.
    Did you turn proxies on?  If so, you should turn them off.

  • Anybody who wants to create a  small and simple Script for me?

    Hi,
    I am kind of new to Mac and totally AppleScript illiterate, but maybe there is a kind soul amongst all of you that can create an "easy" script for me?
    Well, here it goes:
    Every time I boot up my iMac, two things happen, the first is that I programed the "System Preferences" window to open automatically and display the "Energy Saver" section on the "Sleep" sub-section, so far so good and the second thing is that no matter what I have tried to avoid it, the "Customize" window for a program named "Butler" opens also.
    Now for the request:
    I would like the "System Preference window which displays the Energy Saver section" to change from "Sleep" to "Options" and while being there(in options), to tick(select) AND UN-tick(Un-select) immediately after the "Automatically reduce the brightness of the display before display sleep" Option.
    After doing all of this, the window should be closed.
    Now, is it possible to create a Script that performs all of the above and besides closes the "Butler" window afterwards?
    I know I am asking too much, but I know too that maybe there is someone with a heart of gold and the sufficient knowledge to help me.
    Thanks a lot
    Enrique Diazruanova

    ... Every time I boot up my iMac, two things happen, the first is that I programed the "System Preferences" window to open automatically and display the "Energy Saver" section on the "Sleep" sub-section, so far so good and the second thing is that no matter what I have tried to avoid it, the "Customize" window for a program named "Butler" opens also ...
    From your initial post, it appears that you have the Butler application running and have used it to access one of the Energy Saver opptions already. I don't have that particular application or a laptop to test, but if you've gotten it to access one option it should be able to access another one.

  • This small and simple file doesn't compile .......please help

    Iam trying to complie this file but it gives error while compiling ....please help
    I wanted to generate this error message in my log file and wanted to see how the error message looks like ....that is why iam forcefully throwing en exception .....but the file is not compliling.
    HERE IS THE FILE .....
    package myemailutils;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import javax.activation.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.naming.*;
    * Class BeaSendMail
    * @author Shailesh Sharma
    * @version
    public class BeaSendMail
    public BeaSendMail() {}
         private String successMessage = "";
         public void sendMail(String msgSubject, String msgTxt, String currentEmailAddr, String targetEmailAddr, String targetCc, String targetBcc) throws Exception
         Message msg;
         try{
    // lookup mail session in JNDI
    InitialContext context = new InitialContext();
    Session session = (Session) context.lookup("BibleMailSession");
    // set message
    msg = new MimeMessage(session);
         try {
    // set message with to, subject, and message text
    msg.setFrom(new InternetAddress(currentEmailAddr));
    msg.setRecipients(Message.RecipientType.TO,
    InternetAddress.parse(targetEmailAddr, false));
         msg.setRecipients(Message.RecipientType.CC,
    InternetAddress.parse(targetCc, false));
    msg.setRecipients(Message.RecipientType.BCC,
    InternetAddress.parse(targetBcc, false));
    msg.setSubject(msgSubject);
    msg.setSentDate(new Date());
    msg.setText(msgTxt);
              throw new Exception();
         // send message
    Transport.send(msg);
    successMessage = "Message sucessfully sent.";
    session = null;
    } catch (Exception e) {
                        try {
                             // override mail session properties
                             Properties mailProps = new Properties();
                             mailProps.put("mail.transport.protocol", "smtp");
                             mailProps.put("mail.host", "smtprelay2.aici.com");
                             mailProps.put("mail.user", "Anthem Help Desk");
                             // mailProps.put("mail.from", "[email protected]");
                             mailProps.put("mail.debug", "true");
                             mailProps.put("mail.smtp.auth", "true");
                             // set message with to, subject, and message text
                             msg.setFrom(new InternetAddress(currentEmailAddr));
                             msg.setRecipients(Message.RecipientType.TO,
                                                      InternetAddress.parse(targetEmailAddr, false));
                             msg.setRecipients(Message.RecipientType.CC,
                                                      InternetAddress.parse(targetCc, false));
                             msg.setRecipients(Message.RecipientType.BCC,
                                                      InternetAddress.parse(targetBcc, false));
                             msg.setSubject(msgSubject);
                             msg.setSentDate(new Date());
                             msg.setText(msgTxt);
                             throw new Exception();
                             // send message
                             Transport.send(msg);
                             successMessage = "Message sucessfully sent.";
                             session = null;
                        } catch (Exception ex) {
    // successMessage = ex.getMessage();
    // Reporter.easyReport(ReportType.DEBUG, "Error while sending mail to " +
    System.out.println("Error while sending BeaSendMail weblogic mail to " +
    // System.getProperty(MWEProperties.SMTPServer1) + ": " + ex.getMessage());
    ex.getMessage());
         } catch (Exception exc) {
    // successMessage = "Problem Looking up... " + exc.getMessage();
    // Reporter.easyReport(ReportType.DEBUG, "Error while sending mail to " +
    System.out.println("Error while Looking up JNDI NAME in BeaSendMail mail " +
    // System.getProperty(MWEProperties.SMTPServer1) + ": " + ex.getMessage());
    exc.getMessage());
    }//end sendMail
    }

    yes i have changed the code ....but now it is giving some error saying Authentication Failed ...the exact error is :
    Error while sending BeaSendMail weblogic mail to Sending failed;
    nested exception is:
         javax.mail.AuthenticationFailedException
    Iam using somethin like ...
    } catch (Exception e) {
    InitialContext contextnext = new InitialContext();
    InitialContext contextnext = new InitialContext();
    Session sessionnext = (Session) contextnext.lookup("BibleMailSession");
    Properties mailProps = new Properties();
    mailProps.put("mail.host", "smtprelay2.aici.com");
    // i think the following gives an error with some AUTHENTICATION
    Session authSession = sessionnext.getInstance(mailProps);
    msgnext = new MimeMessage(authSession);
    // set message with to, subject, and message text and send it ...

  • Recommendations for a simple, fast GUI LAN chat application? [Solved]

    We now have 4 ArchLinux machines scattered throughout the house. (My wife is an Archer now!). I am looking for a simple fast GUI LAN chat application. I looked at "qchat" but it is a bit cumbersome and doesn't have the option of a small applet to the panel. Any recommendations appreciated...
    Larry
    Last edited by lagagnon (2010-02-13 21:27:00)

    jwwolf wrote:Found this in AUR
    griv
    I just tried it with a few machines and it works fine.
    Excellent choice! Nice, light and unobtrusive. Works well, thanks for the recommendation.

  • How do you change the size of display in Firefox, I get Hotmail too small and Flikr too big

    I get the font size too small on Hotmail when viewing through Firefox. The screen size and font size is too big when viewing Flickr through Firefox. I am sure it is a simple question of adjusting zoom and I have seen it change while I am online. I just can't work out what I did to change it.

    Use NoSquint: https://addons.mozilla.org/en-US/firefox/addon/nosquint/

  • Java Swing/AWT and FX is so old school! Give me HTML and CSS for GUI!

    Dear Java,
    I am a seasoned programmer and I feel it's time JAVA implements a GUI system where it uses HTML and CSS for the GUI. For the love of god just look at the interfaces you can make using HTML and CSS alone. I am a big fan of Java Swing and the recent GUI designer for FX is quite cool. But they are just not as simple as HTML and CSS. And JavaFX has some interesting requirements for the graphics.
    I know it is possible to use JavaFX and implement the WebView/WebDriver and make it load a HTML page, etc... but why go through all the trouble?
    Just imagine... if you make Java where it has powerful back-end to do what it does best and the HTML/CSS powered GUI on the front-end. It will make the lives of many developers much much easier.
    I am not sure whether a Swing designed GUI will be faster than a HTML designed GUI... but if you look at a traditional browser and how fast it renders HTML/CSS, I am sure if Java had a native Form where it uses HTML and CSS to render the GUI, Java will make the dreams of many programmers a reality.
    Make it happen!!!!

    Check this i solve problem just now using this
    https://wiki.archlinux.org/index.php/Ja … ow_Manager

  • I need a good portable battery backup for my iphone5.  Needs to be small and able to recharge the phone at least twice before it runs out of juice.  Any suggestions?

    I need a small portable battery charger for my iphone5.  It seems to eat the battery quickly and there are times when I am away from a outlet to plug into.  Like I said it needs to be small, and rugged, as it will be out in the boat or out in the woods while hunting

    Bought the same SRW2048 thinking it should be a good upgrade for the unmanaged 10/100 switch, but within the first two weeks, I need RMA. Then the new switch is starting to have similar problem. Some are trying to blame some network packets causing the switch to reboot. I have a pretty simple default configuration (plug it in, assign IP and plug in workstations!)
    Here's my laundry list:
    - Time is off, never come back to the right one and SNTP never really works. When the switch reboots, I get back to the 00/00/00 and it's a pain to the time right.
    - I see ports going online and offline and lots of them. I know there are nobody at the office, so it has got to be the switch.
    We do not have any complex network set up, just one SRW2048 to a ~30 node s network. One one side is the clients and on the upside is a pix firewall.
    It's so hard to setup each time the switch reboots, the whole office scramble and lost work.
    If you guys have an answer to why ports go offline/online, etc... or why the switch does a cold start, please share.
    (Mod Note: Edited post for non technical content. Thanks!)Message Edited by JOHNDOE_06 on 08-15-2006 04:30 PM

  • [Tut] Smooth KDE4 + FF3 (and other GTK apps) integration (Oxygen!)

    This is a very simple tutorial, but this problem stumped me for a little (finding gtk-kde4-oxygen-theme), so I thought it might help others. Most normal KDE4 +GTK guides tell you to use  gtk-qt-engine by itself, which some stubborn apps (Firefox especially) don't play nice with. Most Firefox guides tell you to install QtCurve, which is nice, but not nearly as nice as Oxygen IMO, especially since even KDE apps will change to QtCurve.
    I used KDEmod, but normal KDE should work too.
    1.) Get the KFirefox theme here: http://ramonantonio.net/kde-firefox/ This will change the main look of Firefox. to integrate well.
    2.) Get gtk-qt-engine, and install. This will let you set a KDE style for GTK apps. Unfortunately, "Use my KDE style in GTK applications" does not work in some stubborn apps, like Firefox, and you're normally forced to "Use another style" that's not as nice as your main KDE4.
    3.) Get gtk-kde4-oxygen-theme from the AUR, and install. This is one of those "other styles", but it's very Oxygen-like.
    4.) Go to the KDE System Settings, Appearance, and GTK Styles and Fonts. Select "Use another style", and then 'kde4-oxygen'.
    Done! You may need to restart Firefox and/or KDE. Enjoy =]

    brainsqueezer wrote:
    MillTek wrote:I tried and it changed he size of the FFox 'personal toolbar' to half the screen in height.  I refer to the toolbar where you can drag'n'drop links and establish folders of links etc.  Any ideas???
    Hello I'm the creator of the theme. Could you provide more information and test latest version?
    Sure.  I am using Minefield 3.0 and I just loaded your theme and it seems to work fine. Looks like you got whatever was causing the problem to work properly.

  • Difference between connection pooling and simple connection

    Anybody please tell me what is the Difference between connection pooling and simple connection and also where we define connection pooling and how.
    Thanks
    Please reply soon
    amitindia

    Creating and closing connection to the database is a relatively slow process. Equally connections use database resources so you can't just open as many as you want.
    A connection pool maintains a number of open connections throughout the lifetime of the application. Instead of opening and closing the connections your application just "borrows" them from the pool when they're needed.
    If the pool runs out of connections it will usually create new ones as needed until you reach some predefined upper limit.
    A good connection pool will also manage connections which have failed for any reason, and report code which fails to return connections to the pool (ie connection leaks).
    The number of connections created at startup is referred to as the "low water mark" and the maximum number that the pool will allow to be opened at any given time is the "high water mark". If no connections are available client code will generally block until one is released.
    If by "defined" you mean where can you get a working implementation then your database or application server vendor is likely to provide one. Also the Apache Jakarta Commons includes [url http://jakarta.apache.org/commons/dbcp/]an implementation which you can use with any JDBC driver.
    Dave.

  • I played the a video game that has a rim tats black that goes around the screen making it smaller and normally when i quit the game the screen goes back to normal but now when i quit the game the ring of black stays plz help it makes my screen small

    Ok so i played the sims a game that make your screens smaller by adding to black bares at the side that kind of zoom it in but now no matter what the black bars stay and it makes mi screen smaller and stuff doesnt fit on it please help i need the whole screen it is like when a movie doesnt fit the tv screen there is like black on the side making it so that it fits please help

    go to System Preferences > Displays and select the highest resolution (1280x820) or something like that. the screen should turn blue for a sec then go back to normal resolution.

  • I am using a Mac and when I save my files as a jpeg, the files become much smaller, and consequently darker and blurrier.  What can I do to fix this?

    I am using a Mac and when I save my files as a jpeg, the files become much smaller, and consequently darker and blurrier.  What can I do to fix this?  I have tried to figure out how to chat with someone at Adobe, but they certainly don't make it easy to do.  At the moment, this program is useless to me.  Very depressing....

    Hello,
    I would like to inform you that not all the browsers and online PDF readers support copying text from a PDF. If you have opened the PDF online, please download PDF file to your computer and then open the file in Adobe Reader.
    Please share a screenshot if the issue still persists.
    Regards,
    Nakul

  • In my Macbook Pro finder folder under All Images, there are duplicate files, but one is small and the other is full size. I wanted to clean up the files, but don't know why I have two of everything. Any Ideas?

    In my Macbook Pro, the Finder folder has duplicate images in the 'all images' file. One image is small and the other is full size. First question is why do I have two of every image? Why is one small and the other large. Do I need two of everything? If not, which do I delete?
    thanks, Jean

    Hello fane,
    Re: duplicate images in finder.
    Nearly all images are JPG with a few GIF and PNG sprinkled in.
    I opened the inspector so I do get info when opening each image, but it a slow process.
    It seems that one image is around 70k while its twin can be up to 4Mb which is what comes unedited from my camera. Sometimes there will be 3 or 4 identical images in finder, but when I open iPhoto to see what ‘s really in the file, I find only one image, and it’s full sized.
    Are all these extra images, even if they are aliases, taking up space on my drive? And should I delete them? The info bar says I have over 10,000 images, which is rather a lot  for what I do.
    I am unable to add the file size on the view menu as it is grayed out. Don’t know why it’s gray, but having that info on the screen would save a lot of time and fiddling with each image.
    I am trying to resize selected pix so I can upload them to e-bay, which requires less than 70k. I have looked at resizing programs but most are for PC platform and not Mac, so I am trying to resize in the finder window under tools. Tedious at best. Any suggestions will be appreciated
    Thanks for your help,
    jeanfromwilsonville

  • Welcome to the Technologies for Small and Medium Businesses Discussion

    Welcome to the Cisco Networking Professionals Connection Small and Medium Business Forum. This conversation will provide you the opportunity to discuss Small and Medium Business technology issues. We encourage everyone to share their knowledge and start conversations about technology challenges you might be facing while running a Small to Medium Business.
    Remember, just like in the workplace, be courteous to your fellow forum participants. Please refrain from using disparaging or obscene language or posting advertisements.
    We encourage you to tell your fellow networking professionals about the site.
    Regards,
    Dan Bruhn
    NetPro Moderator

    So how is this for a specific answer...it depends... :-). Your questions begs a bit more information, most notably, what are your networking needs for this office both now and in the next 5 years? Wireless may be just fine for your needs but things like either bandwidth heavy applications, applications that need a predictable quality of service...like voice or video...these can all make a big difference. The other thing to consider is how you will innerconnect your networking peripherals like printers. These devices will probably not natively support wireless and would require a compatible piece of hardware...not expensive but may not be trivial.
    My best advice is that you should engage a Cisco partner with wireless expertise. A site survey will be critical to this decision, especially since I don't know what the composition of the construction is...that same partner can provide you with much better advice on your specific situation given a good physicaly review of the facility. Let me know if you need assistance finding a partner.
    Robb

  • I have a Windows 8.1 machine.  I used a projecteor a while back in a Power Point presentation.  Now my menus for Adobe are very small and hard to read.  The print command is so compressed that I cannot read or use it.  How do I fix this problem?

    I used a projecteor a while back in a Power Point presentation.  Now my menus for Adobe are very small and hard to read.  The print command is so compressed that I cannot read or use it.  How do I fix this problem?

    There is no application called "Adobe" - you are either working with Adobe Acrobat or the free Adobe Reader. Open up the preferences for the application (Edit>Preferences), then go to the "General" category and modify the settings for "Scale for screen resolution". You will have to restart the application after you do that. Does that fix your problems?

Maybe you are looking for

  • JDBC receiver adapter: No 'action' attribute found in XML document

    Hi this is my target structure getting generated at the Receiver JDBC adapter I have checked the XML doc, still unable to figure out why in the RWB its showing the following error: "Message processing failed. Cause: com.sap.aii.af.ra.ms.api.Recoverab

  • JPA Toplink, class cast exception when casting class A to class A

    I get a really strange exception from Toplink JPA. I used netbeans to create a persistence.xml and I generated a class (entity) from the table in a DB. Everything works fine, when I create a select query, I get the list of objects and the list is cor

  • How to define user roles

    I am ready to deploy the form, but I want to define user roles.  How do I do that?

  • Possible Work-around: Flash Player 11.5 stops working on Firefox 17

    On Windows Vista SP2, Firefox 17.01, and Flash Player 11.3 through 11.5.502.135, I have experienced repeated and consistent error messages saying that Flash Player has stopped working, and with r502.110 Firefox crashed after the first of these messag

  • Look for a tool to view BLOB value

    Hi all, Although I know that I can write a simple java program to view and insert values to BLOB field, I hope there could be a tool by which I can handle BLOB field easily and quickly. Can anybody recommend a tool or some SQL statement? Thank you in