Awesome: can't set client into floating state

It's me again and again with a problem with awesome.
As the topic says I can't set a client into floating state.
In my rc.lua I have the default key binding
clientkeys = awful.util.table.join(
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle )
but it has no effect.

Is that the only keybind you have inside clientkeys = awful.util.table.join? The default rc.lua has a comma after the first parenthesis.
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
etc...
Also did you remember to restart awesome after changing rc.lua? Anyways the default keybind works fine for me.

Similar Messages

  • How can i set rediffmail into my new ipad

    how can i set rediffmail into my new ipad?? plz help me out..

    Google for:
    setup rediffmail on iPad
    Also, have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • How to set client within SQL statement without using another pl/sql stmt.

    I have a following select statement
    SELECT SUM (w.prior_forecasted_costs + w.prior_committed_costs)
    FROM xxsuf.job_cost_summary_table w,
    apps.pa_periods p,
    pa.pa_resources bz,
    pa.pa_resource_list_members cz,
    pa.pa_tasks dz
    WHERE w.project_id = z.project_id
    AND w.task_id = dz.task_id
    AND dz.task_number '98000'
    AND w.resource_list_member_id = cz.resource_list_member_id
    AND cz.resource_id = bz.resource_id
    AND NOT EXISTS (SELECT NULL
    FROM pa.pa_tasks zz
    WHERE zz.parent_task_id = dz.task_id)
    AND w.resource_list_member_id != 1000
    AND p.period_name = w.pa_period
    AND p.current_pa_period_flag = 'Y'
    Above select statement uses pa_periods view which only works when I set my client using "exec DBMS_Application_Info.set_client_info(83);" in Toad or SQL*Plus session.
    I was wondering how can I achieve it within select statement. so that I don't have to use another PL/SQL statement to set my client. Is there anyway to set client with my org id within above select statement ?
    Please advise.
    --Rakesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    You can simply create a function which calls dbms_application_info and use that in your sql statement as in
    SQL> create or replace function set_client_info (i_info varchar2)
       return varchar2
    as
    begin
       dbms_application_info.set_client_info (i_info);
       return i_info;
    end set_client_info;
    Function created.
    SQL> create or replace view v_emp
    as
      select * from emp where empno = to_number(sys_context('userenv','client_info'))
    View created.
    SQL> select ename from v_emp where set_client_info(7788) is not null
    ENAME    
    SCOTT    
    1 row selected.
    SQL> select ename from v_emp where set_client_info(7900) is not null
    ENAME    
    JAMES    
    1 row selected.

  • How can I set the 'Arrange By' state of each folder independently?

    This is a particularly useful feature of XP & later systems - setting Arrange By of an active folder gives it that state until it is individually changed. This streamlines contents access because, for example it is frequently faster to identify applications by name & documents of interest by date. In lieu of this feature I find myself constantly selecting --> View --> Arrange By --> name/date, or clicking either in the header bar. But of course either of these actions changes the setting for all folders.
    One interesting tweak might leave the View --> Arrange by selection as a universal change, but allow the file list header bar selection to be unique & persistent for each folder. Would a little persistence break the metaphores too badly?

    Thanks Don! It looks like that is about as close as I can get.
    Here is what I find: selecting the 'Arrange By' option is possible only in the multi-panel list view mode, and unfortunately it is not 'independently' persistent. That is, when you set 'Arrange By' option in a Command-J View Options window it changes the view options globally (for all folders when viewing in the multi-panel mode). No persistence there. It looks like this is one thing that I will be doing over and over and over...
    When I worked at Apple in the Cupertino City Center buildings one of my software co-workers complained about having to do certain things over and over. He looked up at me and said, "Doggone-it! That is what computers are for."

  • How to use INSERT INTO ALL statement in jdbc prepared statement with beans

    Kindly give me some example that how we can use "INSERT INTO ALL STATEMENT" in jdbc prepared statement inside a jsf bean?
    Actually i want to take employee id's of present employees using single jsf page and using one textbox for each employee id.
    How can i use INSERT INTO ALL statement to achieve this?
    Following is my code snippet.
    AttendanceBean.java:
    public class AttendanceBean {
    private int atteid;
    private String attdname;
    private int attday;
    private int attmonth;
    private int attyear;
    public static Connection getAttConnection() throws Exception {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:globldb3";
    String username = "scott";
    String password = "tiger";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
    public String addAttendance(){
    Connection conn = null;
    PreparedStatement pstmt = null;
    boolean committed = false;
    try {
    conn = getAttConnection();
    conn.setAutoCommit(false);
    String query = "INSERT ALL INTO attendance VALUES (?,?,?,?,?)";
    pstmt = conn.prepareStatement(query);
    pstmt.setInt(1,this.atteid);
    pstmt.setString(2,this.attdname);
    pstmt.setInt(3,this.attday);
    pstmt.setInt(4,this.attmonth);
    pstmt.setInt(5,this.attyear);
    pstmt.executeUpdate();
    conn.commit();
    conn.setAutoCommit(true);
    committed = true;
    return "home.xhtml";
    } catch (Exception e) {
    e.printStackTrace();
    return "CRM.xhtml";
    } finally {
    try{
    if (!committed) conn.rollback();
    if (pstmt != null) pstmt.close();
    if (conn != null) conn.close();
    }catch(Exception e){
    e.printStackTrace();
    }

    Check this program for some info on Push buttons:
    1-DEMO_DYNPRO_PUSH_BUTTON
    2-DEMO_DYNPRO_MODULE
    3-DEMO_DYNPRO_ON_CONDITION
    Suppose Your screen is 101
    Then in that screen create one push button and assign it a function code.
    Now in the PAI of the 101 screen
    Create Module for user command
    Inside that module checc the sy-ucomm if sy-ucomm eq <Function code of your push button>
    Insert the values in database.
    *& Module USER_COMMAND_0101 INPUT
    process after input for screen 0101 *
    MODULE USER_COMMAND_0101 INPUT.
    CASE OK_CODE.
    WHEN 'SAVE'.
    *Insert the values here
    WHEN 'DISP'.
    ENDCASE.
    CLEAR OK_CODE.
    ENDMODULE. " USER_COMMAND_0101 INPUT
    Regards
    Neha
    Edited by: Neha Shukla on Dec 3, 2008 1:02 AM
    Edited by: Neha Shukla on Dec 3, 2008 1:02 AM
    Edited by: Neha Shukla on Dec 3, 2008 1:06 AM

  • How Can I Set a Javascript Value into an Attribute of BSP PAGE

    Hi
    Can anyone tell me.
    How Can I Set a Javascript Value into an Attribute of BSP PAGE

    Hi Mithlesh,
    javascript runs on client side and you cannot assign the value to a Page attribute directly.
    As a workaround,you can use an Inputfield,hidden if required,and set the value using javascript.Then the form will have to be submit to be able to read the value in onInputProcessing and then can be assigned to any variable.
    In Layout
    <head>
    <script language="javascript">
    function pass()
       txt1 = document.getElementById("ip_mrf");
       txt.value = "hello" ;
    </script>
    </head>
    <htmlb:inputField  id="ip_mrf"
                               value="<%=mrf_number%>"
                               visible="FALSE"/>
    in onInputProcessing
    cha1 = request->get_form_field( 'ip_mrf' ).
    where cha1 is the page attribute
    hope this helps,
    Regards,
    Siddhartha
    Message was edited by: Siddhartha Jain

  • I have bought an iPhone4 and to be able to use it for the first time I connected into a friends itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?

    I have bought an iPhone4 and to be able to use it for the first time I connected into a friends' itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?
    Now I also have a macbook where I can sync my iphone but it doesn't allow me

    first of all only sync it with 1 computers itune account
    second settings->general->store click the appleID box with her appleID in it and log out

  • How can I set up lightroom 5 in my macbook, so that it becomes my default editing program, so that it starts up when I insert my sd card into the mac

    How can I set up lightroom 5, so that it becomes my main / default editing program & that when I insert my sd card into the mac lightroom starts instead of iPhoto .

    Thanks.  Im new to apple, which preference?
    Sent from my iPhone

  • How can I set the desktop image for client computers?

    How can I set the desktop image for client computers using ARD or terminal?

    How can I set the desktop image for client computers using ARD or terminal?

  • Can I set up folders for major classifications of music as opera, country, etc. and then put all the albums with the genre into those folders folders?

    Can I set up folders for major classifications of music as opera, country, etc. and then put all the albums with the genre into those folders folders?

    Hi Richard Bugdal1,
    Welcome to the Support Communities!
    You can't change the folder structure within iTunes, but you can easily change the view to sort by Genre.
    The link below will explain how to do this:
    Apple - Find Out How - Music - iTunes
    http://www.apple.com/findouthow/music/itunes.html#tips-viewoptions
    Cheers,
    Judy

  • How can I set the United States as my country when opening PSE 10?

    How can I set the United States as my country when opening PSE 10 so I don't have to scroll down every time?

    Why do you have to scroll down every time? You should only see the country window the very first time you launch PSE after installing it.

  • Everytime my AppleTV2 enters into sleep modus it requests again the WIFI network password. This is new, where can I set the system to remember the password?

    Everytime my Apple TV 2 enters into sleeping mode it requires my WIFI network password again upon reconnection. This is new, how can I set the system to remember the password?

    Open Mail preferences, click on the Accounts icon in the toolbar then select your mail account, click on the Mailbox Behaviours tab on the right. Set the dropdown menu at the bottom for the Never option.
    However, you cannot change the default options set for a newly created account.

  • My ipad has a password that I can't remember and it's not connected to the internet, so my computer won't recognize it and I know that when all get this figured out that it will be set back to factory state but how do I get it there

    My ipad has a password that I can't remember and it's not connected to the internet, so my computer won't recognize it and I know that when all get this figured out that it will be set back to factory state but how do I get it there

    If you've forgotten the passcode to unlock your iPad then there are instructions on this page for how to reset the iPad (your iPad doesn't need to be connected to the internet) : http://support.apple.com/kb/HT1212
    If your computer's iTunes isnt recognising the iPad when you connect it then have you got a recent version of iTunes installed on your computer ? There are also troubleshooting pages for a device not showing in iTunes on these pages :
    PC : http://support.apple.com/kb/TS1538
    Mac : http://support.apple.com/kb/TS1591

  • Using the States Example how can I set Selected to Maryland Without RowNumber

    Let's use the states example for the sake of everyone having
    the code in front of them. If I am returning a value from the
    database that I am writting out to the application like this
    <%out.write("STATE_NAME"); %>
    how can I set the selected value to that without knowing what
    the row number is, here is my try but I get a few error messages:
    <option spry:if="{name} == '<%out.write("STATE_NAME");
    %>'" value="{name}" selected
    ="selected">{name}</option>
    <option spry:if="{name} != '<%out.write("STATE_NAME");
    %>'" value="{name}" >{name}</option>
    I get double the states and the following in the debug box:
    Caught exception in Spry.Data.Region.prototype.processTokens
    while evaluating: Alabama == Exception:[object Error]
    Caught exception in Spry.Data.Region.prototype.processTokens
    while evaluating: Alabama != '' Exception:[object Error]
    This goes on for as many records as I have in the DB,
    Please let me know how it could be done if it could be done?

    I believe what you guys are looking for is the
    Set
    Default Row Based on Specific Column sample that is on the
    Spry
    Samples Page.
    The problem of using a spry:if="{name} ..." approach is that
    it only makes sure the form select widget is set to what the server
    thinks is the current row in the data set, but it doesn't actually
    set the current row in the data set to reflect this, so the cities
    select is out of sync cause it is defaulting to displaying the
    cities for the first row in the states data set.
    Checkout the sample I mentioned above, it will show you how
    to set up an observer where you can query for the correct row
    immediately after the data is loaded, and then set the current row
    so that everything is as expected.
    --== Kin ==--

  • Trying to choose iCloud backup on my new phone as I lost my previous one but it states"no iCloud backups are compatible with this version" therefore I can't set up my replacement phone! Any suggestions

    Trying to choose iCloud backup on my new phone as I lost my previous one but it states"no iCloud backups are compatible with this version" therefore I can't set up my replacement phone! Any suggestions

    You can't restore a backup that was made on a device running a more recent version of iOS.  If your replacement phone is running iOS 6.0.1 and the one you backed up was running 6.1.2, for example, you would have to update your replacement phone before you could restore to the backup.  If this is the case, update your phone by connecting it to your computer, and selecting Check for Update or Update on the Summary tab of your iTunes sync settings, update the phone and set it up as New.  Then go to Settings>General>Reset, tap Erase All Content and Settings, go through the setup screens again and choose Restore from iCloud Backup.  You should then be able to restore your backup.

Maybe you are looking for

  • Unable to load Packaged App Document Library 0.91 in Apex 3

    I have downloaded packaged application Document Library 0.91 from packaged applications URL and trying to import it into APEX 3.0. In Application Builder I am getting an error message that 'Script has exceeded the maximum limit'. So I tried executing

  • Update Policy for multiple networks with specific DNS servers

    I have a mid size network with 5 locations all with different IP addresses. All sites host their own DNS servers and connect directly through an ISP dedicated VLAN. Main Site 10.1.1.1 255.0.0.0 Remote Site 1 192.168.100.1 255.255.255.0 Remote Site 2

  • HT5312 How can I reset my security questions if I don't have a rescue email address

    How can I reset my security questions if I don't have a rescue email address. Because i just put an itunes card on my account but can't use it because I dont know my security questions. Please help

  • Map simple variable to an abstract interface in BPM

    I'm using a Simple Variable to count all messages comming through a BPM. I want to use this Simple Variable's value in a Abstract Interface. Does anyone know how to map Simple Variables to Abstract Messages? A transformation needs a mapping, and a ma

  • Timing Query Performance in Java

    Hello again everyone, I had previously asked a question concerning timing the execution time of an individual thread, and I have been unable to uncover an acceptable answer. So, instead of threads I may use system processes. Some background... I am w