[ANSWERED]Which terminals let you set a random background image?

Many terminals nowadays let you set a background image on the terminal itself.
Which terminals let you set a random background image from a directory or list of images? Also need to be able to have multiple terminals with different background images open, so having a script that moves around images won't work.
I like this because when you have lots of terminals open, you can associate each with their background image. Also if your background image isn't a tiled thing or a stylized gradient (such as a human, etc), it might look bad when duplicated all over the screen.
I could use transparency, but I don't like psuedo transparency, and real transparency comes with all sorts of problems. (For me at least.) I would still prefer having multiple background images though.
Konsole and eterm are the only two I know that can do this, but konsole is KDE, and eterm has no unicode support, is dead (I think), and is ugly.
Last edited by sokuban (2008-12-31 21:20:12)

So now that time has passed and I'm on a clean new install, I decided to try out uxvrt again. The good news in that now I can type in it with scim. I have no clue how or why, but it means the greatest hurdle is gone.
I also even managed to get a good looking English font.
urxvt*font: xft:Monospace:pixelsize=12
Only problem is a readable east asian font. The default font is a mess and everything is squished together. If I explicitly select an east asian font, then there are huge spaces between each letter, even for english. So I find out this is a known bug, and I find a patched aur package for it, but the patch doesn't seem to make a difference.
I know urxvt lets you select a main font and a secondary font and so on. Maybe I did the syntax wrong. I tried both:
urxvt*font: xft:Monospace:pixelsize=16
urxvt*font: xft:WenQuanYi Zen Hei:size=9:antialias=True
and
urxvt*font: xft:Monospace:pixelsize=16,urxvt*font: xft:WenQuanYi Zen Hei:size=9:antialias=True
Neither of them worked. From what my understanding of what the man page says, the size of the cell is supposed to be based on the main font, but in both those cases the secondary font stretches the cells.
Can anybody reccomend fonts for east asian scripts that work well and show me your .Xdefaults ?
FAKE EDIT: I just thought of an idea, and it kinda works:
urxvt*font: xft:Monospace:pixelsize=16,xft:WenQuanYi Zen Hei:size=9:antialias=True
Now I get a readable font, but massive spacing issues between Chinese Characters.
EDIT: About the pixmaps, I got a script to randomly select and image and all is fine, but I can't seem to find a way to disable scaling. I can set the size of the picture by a percent, but it doesn't let me use decimals and it is impossible to get the exact resolution of the picture to display. (Unless I let it tile, but the pictures I am using aren't meant to be tiled.) Is there a way to either disable scaling, or set the urxvt size in pixels so I could make it exactly 640x480. The urxvt man page says that a scale of 1 disables scaling, but it seems to have no effect.
EDIT2: I just noticed I can't use scim now. I have no clue why, but I think compiling it with afterimage support breaks it.
EDIT3: I found out why scim was not working/working. I had to add this to my ~/.scim/global:
/SupportedUnicodeLocales = en_CA.UTF-8
I also got a script that works, kinda:
#!/bin/bash
image="$(ls /usr/local/share/cgs | sort -R | tail -1)"
urxvt -pixmap /usr/local/share/cgs/$image\;86x100
The only problem is that I don't know how to get urxvt -pixmap to keep the aspect ratio of the image. 86x100 is the closest it will let me get to the actual aspect ratio, but it is off slightly. Barely noticable. The man page says that propscale will do this, but it doesn't seem to work.
Either way, for now, I am just going to use 86x100.
Last edited by sokuban (2009-03-22 02:01:45)

Similar Messages

  • Setting the desktop background image via Powershell

    UPDATE: 
    I found the solution that addressed my problem, which I posted in a post below. Keeping the original post for Internet historical reasons as I the hope this helps someone else later on in their search for a solution. 
    ===============
    I have Bing'ed and I have Google'd and I haven't found a solid answer to setting the desktop wallpaper programmically.  I am trying to do this via PowerShell, but I would be happy for any other language flavor or application to work. 
    Below is the code I have tried to set the desktop background image. This has been scrounged from a few sources across the web. This solution works 25% of the time and I haven't figured out what the cause for success or failure of the execution. Or maybe
    it's neither, but waiting for Explorer to refresh. The only way to see the change 100% is to log out and log back in.
    I am running Windows 8.1 btw. 
    Thank you for looking.
    Function Get-WallPaper()
    $wp=Get-ItemProperty -path 'HKCU:\Control Panel\Desktop\' -name wallpaper
    if(!$wp.WallPaper)
    { "Wall paper is not set" }
    Else
    {"Wall paper is set to $($wp.WallPaper)" }
    Function Refresh-Explorer {
    $code = @'
    private static readonly IntPtr HWND_BROADCAST = new IntPtr(0xffff);
    private const int WM_SETTINGCHANGE = 0x1a;
    private const int SMTO_ABORTIFHUNG = 0x0002;
    [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
    static extern bool SendNotifyMessage(IntPtr hWnd, uint Msg, UIntPtr wParam,
    IntPtr lParam);
    [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)]
    private static extern IntPtr SendMessageTimeout ( IntPtr hWnd, int Msg, IntPtr wParam, string lParam, uint fuFlags, uint uTimeout, IntPtr lpdwResult );
    [System.Runtime.InteropServices.DllImport("Shell32.dll")]
    private static extern int SHChangeNotify(int eventId, int flags, IntPtr item1, IntPtr item2);
    public static void Refresh() {
    SHChangeNotify(0x8000000, 0x1000, IntPtr.Zero, IntPtr.Zero);
    SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, IntPtr.Zero, null, SMTO_ABORTIFHUNG, 100, IntPtr.Zero);
    Add-Type -MemberDefinition $code -Namespace MyWinAPI -Name Explorer
    [MyWinAPI.Explorer]::Refresh()
    Function Set-WallPaper($Value)
    echo "Setting background to: $value"
    Refresh-Explorer
    Set-ItemProperty -path 'HKCU:\Control Panel\Desktop\' -name wallpaper -value $value
    rundll32.exe user32.dll, UpdatePerUserSystemParameters
    #sleep 1
    rundll32.exe user32.dll, UpdatePerUserSystemParameters
    #sleep 1
    rundll32.exe user32.dll, UpdatePerUserSystemParameters
    #sleep 1
    Refresh-Explorer
    #Stop-Process -ProcessName explorer
    NOTE: I left in a few commented out statements. I found that they do not offer any help in formulating a solution.
    Thank you.

    Great news! I found the solution and all props and credit goes to
    jsd1982 of the XKCD comic
    forum from a post he made in 2007 and some deep search kung-fu Googling on my part. Here is the
    direct link to the post.
    This solution has worked for me 100% of the time on Windows 8. The only gotcha I found (minor detail) was when setting this process to run as a scheduled task, I had to run it as elevated privileges for the code to compile in memory. Running this function
    from PowerShell at the command prompt was fine. 
    NOTE: The code below is a slight trimmed down version posted by jsd1982 to just set the desktop wallpaper. I removed the image fetching from the Internet and the color inversion.
    # Credit to jsd1982
    function Compile-Csharp ([string] $code, $FrameworkVersion="v2.0.50727",
    [Array]$References)
    # Get an instance of the CSharp code provider
    $cp = new-object Microsoft.CSharp.CSharpCodeProvider
    # Build up a compiler params object...
    $framework = [System.IO.Path]::Combine($env:windir, "Microsoft.NET\Framework\$FrameWorkVersion")
    $refs = new-object Collections.ArrayList
    $refs.AddRange( @("${framework}\System.dll",
    # "${mshhome}\System.Management.Automation.dll",
    # "${mshhome}\System.Management.Automation.ConsoleHost.dll",
    "${framework}\system.windows.forms.dll",
    "${framework}\System.data.dll",
    "${framework}\System.Drawing.dll",
    "${framework}\System.Xml.dll"))
    if ($references.Count -ge 1)
    $refs.AddRange($References)
    $cpar = New-Object System.CodeDom.Compiler.CompilerParameters
    $cpar.GenerateInMemory = $true
    $cpar.GenerateExecutable = $false
    $cpar.CompilerOptions = "/unsafe";
    $cpar.OutputAssembly = "custom"
    $cpar.ReferencedAssemblies.AddRange($refs)
    $cr = $cp.CompileAssemblyFromSource($cpar, $code)
    if ( $cr.Errors.Count)
    $codeLines = $code.Split("`n");
    foreach ($ce in $cr.Errors)
    write-host "Error: $($codeLines[$($ce.Line - 1)])"
    $ce |out-default
    Throw "INVALID DATA: Errors encountered while compiling code"
    [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") > $null
    [System.Reflection.Assembly]::LoadWithPartialName("System.Runtime") > $null
    # C# code to post to wallpaper
    $code = @'
    using System;
    using System.Drawing;
    using System.Drawing.Imaging;
    using System.Runtime.InteropServices;
    using System.IO;
    using System.Net;
    using Microsoft.Win32;
    namespace test
    public class Wallpaper
    const int SPI_SETDESKWALLPAPER = 20 ;
    const int SPIF_UPDATEINIFILE = 0x01;
    const int SPIF_SENDWININICHANGE = 0x02;
    [DllImport("user32.dll", CharSet=CharSet.Auto)]
    static extern int SystemParametersInfo (int uAction , int uParam , string lpvParam , int fuWinIni) ;
    public static void SetWallpaper(string uri)
    System.IO.Stream s = new WebClient().OpenRead(uri);
    Image img = System.Drawing.Image.FromStream(s);
    Bitmap copy = new Bitmap(img.Width, img.Height);
    Graphics g = Graphics.FromImage(copy);
    Rectangle rect = new Rectangle(0, 0, img.Width, img.Height);
    g.DrawImage(img, rect, 0, 0, img.Width, img.Height, GraphicsUnit.Pixel);
    g.Dispose();
    img.Dispose();
    // Save to a temp file:
    string tempPath = Path.Combine(Path.GetTempPath(), "wallpaper.bmp");
    copy.Save(tempPath, System.Drawing.Imaging.ImageFormat.Bmp);
    RegistryKey key = Registry.CurrentUser.OpenSubKey( @"Control Panel\Desktop", true ) ;
    key.SetValue(@"WallpaperStyle", 1.ToString( ) ) ;
    key.SetValue(@"TileWallpaper", 0.ToString( ) ) ;
    SystemParametersInfo( SPI_SETDESKWALLPAPER,
    0,
    tempPath,
    SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE );
    function Set-Wallpaper([string] $imgurl)
    compile-CSharp $code
    [test.Wallpaper]::SetWallpaper($imgurl)

  • Inserting Random Background Images

    Hi
    Can someone please please help me. I have a very simple Flash
    movie where I
    want to insert a random background image every time the movie
    plays or the
    web page is refreshed.
    I found the following script online but need a step by step
    idiot¹s guide
    how to add it to the original Flash file.
    randomClips = new Array ("background0.jpg",
    "background1.jpg",
    "background2.jpg", "background3.jpg");
    function randomBackground() {
    randomNumber = random (randomClips.length);
    _root.mtClip.loadMovie (randomClips[randomNumber]);
    randomBackground();
    Cheers
    Sally

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3299484431_177155
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi
    Many many thanks. This is practically the same as Rob from
    Action Script
    Group suggested. You are both geniuses!!! I didn¹t
    though alter the size
    of the stage as I have an existing movie.
    Thanks again,
    Take care
    With kind regards
    Sally
    --B_3299484431_177155
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Re: Inserting Random Background
    Images</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi<BR=
    >
    <BR>
    Many many thanks.  This is practically the same as
    Rob from Action Scr=
    ipt Group suggested.   You are
     both geniuses!!!  I didn=
    &#8217;t though alter the size of the stage as I have an
    existing movie. &nb=
    sp;<BR>
    <BR>
    Thanks again,<BR>
    <BR>
    Take care<BR>
    <BR>
    With kind regards<BR>
    <BR>
    Sally<BR>
    </SPAN></FONT>
    </BODY>
    </HTML>
    --B_3299484431_177155--

  • Customizing firefox ... set my own background image for all pages I open in Internet.

    The idea is in using my own *.css file as primary for all sites, i open in firefox (or just my own background image). So that this image replaces the background for all sites I open in Internet.
    Maybe there is a file available in firefox 17.1 for this (maybe UserContent.css).
    Thanks a lot.

    Yes, you can use userContent.css for this, but it's simpler to use the Stylish extension instead.
    * http://kb.mozillazine.org/UserContent.css
    * https://addons.mozilla.org/firefox/addon/stylish/
    You would then use something like this:
    <pre><nowiki>@-moz-document url-prefix("http://"), url-prefix("https://") {
    body {
    background: url("file:///C:/My%20Pictures/Wallpaper/image.jpg") !important;
    color: black !important;
    *:not(body):not(input):not(textarea):not(button) {
    background: transparent !important;
    color: inherit !important;
    /* Unvisited link */
    a:link {
    color: blueviolet !important;
    /* Visited link */
    a:visited {
    color: indigo !important;
    /* Link with the mouse cursor over it */
    a:hover {
    color: lightblue !important;
    /* Clicked link */
    a:active {
    color: red !important;
    }</nowiki></pre>
    * To get the path of the image to use as the background, open it in Firefox and copy the URL from the address bar. Otherwise, keep in mind the protocol is file:/// that spaces must be replaced with %20 and that forward slashes must be used instead of backslashes (the latter is what Windows Explorer uses).
    * Remember to define appropriate colors for text and links, otherwise they will end up unreadable against your background image.
    * Even so, you can expect uneven results. Take this page for instance. “Post reply” isn't an actual button, but a link element styled to look like a button. There's no way to change these on all sites; they must be styled on a case-by-case basis. Another issue are images (e.g. the [https://support.cdn.mozilla.net/media/img/mozilla-support.png mozilla support] graphic here), which might end up unviewable against your background image.
    * If you need help writing CSS, see https://developer.mozilla.org/en-US/learn/css or http://forum.userstyles.org

  • Set the custom background images to default?

    Is there any way to set the custom background image to default instead of manually changing the background image in the phone?

    This was actually discussed some time ago. Please see this link.
    http://www.voipintegration.com/software.html
    See discussion here:
    http://forums.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Unified%20Communications%20and%20Video&topic=IP%20Telephony&CommCmd=MB%3Fcmd%3Dpass_through%26location%3Doutline%40^1%40%40.1ddd4505

  • Trying to redeem iTunes card told first time purchase on computer needs security question answered which I did not set up or know the answer to

    Trying to redeem iTunes card. Was told first time purchase needs security questions answered and don't remeber setting them up to start with and I have made several purchases before without answering questions. Getting no help from Apple support. How can I make new answers for new security questions.

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then the steps half-way down this page give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • How do you set-up a floating image in a header or footer?

    I want to place a floating image in the header or footer so it repeats on every page of a section. Somehow this has been achieved in the Project Proposal Template but I can't work out how you set something like this up from scratch. Can you help me?

    It is not in the header.
    Highlight the floating image and then go Format > Advanced > Move Ojbects to Section Master.

  • How to set tray's background image in the custom page layout?

    Hi all,
    I've developed custom page layout with custom iView tray implementation. I've applied my layout into my page and added some iViews. Those iViews are URL isolated so they are rendered as an iframe. My problem is that an iframe background containing iView content overcast my background image which I have set in my iView tray implementation. Is it possible to set transparent background for an iframe in this scenario?
    I would be grateful for helpful answers.
    Best Regards,
    Micha&#322; M.

    Hi Tamil,
    That's right, I've already used layout tag library do develop custom tray design but my problem concerns iView's isolation method . URL isolation renders iView's content in an iframe which has its own background. I've read some articles about getting transparent iframes but I'm not sure how could I achive this in SAP EP? Is it possible?
    Best Regards,
    Michal M.

  • Random background-image with PHP

    I would like to have random images as background-images on a
    page. So I
    made a rotate.php ("SELECT picsid, picsurl FROM pics WHERE
    picsite =
    'home' ORDER BY MD5(RAND()) limit 1") with
    <img src="<?php echo $row_rsimages['picsurl']; ?>"
    alt="" />
    Then I put the following rule into the css-file:
    #pics {
    width: 400px;
    height: 200px;
    background-color: #fff;
    background-image: url(banner.php);
    background-repeat: no-repeat;
    background-position: top left;
    Finally I inserted a div called #pics on the index.php and
    previewed the
    page, and - you are right ;) - the images are not displayed.
    Where have I failed?
    Martin Lang

    Martin Lang wrote:
    > I would like to have random images as background-images
    on a page. So I
    > made a rotate.php
    > background-image: url(banner.php);
    > Where have I failed?
    In several places.
    1. Presumably banner.php is the page that you earlier refer
    to as
    rotate.php. The name should be the same.
    2. It looks as though you're trying to use an <img> tag
    to display a
    background image. That won't work.
    3. If you want banner.php to display an image, you need to
    send the
    correct MIME header and stream the image as a download.
    // code to select the image
    $filepath = '/home/mysite/htdocs/images/'; // path to image
    folder
    $image = $filepath.$row_rsimages['picsurl'];
    if (file_exists($image) && is_readable($image)) {
    $size = filesize($image);
    header('Content-type: image/jpeg');
    header('Content-length: '.$size);
    $file = @fopen($image, 'rb');
    if ($file) {
    fpassthru($file);
    It's actually a lot simpler to do everything in the same
    page.
    Put the recordset at the top of the page to select the random
    image.
    Then put the style block in the head of the document:
    <style type="text/css">
    #pics {
    width: 400px;
    height: 200px;
    background-color: #fff;
    background-image: url(<?php echo $row_rsimages['picsurl'];
    ?>);
    background-repeat: no-repeat;
    background-position: top left;
    </style>
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Set Table Row Background image

    Hi all,
    I'd like to set a Table row background image, but I only find a way to set a background image for each column, is there any way to set an image  as background for a whole row?

    Hi Pakojones,
    Based on my test, it is not support to make the image tile in a row. The BackgroundRepeat values of tablix is Repeat, RepeatX, RepeatY, or Clip. In SSRS, just chart BackgroundRepeat can be set to Fit.
    Reference: http://technet.microsoft.com/en-us/library/dd239334.aspx
    In SSRS, we can put tablix in a rectangle, then add background image for the rectangle. We can tile the image over the whole tablix. If we want to make the image tile in a row, we can put the single row in a rectangle to work around it. In this situation,
    we have to seamless paste the tablix in the end.
    Alternatively, since the issue is by design, I recommend you that submit this suggestion at
    https://connect.microsoft.com/SQLServer/ . If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable
    for us to improve our products and increase the level of service provided.
    Regards,
    Alisa Tang 
    Alisa Tang
    TechNet Community Support

  • Some interview questions- pls answer which ever Question you know.

    Q1. Sales order with 10 items with different delivery dates? is it possible? where is the setting?
    Q2. How you deliver a sale order item to 2 ship-to parties?
    Q3. while sale order processing can we give separate partner function? Example?
    Q4. Damaged goods company dont want to take back/return; then how we 'compensate' customer?
    Q5. In sales order what is the difference between 'header detail tabs, and 'item detail tabs?
    Q6. What is the back ground for a Routine?
    Q6. What is the necessity to maintain 'Route determination'?
    Q7. In CIN-what is 'Reconcillation'?
    Q8. In CIN- why we use 'proforma invoice', why not 'commercial invoice?
    Q9. Difference between 'capital project and revenue project'?
    Q10. Where we maintain 'Material Cost'?
    Q11. Example for SAP system interacting with Non SAP system?
    Q12. When the system knows to take up- Backward scheduling or Forward scheduling?
    Q13. Of 10 items of a sales order need to bill only 1 item, where is the setting?
    Q14. Pricing -Is it possible to change 'Calculation type' during sales order processing?
    Q15. What triggers 'Item category'?
    Q16. In which step of LSMW - we can write a program?
    Q17. All pre-requisites/settings maintained, even Rebate is not working. Where we check?
    Q18. What transfers the Requirements in - sales order processing?
    Q19. Pricing- what pricing condition types related to Accounting?
    Q20. User exit for Sales order?
    Q21. For creating 'Sales organisation'- what criterion should follow?
    Q22. If in a sales order to enter 200 line items; to speed up entering line items; what we can do?
    Q23. Is 2 items of a sales order can be delivered from 2 different plants? If so, then, Number range of the Billing documents
            should be different from plant to plant, for that same sale order. where and how we maintain setting.
    Q24. Rebates- How we settle an agent (not a customer) in rebate process?
    Q25. CIN- use of 'Exice group'?
    Thanks in advance
    Arsh

    My dear friend,for  most of the questions you requested there are many threads with same topics, i suggest you to go thru existing threads and read library once and still if you find any question unanswered post it in forum.
    balu

  • On which device do you set the password?

    I have a AP Express g connected to a Extreme n. Because I am using the AP Express g, I understand I need to use WEP security. My question is when using Airport Utility, do I set the password on the Extreme n using "WEP (Transitional Security Network)" or do I first set a password on the Express g then match that password on the Extreme.
    Thank you in advance.
    Robert

    Robert,
    You don't need to have the same password for each device. You can have a different password for all your devices if you choose, however, it is easier to have the same password for most of us.
    It doesn't matter which one you first set a password for.
       Joseph Kriz

  • I would like to know if there is an app for my daughters iPhone 5 which can let me set time for it on or off?

    My teen spends too much time on her phone. Her grades have sank and she needs to focus on her studies. Is there an app where I could turn off the phone while she is in school and back on again later?
    Thanks!

    Verizon's Family Base should allow you to do what you want.
    http://support.verizonwireless.com/support/faqs/FeaturesandOptionalServices/fami ly-base.html
    There are only a few features that aren't supported, the ones that require a Family Base app to be installed on the phone.

  • Does any version of InDesign let you set hyperlinks to open in new window?

    I'm converting some InDesign books to pdf and epubs and my client wants the hyperlinks to open in new window when these files are viewed in browsers. so far no version I've tried has this capability.

    It must be done in Acrobat. Ask in the Acrobat forums.

  • Ios7 find my phone lost mode no longer lets you set a new passcode to unlock

    Prior to ios7, through iCloud and Find My Phone, I could turn on Lost Mode and it prompted for an unlock code. Now, it no longer asks for a new code, just a phone number to show in a prompt on the locked phone. This is a hole.
    So, what if a friend or stranger knows or sees me unlock my phone on a regular basis, but then later steels it? Now I turn on Lost Mode, but since they know the normal lock screen 4 digit code, they have the phone and can unlock it from Lost Mode.
    That isn't safe, and is a step backwards from the previous Lost Mode options.
    Take this to another level, my child has a phone and has been abusing it... I want to lock it. Now I can't!!!!!!!

    I found the same Jeff.
    This infuriates me!
    That was one of the draws for me to buy 5 iPhones for my entire family, one platform to support and the ability to know where everyone is.
    I really wish they would re-consider and bring this back.
    If not, I would be willing to pay for an app to allow me to use the locate feature.
    Kyle

Maybe you are looking for

  • Where is the Update Genius option in Store menu?

    Am I blind? Because I don"t see it anywhere

  • IPod with Folder Icon? Need Help

    Hello, My 4th Generation iPod (black and white screen) is giving me grief. I have tried everything. It keeps giving me the Folder with an Exclamation point in the bottom left. I have reset it I have restored it I have tried everything. Can someone wh

  • MAM config - Free Sorting

    Hi everyone,   Has anyone used the flag "Free Sorting" in the config for MAM-Scenario-BusinessProcesses?  I'm using MAU 1.0 SR3.  There's not much documentation on how this flag is used.  The description of the field in F1 just says "Free Sorting on

  • PageCount from generatePDFOutput and hostname in process

    Hey, I'm working on a project where I have to add some custom logging to a livecycle ES process. The process is short-lived and uses an xml with data to generate a pdf (generatePDFOutput) and optionally e-mail, print or fax the pdf. I would like to k

  • Any way to convert this crontab to launchd?

    Can launchd do this? \# Every 2 minutes Sundays from 11 AM - 11 PM */2 11-23 * * 0 /Users/james/script.sh \# Every 2 minutes Monday from 6 PM - 11 PM */2 18-23 * * 1 /Users/james/script.sh I have looked at the StartInterval and StartCalendarInterval