Electricsheep and mate-screensaver

Does anyone know how to make electricsheep work with mate-screensaver? I have both packages installed. Although mate-screensaver lists electricsheep as an option, it only shows a black screen for it--both in preview mode as well as when actually (supposedly) running electricsheep. If I type "electricsheep" or "electricsheep-saver" (the command in /usr/share/applications/screensavers/electricsheep.desktop) at the terminal, electricsheep works.
BTW, I know that electricsheep plays nice with xscreensaver, but since the Xorg update xscreensaver is crashing my display manager (lightDM).
Last edited by bdantas (2014-07-31 22:29:27)

It's quite odd: mate-screensaver-hacks makes all the other xscreensaver options work in mate-screensaver except for electricsheep. Go figure--the only one I want is the only one that doesn't work
I'll post the question on the MATE forum and see if they can shed some light.
Last edited by bdantas (2014-07-31 23:33:00)

Similar Messages

  • Date of adv against po or performa invo. or dispatch doc and mat receipt

    Is it possible to generate a report so as to track down all the material receipt made against particular advances made for different line items of p.o
    or to know whether goods have been received wrt advance payments made within specific time and if not then how much overdue it is .
    what would be the common field  between advance payments and mat receipt doc at plants so as to make such report
    Edited by: ca sanjeev mehndiratta on Oct 28, 2009 8:27 AM

    over

  • Can i give multiple versions in purchase inforecord for same vendor and mat

    can i give multiple versions in purchase info record for same vendor and mat code..is is possible??? plz help me
    thanks and regards
    Ramesh Reddy(VALLUR)

    HI,
    No .where you are getting version in purchasing info record ? why you want version ? suppose we put version then where you used that version ?
    to get clear picture regarding purchasing info record
    check following link
    [http://help.sap.com/saphelp_46c/helpdata/en/75/ee102f55c811d189900000e8322d00/content.htm]
    Regards
    Kailas Ugale

  • PI Documnet and Mat. Doc

    Dear All
    When we do physical inventory count one PI document is created say # 10000563, and when we post it, it creates a material document with mvt type 701 & 702.
    the question is how i can know which Phyical inventory document created what Material document or vice versa.
    i could not find any field in Mat. Docu which have PID number...
    thanks
    Zeeshan

    Dear,
    I am not sure, but Please check S_ALR_87011979 report.
    In MI24 you can view both PI document number and Mat. doc. number by selecting the PI doc number and click on details icon.
    Else you can achieve it by creating query using the table.
    Regards,
    Syed Hussain.

  • Purchase requisition aginst purchase order and mat.dc.no.

    Hi experts,
    i want to develop a  report PR_NO  ITEM_NO  QUANT PO_NO  ITEM  QANTY MAT.DOC.NO
    I USED EBAN EKPO AND MSEG TABLE
    but there is no relation between EBAN AND EKPO.(also EKBE )
    how should i fetch the data PRNO AGAINST PO.
    In my comany there is no functional consultant.
    THANKS
    AJAY.

    The relation is
    EKPO-BANFN = EBAN-BANFN
    EKPO-EBELN = EKBE-EBELN
    EKPO-EBELP = EKBE-EBELP
    EKBE-BELNR is your material doc
    EBAN-BANFN-Purchase Requisition Number
    EBAN-BNFPO-Item Number of Purchase Requisition
    EKPO-EBELN-Purchasing Document Number
    EKPO-EBELP-Item Num
    EKPO-MENGE - PO qty
    EKBE-MENGE - Posted quantity in Mat.doc

  • Setting in BEx formula for calculation of YTD and MAT

    Hi,
    I have to implement 2 formulae in BEx.
    As I am trying to avoide ABAP coding, can anyone please suggest SETTINGS in BEx FORMULA to achieve these below mentioned 2 formulae -
    1 ) Calculate YTD - Average of the sum of the reported quarter values from the start of the year until and including the selected quarter. But, if we enter Quarter 3 and there is no data for quarter 2 then the average should be equal to sum of data for Q1 and Q2 divided by 2 instead of 3 even though user entered Q3.
    2) Calculate MAT - Average of the sum of the reported quarter values for the last 4 quarters. We need to check last 4 quarters. If data is present only for 3 quarters in the last four quarters then the MAT will be data for 3 quarters divided by 3.
    Please suggest BEx formulae settings, if any for the above calculations.
    Thanks a lot.
    Regards,
    Prerna

    Hi
    I am not sure requirement related YTD is possible without customer exits variable
    But regarding your 2nd requirement
    Calculate MAT
    Create four restricted key figures by using offset (0, -1, -2, -3) and restriction characteristic will be quarter.
    Create a calculated key figure "Count of Quaerter". This will consist of "Number of rows" key figure with exception aggr on the Quarter characteristic and aggr will be "Count for all not eq to 0".
    Create a calculated key figure which will be sum of four restricted key figures divided by Count of Quarter.
    Kindly let me know incase further details required
    Best Regards
    Rohit

  • .mlv and .mat files

    Hi,
    I am running a code in a Mathscript node and saving some variables at the end of the execution in a file (.mlv).
    I understand that these file format is exclusive to Mathscript, but is there someway I can convert this to a .mat file so that it can be stored in a database and used with MATLAB later whenever needed?
    Any help or suggestions are appreciated.
    Thanks,
    Chintan

    Hi Grant,
    Thanks for your reply.
    I have tried the data analysis offline. While saving it in .mlv it saves all the variables perfectly. I tried using csvwrite and dlmwrite as well, but they just write random number instead of the variables I specify in the syntax.
    Here is the code I am using. The saving part at the bottom is what is bugging me. Everything else works fine. Please suggest another way to do this.
    Thanks,
    Chintan
    data=-load(dataf);           %load decay data
    head=load(headf);             %load header
    laser = load(laserf);        
    data_length=length(data);
    mode=head(1);           %Single=0, Multi=1, Filter=2
    tres=head(2)*10^9;      %resolution in ns
    switch mode
        case 0
            lamb_num=1;
            lambdas=head(12); %lambda summary
            lambda_vec=head(13+lamb_num:end);   %vector with wavelengths
            dec_num=head(10);
            rep_num=head(11);
            flag=0;
        case 1
            Wini=head(9);           %first wavelength (nm)
            Wend=head(10);           %final wavelength (nm)
            Wstp=head(8) ;          %steps (nm)
            lambdas=[Wini Wstp Wend];       %lambda summary
            lambda_vec= head(14:end-1);        %vector with wavelengths
            lamb_num=head(11)/head(12);        %number of wavelengths measured
            dec_num=head(11);
            Wini=head(9);           %first wavelength (nm)
            Wend=head(10);           %final wavelength (nm)
            Wstp=head(8) ;          %steps (nm)
            rep_num=head(12);
            gain = head(7);
            flag=0;
        case 2
            dec_num=head(9);
            rep_num=head(7);
            filter_wheel_pos=head(8);
            center_wavelenghts=head(13:end);
            flag=1;
    end
    lim=[30/tres 100/tres];
    trspec=data(lim(1):lim(2),;                                       %truncate data
    laser=laser(lim(1):lim(2),;
    trspec=trspec-ones(lim(2)-lim(1)+1,1)*mean(trspec(1:2/tres,);     %detrend (substract mean of first 2 ns)
    time_vec=[0:lim(2)-lim(1)]*tres;
    stspec=trapz(trspec);
    if flag==0
        save('Processed','mode','tres','dec_num','rep_num','lambda_vec','lambdas','trspec','stspec','time_vec','gain','laser');
    end
    if flag == 1
        save('Processed','mode','tres','dec_num','rep_num','trspec','stspec','time_vec','filter_wheel_pos','center_wavelenghts','fwhm');
    end

  • Mavericks and iPhoto Screensaver

    We upgraded to Mavericks- finally- and have quite a large iPhoto library. We enjoy using some photos as desktop and screensaver images. I was successfully able to get the desktop image  to work, but have had no luck with the screensaver. When I open System Preferences and go to Screensaver It points me to the hard drive rather than iPhoto and won't let me change it. Can you give me some guidance on how to proceed? The "whirling circle of death" just whirls and whirls! Thanks for any advice! It may be totally operator error here!
    Thanks!

    Hi Eric,
    When I go to the Screensaver option, I see some choices of options. I'm pasting the screenshot below. When I try to choose a photo option- like classic or ken Burns, it just whirls and whirls. Eventually the screen turns black and says it's loading photos- but that was for 10 hours last night! Am I looking in the right place for the source? 
    Thanks for your help!

  • Creative Cloud causing loss of Window Focus and preventing screensaver from running?

    I am running Windows 8.1, and have been very annoyed lately with an intermittent loss of window focus. Any window I am working in would quickly lose focus and then regain it.  Frequently I would be entering data into a field, and, while typing, the loss and recapture of focus would cause me to type over/replace everything I had just typed.  Also, my screensaver would not run.  Screensaver preview would work, but the screensaver never ran on its own.
    After a few hours of Internet searching, and by using some Windows tools, I discovered a plethora of system errors related to CoreSync.exe.  This executable is part of Adobe Creative Cloud.  I uninstalled Creative Cloud, and now the problems have vanished.  Are there any known workarounds for this?  I do not want Creative Cloud installed if I have to put up with these issues.

    This is an open forum with a mix of program users and Adobe staff, not Adobe support... you need Adobe support
    Adobe contact information - http://helpx.adobe.com/contact.html may help
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • IPhoto '11 and OSX screensaver

    On my machine anyway, iPhoto '11 breaks the iPhoto slideshow option in OS X's screensaver. The iPhoto albums no longer show up as an option in the scrolling list to select a screensaver.
    Anyone know of any workarounds?

    Make sure iPhoto is fully up to date (version 9.1.3), Load your iPhoto library backup and convert your library again
    Or provide a lot more information than "my library is a mess" - maybe there is some assistance that someone can give you if they know more
    LN

  • Desktop background rotation and FUS/screensaver

    I have a folder of pictures, ~/Pictures/Backgrounds, which I've added to the Desktop Background list and set to rotate pictures from this folder. But once the session is locked, via either Switch User or the screensaver, my background is set to the default background for Leopard and I have to reset the Desktop Background preferences.

    Try deleting the file ~/Library/Preferences/com.apple.Desktop.plist. Then go back to System Preferences and set your Desktop picture preferences again. See if the problem then persists.

  • Photos and the Screensaver

    Hopeing someone with an AppleTV infront of them can answer this simple question regarding the screensaver options.
    Specifically, is there a screensaver that allows me to display one photo at a time from my sync'ed library, full screen, minimal cropping, crossfading between photos and an optional Ken Burns effect? Mac OS has such a screensaver. Does the AppleTV? I understand the AppleTV may offer a multi-photo mosaic or tiled screen saver, but I'm looking for full screen, one at a time as mentioned above. Thanks!

    Settings/screensaver/slideshow and select the album or photos you want to be displayed.
    You can toggle transitions and ken burns effect in photos/settings

  • Xset and white screensaver

    Hi, ARCH-ers!
    I've got a strange problem here. Recently I had installed ARCH on my new laptop and I've noticed that screensaver is... white... I've glanced at xset options but found nothing about screensaver AND changing its color.
    What do you think is wrong in here?
    --- Logs:
    [winged@locked ~]$ xset q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000000
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 660 repeat rate: 25
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 2/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 0 cycle: 600
    Colors:
    default colormap: 0x20 BlackPixel: 0x0 WhitePixel: 0xffffff
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/OTF/,built-ins
    DPMS (Energy Star):
    Standby: 600 Suspend: 600 Off: 600
    DPMS is Enabled
    Monitor is On
    PS Don't know why, but I don't have anything about my screen in /etc/X11/xorg.conf.d/ . Is it because it is a laptop, not a PC?
    Last edited by Winged4Ever (2014-01-31 14:22:41)

    Do you perhaps have xscreensaver installed?
    If so check: https://wiki.archlinux.org/index.php/Di … leshooting
    As xset DPMS settings do not work with xscreensaver.
    What if you turned off blanking?
    xset s off
    I myself am still quite new here, so I'm not sure if my suggestions are helping, but at least I'm trying
    Last edited by SimbaClaws (2014-02-06 12:40:24)

  • 1200p and above screensaver

    So I got this mac pro with Retina 2880x1800 and made some changes so it actually run it at that.
    I thought, hmm sweet, let me make some of my own S/S. Lets try to downsample a 4k video into a S/S in quartz?
    I did my thing with final cut pro to make it 2880x1800, quartz do its thing to turn it into a screen saver (maybe I have to do extra steps here?)
    Save and nothing... Natta.
    Ok? Did I screw something up? The 1800 vid works?
    So, maybe its this workaround on the 15 inch mbp and 1800 is really not its thing, scale it to 1920 x 1200 (IE scaled mode and not work around to 1800). Run final cut and turn source into 1200. quartz.
    Nothing, quartz preview won't go to 1080, at best 720p.
    Well ok, moving on, maybe my final cut conversion is broken, let me find a 1080 p video. I found some nice eve online things that looks like a nice S/S (its their promotional stuff, I presumed to be okay for personal use) https://www.youtube.com/watch?v=zF5NnsuQAoc
    Downloaded it, import it into quartz and same thing, 720p preview and then when it come time to set the thing, the S/S is just black.
    Ok fine, something is up. Try the 720p download instead of 1080p, and bam it worked flawlessly...
    I tried google mac max screen saver size or max screen saver resolution, gottten nothing offcial (there are people saying that S/S are limited to 720p, or a certain size so you can have like non 60fps video or like simple videos like animated video with solid colours) so I presume it isn't a system limitation or if there is one it isn't public or well documented (or my cursory 10 second google is bad).
    Anyone know what did I break? I would want at least 1080 or 1200 custom screensaver if possible, nvm the 1800 ones...

    Hi Eric,
    When I go to the Screensaver option, I see some choices of options. I'm pasting the screenshot below. When I try to choose a photo option- like classic or ken Burns, it just whirls and whirls. Eventually the screen turns black and says it's loading photos- but that was for 10 hours last night! Am I looking in the right place for the source? 
    Thanks for your help!

  • Mplayer and gnome-screensaver

    How do I disable gnome-screensaver while mplayer is running?  I did a google search and found  http://bugs.archlinux.org/task/5371 which says it should be happening already...

    Yeah, that annoys me, too. I just looked arround  after reading you post and found in ~/.mplayer/gui.conf to set
    stopxscreensaver = "yes"
    seems fixed it half. The screensaver doesn't start, but before not starting he fades out anyway
    But i don't want to disable the fadeout, because i find it useful on other occasions.
    Edit: some collateral Damage -- the screensaver doesn't start anymore although mplayer isn't running anymore (but it still fades out ). Perhaps X restart fixes this, will try later.
    Last edited by kakTuZ (2007-11-14 21:01:16)

Maybe you are looking for