[MOVED] Question(s) regarding dzen2

While I am still absorbing the knowledge to configure dzen2, there's something that I can't stil manage to create in my head.
The only thing that I can't seem to figure out how to make in dzen is the window list, and was wondering if anyone else knew how to make one w/ dzen.
On a somewhat simmilar note, does anyone know why whenever I try to use ^ca, it's trimmed down to ^a in dzen?
Ex: In a terminal, I type this:
echo "^fg(#00f)^ca(1,urxvt)urxvt^ca()" | dzen2 -p
And I get this (in blue, of course):
^a(1,urxvt)urxvt^a()
Last edited by ZeroTruths (2009-07-20 03:06:33)

Moved to http://bbs.archlinux.org/viewtopic.php?id=76362

Similar Messages

  • Question in regards to multiple addresses and phone numbers in one contact...

    Hello iPhone users!
    I have a quick question in regards to contacts. If I have a name of a restaurant that has two separate phone numbers and two separate locations, do I need to create a separate contact for each location and each phone number? For exmaple, let's say the Restaurant name is Luigi's and there is one location in Boston and one in New York. I wish to enter both of the addresses and both of phone numbers.
    Ideally, how would I combine both of these? I think to further qualify is if I'm able to combine both entries into one contact, how can I differentiate the phone numbers? I realize there are labels that I can customize (i.e. name one label Boston and the other New York) but it seems if I do that, then those custom labels appear to carry over for any other new contact I create which is not ideal.
    Am I on the right track or am I over thinking this? Does anyone have any suggestions?
    Many thanks!

    Thanks for your reply!  I'm just trying to figure out the best way. Basically I was hoping to create one contact entity with the restaurant name and withing that contact the following:
    1. Addresses for both locations
    2. Phone numbers for both locations
    3. A label to distinguish which number belongs to what location
    So at the moment, I have one contact and the label for one phone number is "main" which is not ideal because it doesn't distinguish what location the number is calling. Let's say I create a custom label called "Boston". It works fine and I can assign that label to that number. The drawback is that now the custom label "Boston" now appears globally in my custom label list. I guess this is fine with one or two labels but then I can see how this might get out of control with more labels being added. I was hoping a custom label would apply only to that one contact and not be globally available to all other new contacts.
    If I do create a custom label and delete it from my list, it then goes away for the contact that I assigned the label to.
    So given that information, I guess if I don't want the custom label list to get out of control, it's probably best to create a separate contact for each location... i.e.
    1. Luigi's - Boston
    2. Luigi's - New York
    I was just hoping to have everything consolidated into one contact as opposed to creating multiple ones. It seems like that can't be accomplished unless I have a huge list of custom labels in which I probably won't use them to apply to other contacts : )

  • Question In regards to Frames

    Good Morning Everyone:
    I have a question in regards to Java Frames. I have just created a button in my princial frame and pressing this button creates another Frame. I have two questions relating to these resulting frame:
    1)Every time I close the new frame, the old one closes with that one too. Is there a way that I can restrict the "X" button on the top-right corner of the frame?
    2)How can I change the co-ordinates of the new frame so that when it appears, it doesn't overlap the existing one? (In other words, I would like to frame to open to the right of the existing frame).
    I would highly appreciate a response.
    Cordially

    Dear Walken16:
    I went through the codes and suggestions you posted meticulously. However, I have to lament that it didn't help me in trtying to sour my problem out. What happens is that in my situation, when the user presses a button in the main frame, a second frame appears. However, when one presses the "X" in the second frame, this causes both frames to disappear whereas we only want the second frame to disappear. Below is the code pertaining the second frame that emerges when a button in the first frame is pressed:
    package ca.inasec.ui.conference;
    import java.awt.*;
    import javax.swing.border.BevelBorder;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    import java.io.*;
    import java.util.StringTokenizer;
    import ca.inasec.server.behaviour.*;
    import ca.inasec.ui.whiteboard.*;
    import ca.inasec.ui.*;
    //import ca.inasec.server.*;
    import ca.inasec.utilities.*;
    import ca.inasec.models.*;
    import ca.inasec.audio.*;
    //import ca.inasec.net.*;
    import ca.inasec.packetsource.JavaFrameSource;
    //import ca.inasec.net.IPLister;
    import java.util.Date;
    public class MyPageFrame extends JFrame{
         public MyPageFrame(){
         super("  My Page");
         //The Image "Q" will be associated with this frame as well. Hence, it awaits implementation
         //setIconImage(ImageLoader.load("images\\mainIcon.gif", this));
         setLayout(new BorderLayout());
         setSize(470, 658);
          addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
               System.exit(0); return;
        setVisible(true);
        setResizable(false);
        //Let's create 5 panels satisfying the requirements of the BorderLayout
        //First, an array of panels
        JPanel TheNorth =new JPanel();
        JPanel TheSouth= new JPanel();
        JPanel TheCenter = new JPanel();
        JPanel TheEast = new JPanel();
        JPanel TheWest = new JPanel();
         add(TheNorth, BorderLayout.NORTH);
         add(TheSouth, BorderLayout.SOUTH);
         add(TheCenter, BorderLayout.CENTER);
         add(TheEast, BorderLayout.EAST);
         add(TheWest, BorderLayout.WEST);
         //Now, the work to be done in the south panel
         TheSouth.setLayout(new BorderLayout());
         TheSouth.setPreferredSize(new Dimension(400, 90));
         JButton QWebsite = new JButton("AWebsite");
         JLabel Copyright = new JLabel ("Copyright 2005. A Website");
         Copyright.setFont(new Font("Arial", Font.ITALIC, 10));
         JLabel Rights = new JLabel ("ALL RIGHTS RESERVED");
         QWebsite.setPreferredSize(new Dimension(110, 30));
         QWebsite.setFont(new Font("Garamond", Font.BOLD, 14));
         //Let's also create two extra panels to satsfy the requirements of BorderLayout
         JPanel ExtraPanelA = new JPanel();
         JPanel ExtraPanelB = new JPanel();
         ExtraPanelA.setPreferredSize(new Dimension(80, 130));
         ExtraPanelB.setPreferredSize(new Dimension(80, 130));
         //ExtraPanelA.setBackground(Color.red);
         //ExtraPanelB.setBackground(Color.green);
         JPanel CenterOfTheSouth = new JPanel();
         TheSouth.add(CenterOfTheSouth, BorderLayout.CENTER);
         CenterOfTheSouth.add(AWebsite);
         CenterOfTheSouth.add(Copyright);
         CenterOfTheSouth.add(Rights);
         TheSouth.add(ExtraPanelA, BorderLayout.EAST);
         TheSouth.add(ExtraPanelB, BorderLayout.WEST);
         TheNorth.setPreferredSize(new Dimension(400, 70));
         TheCenter.setPreferredSize(new Dimension(100, 200));
         TheCenter.setBackground(Color.BLUE);
         TheCenter.setBorder(BorderFactory.createLineBorder(Color.black, 1));
         //AddWindow Listener
        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                System.exit(0); return;
    }

  • Hi Apple friends, my question is regarding, the last iOS 6.1 upgrade, why it include the LTE 4G to the iPad4 and iPad Mini with Telcel in Mexcio, and Why it was not for the iPhone 5?, when Apple will enable this feature LTE 4G on the Iphone5 to Telcel?

    Hi Apple friends, my question is regarding, the last iOS 6.1 upgrade, why it include the LTE 4G to the iPad4 and iPad Mini with Telcel in Mexcio, and Why it was not for the iPhone 5?, when Apple will enable this feature LTE 4G on the Iphone5 to Telcel?

    And Apple won't tell you. All they will tell you is what countries are supported for LTE right now. You can express your interest to Apple via their feedback pages, if you wish:
    http://www.apple.com/feedback/iphone.html
    but you will not receive a reply. It may be waiting on Telcel to approve. They may not feel that their LTE network is robust enough to handle that much load yet. But I'm just guessing. We'll just have to wait and see what develops.
    Regads.

  • MOVED: question regarding CPU temps and latest bios (1.8)

    This topic has been moved to AMD64 nVidia Based board.
    question regarding CPU temps and latest bios (1.8)

    I'd believe the first bios's temps more than the second...  
    However what temps are given when using speed fan and/or everest? (in windows)

  • MOVED: Questions about flashing the Bios.

    This topic has been moved to BIOS.
    https://forum-en.msi.com/index.php?topic=93272.0

    hi alemaneitor,
    Regarding your questions:
    1. Yes, flashing the BIOS may help solve your problem as it will re-write the configurations on the CMOS. Take note though of the changelogs or README (repair changes) as the latest BIOS updates fixes critical issues on the hardware.
    I've also seen some units that act the same as yours and doing a gpu reflow most of the time fixes the issue - see this thread in reference.
    2. In flashing the BIOS outside of Windows, it takes less than a minute. If you need to run the BIOS flash utility inside Windows, it may take 1-2mins.
    3. If there's a new BIOS that fixes critical issues, it's most of the time uploaded on the lenovo website (in some cases, BIOS updates are not available to the public and can only be used by service technicians)
    4. The latest BIOS update for the Lenovo G470 is the one below that fixes an issue on units that can not enter BIOS after restart under compatible HDD mode (see README.TXT)
    BIOS Update for 32bit Windows
    40cn33ww_32.exe
    3.28MB
    BIOS Update for 64bit Windows
    40cn33ww_64.exe
    3.67MB
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • License key question with regards to upgrading from 7/8.1 to 10

    Hi, I hope I've posted my question in the right area of the forum:
    I understand that Windows 10 will be a free upgrade for Win7/Win8 users.
    That's really wonderful but I was wondering what the exact mechanism with regards to our 7/8 license keys. Here's a couple examples to clarify my question:
    first, example: I have Windows 7 Pro license and say I upgrade to 10 within the first year. Let's say I need to reinstall Windows after that first year is finished will I still be able to use that same license key I used to upgrade 7 to 10 to install a fresh
    copy of Windows 10 or will I need to purchase a new license because the year is elapsed? 
    Here's another scenario. I upgrade to Windows 10 from 7 and after trying Windows 10 for while, I decide to uninstall 10 and go back to 7... because I'm crazy like that.... Will I be able to use my original Key for Windows 7 or is the upgrade a one way road:
    where the 7 key turns into a Windows 10 key and can no longer be used to activate Windows 7?
    Thanks for the feedback!

    Hi Momashi
    Here's another scenario. I upgrade to Windows 10 from 7 and after trying Windows 10 for while, I decide to uninstall 10 and go back to 7...
    because I'm crazy like that.... Will I be able to use my original Key for Windows 7 or is the upgrade a one way road: where the 7 key turns into a Windows 10 key and can no longer be used to activate Windows 7?
    If you Upgrade to Windows 10 and do not like it, for whatever reason.
    Before you upgrade to Windows 10.
    Create an image of windows 7 to an external HD and a recovery CD, using windows 7 Backup and Restore.
    You can re-install windows 7 in the SAME SYSTEM using the recovery CD without using  a key.
    Hope it helps
    Where did you get your outlandish information about a Windows 7 key turning into a Windows 10 key?  Nothing in the past has ever happened like this before, so what makes you think it will happen with Windows 10?
    My Windows ME did not turn into a Windows XP key!
    My Windows XP key did not turn into a Windows Vista key!
    My Windows Vista key did not turn into a Windows 7 key!
    And so on!
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Questions in regard to a "stepped" migration

    We are moving from an existing Tree to a new tree but we are doing it
    in steps. As the users move from the old tree to the new tree I would
    like to move them to Groupwise in the new tree. Can someone give me
    some advise on how best to go about this?
    Our current environment is Groupwise 7.0.1 on NW 6.5 and the new
    Groupwise system will be running on Linux.
    Thanks for the help...
    Brett

    After re-reading what I posted I don't think I was all that clear.
    Let's see if I can do a little better this time.
    We have a tree with one domain and one post office in it. All our
    staff are in that post office / domain. Our migration is more
    edirectory related than GroupWise related but this gives me a chance
    to reconfigure things in the GroupWise world as well.
    The new tree has no relation to GroupWise at this time, however, I
    would like to put GroupWise in that new tree with 5-6 domains and 4
    post offices. My ideas are based off of Gregg Henchman's cool solution
    "Put Some "Youngblood" in your GroupWise System".
    My issues stem from the fact that as I move users out of the old tree
    and into the new tree they will no longer be associated with the
    GroupWise domain (because it's not in the new tree). That would force
    them to use the web client or require them to enter their "GroupWise"
    password when the client launches. I can hardly get them to remember
    the Novell password let alone the GroupWise password so two passwords
    are out of the question. In addition, I still need to be able to
    manage distribution lists etc. during the transition.
    To answer your question, yes my users would move to new post offices
    in the new system.
    Next question, can I have a GW system that is associated with two
    trees at the same time? I was under the impression that you could not
    do that any longer? If you can then how would you go about doing that?
    Thanks for the help,
    Brett
    On Mon, 05 May 2008 07:06:01 GMT, dzanre
    <[email protected]> wrote:
    >
    >So, you are moving them to a new post office as well? Will this post
    >office be in the same GW "system" as you have now? Actually, unless
    >you want a lot of trouble, it's best to make it in the same system
    >during the move, even if you eventually plan on getting splitting it,
    >because you cannot move a GW user across GW "systems" easily.
    >
    >So, assuming you have a new GW Domain/PO in the same system on the new
    >tree:
    >
    >1. Disassociate the user from the current object (Tools|GroupWise
    >Utilities|GW/eDirectory Associations|Disassociate).
    >2. Move the user to the new PO
    >3. Reassociate the user to the new eDirectory user object (same
    >place).

  • Questions in regards to server 2012R2 Remote desktop Service deployment and GPO

    Hi Everyone
    We have a business requirement moving to 2012R2 RDSH server. I have installed a 2012R2 member servers and enabled Remote desktop licensing role. I have activated the licenses. the servers is in operational
    I have deployed 3 windows 2012R2 member server "RDS1" , "RDS2" and "RDS3".
    on RDS1 I ran Add roles and Feature Wizard > Remote Desktop Services installation > Quick Start >Session based desktop deployment to complete the installation.
    On RDS1 Server Manage Dashboard Page Select Remote Desktop Services > Overview. Under RD Licensing I added my 2012R2 license server "2012r2-tslic". Go to task. Edit deployment properties RD license mode to per device and click OK.
    Reboot RDS1
    Check RD Licensing Diagnoser everything is clear
    On RDS2 I did the exact same thing ran Add roles and Feature Wizard > Remote Desktop Services installation > Quick Start >Session based desktop deployment to complete the installation. 
    But With RDS2 I move this server to an OU that link to a GPO with RD licensing details. after reboot the servers check RD Licensing Diagnoser I can see 2012r2-tslic specified as the license servers.  
    Based on this document
    http://blogs.technet.com/b/askperf/archive/2013/09/20/rd-licensing-configuration-on-windows-server-2012.aspx  Are you suppose to configure RD license server via Remote desktop Service deployment ? Not GPO ?
    Here are my questions
    We currently have ten 2008r2 terminal servers in a NLB cluster. each RDSH server have in house application installed on each one of them. User connect to the 2008R2 RDSH servers via RDP connection. we have a restricted GPO apply to those
    RDSH servers. user cannot do anything on RDSH servers apart from running the application and use excel.  On the remote desktop session host configuration we have enable settings like end a disconnected session , Active session limit  ,
    remote control users session , LPT port redirection.
    We push out RD license server detail via GPO to the terminal servers
    Can I use our existing GPO apply the licensing server settings , desktop restriction setting to the 2012R2 RDHS servers or we should be using Remote desktop Service deployment to do the job ? If that is the case how would you transfer the
    current 2008r2 environment to 2012 using Remote desktop Service deployment. is that mean I have to manually configure 1 by 1.
    Please help
    Many thanks

    Hi,
    Please see my response to you in the other thread.  Please contact me via email and I will go over the basic planning and deployment steps with you which will help clear things up and get you started off on the right foot.
    You should only run through the wizard and create a RDS deployment once.  Then you add the various servers (RDSH, RD Licensing, RD Gateway, etc), set Deployment properties, etc.
    Thanks.
    -TP

  • Question(s) Regarding Personas Capabilities

    Hello,
    We are new users of Personas and are trying to figure out all of the tool's capabilities. Below are some questions that our users had when determining whether or not the Personas tool can replace some GUI screens:
    1) Is it possible to have field requirements in text boxes created (e.g. character limits and number/letter only restrictions)?
    2) Can scripts be used between multiple sessions in Personas? For example, we would like to be able to "/o" with a transaction in a script button, but it simply does nothing if we try that. Furthermore, it will not allow us to use fields from other sessions in a script (e.g. we would like to copy a value in session 1 and paste it in session 2, but got the error that the control wasn't found. Is this possible in Personas scripting)?
    3) In certain transactions, there are different buttons at the top of the screen depending on which tab is selected on a screen, and when creating a flavor, it somehow only grabs the buttons from the tab you are currently on and uses those on every tab on the screen. Is there some setting where we can get around this issue?
    4) General scripting question: is there a way to alter the size of the box when creating scripts to make it easier to see all of the steps? Additionally, is there a way to make navigation within the scripting tool easier (because when you delete a step it takes you to the top of the screen, which can be tedious if you are working with a very large script)?
    5) In the GUI, at the very top-left there is a menu that has an option for users to either Stop Transaction or Create Session and these options are missing when using Personas. Is there a solution for recovering this functionality in Personas?
    6) In scripting, we are trying to create a Fast Order Entry (and Fast Order Display) option but when trying to copy/paste variant configuration the script gives a "control not found" error message. In scripting, is there some special action that needs to take place when trying to copy/paste VC values? We have had success with the general order header/line item data but always run into errors with the VC.
    7) Can variants be used within Personas?
    We understand that Personas may not be able to fully replace every piece of GUI functionality but we are trying to get a yes/no as to some of the questions we have come up with.
    Thanks in advance!
    Justin

    Hi Chinthan,
    Please describe how to select table alv variant dynamically?
    I am using ME54N Transaction code, when run my script with my logon all works ok as scrip was recorded with my id and correct table variant But same script failed for other user as their table variant are different by default.
    Please help me understand how can set variant dynamically execute my script and then again revert variant for user as my all scripting is dependent on column sequence in a particular variant.
    Global Variant change in ME54N reflected in all ME51N/ME52N/ME53N .. so we can not set it as global for all user.
    Please help.
    Regards,
    Rakesh Mourya.

  • A general question only regarding math and computer

    Do you think the following statement that is a question?
    question 1)
    A set of all strings 0's and 1's not containing 101 as a substring
    it can be answered as Regular Expression, contructing a DFA or Others
    I would like to find out that as a Engineer (Software/Hardward)
    how he/she feels about this statement?
    a question or NOT a question?

    Hi,
    You can install the WWI-generation server locally on your desktop/laptop. You need the generation server if you want to have generated output for customers. For testing the layout, you don't need it.
    Installing the WWI-server is well documented in the IMG-notes
    Regards,

  • Question in regard to management VLAN for each Context in ACE module

    Dear Pros,
    I know this will be a simple questions to answer, and I have searched the forum, but I am not able to find the answer I need.
    1) Does the ACE module require an Management IP address for each Context? Should the same VLAN be applied to each context, with larger size subnet to supply host address?
    2) If it does require that, what IP address should I used for default route in each context.
    I will be utilizing "Bridge Mode" for my application to transition the current network from Foundry to ACE. I will later on apply the "Routed Mode" model.
    Each ACE module will have 3 seperate Context, for a total of 4 including the Admin.
    Any suggestions or if you can point me to location as always will be greatly apprecaited.
    Thanks and best regards.
    Raman Azizian

    Hi,
    you have several options to choose from.
    1. Use Admin context for management
    You can use the Admin context for management. Give it an IP address in your managment VLAN, default route to upstream router, and login and change to contexts from there.
    + Easy and straightforward
    - snmp and syslog are using the ip from each individual context and not the management IP
    2. Use a Large subnet and assign an IP address in each context for management.
    You can configure 1 managment VLAN and assign an IP address to each context in this subnet. Create static routes to the management stations that need to access this management address.
    + each context has its own managment address
    - static routes need to be added
    3. Use your client-side ip address (or BVI) as management address.
    You management traffic will be inline and use the same path as your data. Default route is already configured and also valid for the management.
    + no static routes needed
    - inline management
    Personally, I choose option 1. That is, if the people that need to manage the ACE is the same team.
    If other teams (serverteam for context 1, other serverteam for context 2) need to manage the ACE, than I would choose option 3.
    HTH,
    Dario

  • MOVED: question on version 1.9

    This topic has been moved to AMD64 nVidia Based board.
    question on version 1.9

    Post in the right area and your more likely to get an answer dude. LOL

  • MOVED: RAM issues regarding CPU + Mobo & OC'ing

    This topic has been moved to Overclockers & Modding Corner.
    RAM issues regarding CPU + Mobo & OC'ing

    Quote
    Ok...but the problem was increasing the FSB.....and as for increasing the memory, I realise I have to change it back to 200mhz, but Im getting to that part after I overclock the CPU, I guess thats how its suppost to go? According to the guide Im using anyway...I dont understand how you can test one of them at a time, seeing as increasing the FSB increases the RAM frequencing.
    You are testing one at a time by lowering the memory to 100.   Increasing the "FSB" will result in memory speed less the 200, we know the memory is good up to 200, so...  This way you are pushing the CPU to it's limit but the memory is still running far less then what it can.   In this example the CPU max speed is found then you bring up the memory like you said above.
    Quote
    Also, there would be no point in getting PC4000 RAM seeing as the Neo4 platinum only supports up to PC3200, plus I was thinking of getting OCZ 2GB (2x1GB Kit) EL DDR PC-3200 Dual Channel Platinum Kit (CL 2-3-2-5) anyway, looks like its good RAM.
    That's just because there isn't an official PC4000 spec.  It will run fine and can use it's potential in this board although if we can't get you higher then 225HTT(FSB) then PC4000 is overkill, as you wouldn't quite max out PC3700 right now.  I've seen memory running at 350Mhz(700Mhz) in your board.  That's like PC5600!  Rule number one, don't believe MSI. 
    I like that OCZ kit you are talking about.

  • Windows 2003 SP2 upgrade question in regards to OSS 30478

    We are currently running our production system on a windows 2003 sp1 two-node cluster with SQL 2005.
    I would like to get it upgraded to SP2, but I have a question on OSS note 30478.
    There is a sentence in there stating:
    -Special features with Service Packs for Windows Server 2003 in the cluster:
    Service Pack 2: Before you import Support Package on platform x86_64, you must replace SAP resource DLL on both cluster nodes with the most current version.
    Can someone elaborate on "replace SAP resources DLL on both cluster nodes"?
    Does that just mean I need to upgrade the Kernel to the latest version?
    It seems to be a fairly bold statement with very vague instructions.  Anyways any guidance would be appreciated.

    for more details see note <a href="http://service.sap.com/sap/support/notes/1043592">1043592</a>
    peter

Maybe you are looking for

  • Backup problem with LMS 3.0 on Solaris

    Hi All, I'm encountering problems with LMS 3.0 when I try to do a backup. After you hit OK on the window that says "Do you want to backup now?", an error would pop up saying: "Enter a new directory name or ask the system administrator of the Ciscowor

  • Aarrrghh - can't find image size and position in captivate 8!

    I was using Captivate 8 and it was under a tab in properties (don't remember the name of the "sub-tab"). Now, I'm using a newly downloaded version and cannot find size and position (x, y, width, length, etc.). This should NOT be so hard Any suggestio

  • Failed to retrieve data from the database. 42000(Microsoft)(ODBC SQL Server

    Failed to retrieve data from the database. 42000(Microsoft)(ODBC SQL Server Driver)(SQL Server)Line 1: Incorrect syntax near 's'

  • E2E RCA for Legacy systems

    Hi All, I am going to implement RCA for legacy systems. What steps need to be considered to implement it on legacy systems. Where can i find document for this? Your help will be appreciated. Thanks, Rohan

  • How to add event in Date type bean

    Hi, I have created two date items - start date and end date. now I want to add event in these items? how can I add event in date type bean? Pls help.. Thanks Amit