Open urxvt in the current working thunar folder

I had a thunar custom action defined for opening a terminal in the current directory but it was opening xfce's terminal emulator called terminal
What would be the command for opening urxvt in a given directory ? sorry for the noobish question

fuscia wrote:
stonecrest wrote:sh -c "cd %f && urxvt"
can't help being ignorant: what is that?
A shell script for entering the working directory and launching urxvt.
Try it and see if it actually works.
I think I tried something like that but wasn't successful...
Last edited by moljac024 (2008-09-26 12:28:43)

Similar Messages

  • Content open up in the current window

    When I add content in the content area but when I click the link it opens up in the current window
    s oppose to if it had been URL Link there is an option to open up in current window.
    As I was searching in metalink I found somebody from Oracle had posted this :
    ### What were you trying to accomplish when the problem occurred? ###
    Author : Jerry Silver Type : N/A
    Date : Jun 6, 2001 11:22 PT
    Here's a solution for Portal 3.0.8 or later that allows you to open a file in
    a new browser window. It requires that you create a custom item type, and use a
    procedure to display a link to the file.
    1. Create the following procedure. You can create it in any schema, but the
    schema has to have select privilege on the view 'WWSBR_ALL_ITEMS' in the portal
    schema. In this example, the portal schema is PORTAL30. If you're running
    version 3.0.8, you'll also need to apply the patch to bug 1724250.
    Create or Replace PROCEDURE OPEN_FILE (p_itemid IN NUMBER) as
    fileURL varchar2(1024);
    baseURL varchar2(256) := '/pls/portal30/docs/';
    begin
    select baseURL | | filename into fileURL
    from portal30.wwsbr_all_items
    where id = p_ItemId;
    htp.p ('Open File');
    EXCEPTION
    when NO_DATA_FOUND then
    htp.p('Document not found or access denied');
    when others then
    htp.p(sqlerrm);
    end;
    The procedure generates a link to the item filename with a target of "_blank",
    which opens the file in a new browser window. Replace the baseURL attribute
    value with the correct Database Access Descriptor (DAD) and Document Access
    Path ("/docs") for your site.
    2. Grant execute on the procedure to the portal public schema. The name of this
    schema is <portal schema>_PUBLIC. So if your portal schema is PORTAL30, grant
    execute on the procedure to PORTAL30_PUBLIC.
    3. Create a custom item type, using the base item type of "File". I recommend
    that you create the type in the Shared Objects content area, so it can be used
    in other content areas (from the Navigator, go to the Content Areas tab, select
    Contents for Shared Objects, Custom Types, and Item Types - Create). Edit the
    Text continued in next action...
    new type and go to the Procedures tab.
    4. In the Procedure Call Properties, enter:
    Type: PL/SQL
    Procedure Call: <your procedure schema>.OPEN_FILE
    Link Text: Open File (it doesn't matter what you put here - it only displays if
    "Display Procedure Results With Item" is unchecked.)
    Check "Display Procedure Results With Item"
    5. Under "Pass Attributes as Parameters", enter:
    Attribute: Item Id
    Pass As: p_itemid
    (Notice how you can pass most of an item's attributes to a procedure. You can
    take advantage of this feature to write procedures that give you precise
    control over the rendering of your items).
    6. In the properties for the content areas in which the new type is to be used,
    go to the Items tab. Specify that you want the new type to be visible. You may
    want to hide the base File item type, so users won't be confused by two
    different item types for files.
    7. Edit the folder style for the content area. Go to Folder Layout. Edit the
    region properties for each region in which you will be using the new item type.
    For each region, replace "Display Name or Image" with "Display Name". "Display
    Name or Image" will render the Display Name as a link to your file that opens
    the file in the same browser window. "Display Name" simply renders the display
    name as text, with no link.
    8. Now you can create items of the new item type. Each item's Display Name will
    appear next to a link that says "Open File". Clicking the link will cause the
    file to open in a new browser window.
    Hope you find this useful.
    But after doing this the issue with this still I am able to see this as link on the page but when I
    click on it opens up in current window. But when I click on the header bar that
    displays Content Area name then it takes to the content are manager. Here there is
    a link that shows OPEN_FILE link and then it opens up in a new window.
    But I don't want user to go inside the content manager to see the content to open up in a new window.
    I want this same functionality to be there on the page rather then in the content area navigator
    Thanks

    fuscia wrote:
    stonecrest wrote:sh -c "cd %f && urxvt"
    can't help being ignorant: what is that?
    A shell script for entering the working directory and launching urxvt.
    Try it and see if it actually works.
    I think I tried something like that but wasn't successful...
    Last edited by moljac024 (2008-09-26 12:28:43)

  • Firefox won't open mailto links in a new window like it used to...it just opens gmail in the current tab.

    I recently upgraded firefox and now whenever I click a mailto link it opens gmail in the current tab rather than in a new window. How can I get it to open email links in a new window.

    My MAILTO problem was finally fixed on the June 29, 2012 Firefox version 14 beta 10 release.

  • What is the definition of open orders for the current month ??

    Hi all,
    I need to calculate Net Sales for the open orders of the current month in my report.
    Can you please tell me the condition required to be put on Net Sales for Open Orders.
    Which characteristic is actually required? Should I restrict the Net Sales by  the Overall Delivery Status of ordered items(0dlv_stso)?
    With Thanks and Regards,
    Mukul Singhal,
    Software Engineer,
    SAP-BW Practice

    http://www.apple.com/batteries/iphone.html  look here Apple-batteries-iphone.

  • Details of open invoices for the current year/ material price analysis

    Hi,
    I'm very new to SAP SD,MM modules. Can any one help me in the following of my requirements?
    1. How to get the details of open invoices for the current year? Which table should I look into?
    2. I have to create a report to display material price analysis. How should I do that?
    3. How to develope a report to list out all the Open Sales Order with earliest ship date and requested ship date
    4.How to create an interactive report for displaying plant status to know the status of a particular material
    5. How to develope a report on Sales Order displaying Sales order Number, Sales order date, Material, PO Date and Customer requested date
    Thanks in advance!!
    Uma.
    Message was edited by:
            Uma Ravi

    Hi Ravi,
    for 3, 4, 5 --> u can go through the code ...
    REPORT ZEX2  MESSAGE-ID arc NO STANDARD PAGE HEADING.
    Tables :kna1,vbak.
    SELECT-OPTIONS : so_vkorg FOR  vbak-vkorg OBLIGATORY,
                     so_vtweg FOR  vbak-vtweg OBLIGATORY,
                     so_spart FOR  vbak-spart,
                     so_kunnr FOR  kna1-kunnr.
    DATA : BEGIN OF sales_open OCCURS 0 ,
           vbeln LIKE vbak-vbeln,
           auart LIKE vbak-auart,
           kunnr LIKE kna1-kunnr,
           bstnk LIKE vbak-bstnk,
           lfstk LIKE vbuk-lfstk,
           fkstk LIKE vbuk-fkstk,
           gbstk LIKE vbuk-gbstk,
           END OF sales_open.
    DATA : BEGIN OF itm_sales OCCURS 0,
           vbeln LIKE vbap-vbeln,
           posnr LIKE vbap-posnr,
           matnr LIKE vbap-matnr,
           kwmeng like vbap-kwmeng,
           lfsta LIKE vbup-lfsta,
           lfgsa LIKE vbup-lfgsa,
           fksta LIKE vbup-fksta,
           fksaa LIKE vbup-fksaa,
           gbsta LIKE vbup-gbsta,
           END OF itm_sales.
    DATA : l_kunnr LIKE kna1-kunnr,
           l_vkorg LIKE vbak-vkorg,
           l_vtweg LIKE vbak-vtweg,
           l_spart LIKE vbak-spart.
    DATA: v_statusl(20) TYPE c,
          v_statusb(20) TYPE c,
          v_statusf(20) TYPE c,
          v_statusg(20) TYPE c,
          v_status(20) TYPE c,
          v_field(1) TYPE c.
    data : v_openqty like vbap-kwmeng.
    **Selection Screen Validations.
    AT SELECTION-SCREEN.
      PERFORM validations.
    *&      Form  Validations
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM validations.
    **Customer
      IF NOT so_kunnr[] IS INITIAL.
        SELECT SINGLE kunnr INTO l_kunnr
               FROM kna1
               WHERE kunnr IN so_kunnr.
        IF sy-subrc NE 0.
          MESSAGE e002 WITH text-005.
        ENDIF.
      ENDIF.
    **Sales Organization
      IF NOT so_vkorg[] IS INITIAL.
        SELECT SINGLE vkorg INTO l_vkorg
               FROM tvko
               WHERE vkorg IN so_vkorg.
        IF sy-subrc NE 0.
          MESSAGE e003 WITH text-006.
        ENDIF.
      ENDIF.
    **Distribution Channel
      IF NOT so_vtweg[] IS INITIAL.
        SELECT SINGLE vtweg INTO l_vtweg
                FROM tvkov
                WHERE   vkorg IN so_vkorg
                 AND    vtweg IN so_vtweg.
        IF sy-subrc NE 0.
          MESSAGE e004 WITH text-007.
        ENDIF.
      ENDIF.
    **Division
      IF NOT so_spart[] IS INITIAL.
        SELECT SINGLE spart INTO l_spart
                FROM tvta
                WHERE   vkorg IN so_vkorg
                AND     vtweg IN so_vtweg
                AND     spart IN so_spart.
        IF sy-subrc NE 0.
          MESSAGE e005 WITH text-008.
        ENDIF.
      ENDIF.
    ENDFORM.                    " Validations
    Top-of-page.
    PERFORM sales_top_of_page.
    Start-of-selection.
    PERFORM sales_sel.
    *&      Form  sales_sel
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sales_sel.
    SELECT vbeln auart kunnr bstnk
         lfstk fkstk gbstk
         INTO TABLE sales_open
         FROM vbakuk
         WHERE vkorg IN so_vkorg
         AND   vtweg IN so_vtweg
         AND   spart IN so_spart
         AND   kunnr IN so_kunnr
         AND gbstk NE 'C'.
      LOOP AT sales_open.
        WRITE:/4 sy-vline,
               5 sales_open-vbeln HOTSPOT ON COLOR 2 INTENSIFIED OFF,
               16 sy-vline,
               17 sales_open-auart COLOR 2 INTENSIFIED OFF,
               27 sy-vline,
               28 sales_open-kunnr COLOR 2 INTENSIFIED OFF,
               40 sy-vline,
               41 sales_open-bstnk COLOR 2 INTENSIFIED OFF,
               55 sy-vline,
               56 sales_open-lfstk,
               76 sy-vline,
               77 sales_open-fkstk,
               96 sy-vline,
               97 sales_open-gbstk ,
               117 sy-vline.
        HIDE sales_open-vbeln .
      ENDLOOP.
    ENDFORM.                    " sales_sel
    *&      Form  sales_top_of_page
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sales_top_of_page.
      WRITE:/4 sy-uline(114),
         50 'OPEN SALES ORDERS' COLOR 7 INTENSIFIED ON .
      WRITE: /4 sy-vline,
              5 'SalesOrder' COLOR 1 ,
              16 sy-vline,
             17  'OrderType' COLOR 1,
             27  sy-vline,
             28  'Customer' COLOR 1,
             40  sy-vline,
             41  'PoNumber' COLOR 1,
             55  sy-vline,
             56  'Delivery Status' COLOR 1,
             76  sy-vline,
             77  'Billing Status' COLOR 1,
             96  sy-vline,
             97  'Processing Status' COLOR 1,
             117  sy-vline .
      WRITE:/4 sy-uline(114).
    ENDFORM.                    " sales_top_of_page
    AT LINE-SELECTION.
      SELECT       a~vbeln
                   a~posnr
                   a~matnr
                   a~kwmeng
                   b~lfsta
                   b~lfgsa
                   b~fksta
                   b~fksaa
                   b~gbsta
                   INTO TABLE itm_sales
                   FROM vbap AS a JOIN vbup AS b
                   ON a~vbeln EQ b~vbeln
                   AND a~posnr EQ b~posnr
                   AND b~gbsta NE 'C'
                   WHERE a~vbeln EQ sales_open-vbeln.
      IF NOT sales_open IS INITIAL.
        LOOP AT itm_sales.
          at end of vbeln .
          sum.
          v_openqty = itm_sales-kwmeng.
          endat.
          WRITE:/5  itm_sales-vbeln,
                    itm_sales-posnr,
                    itm_sales-matnr,
                    itm_sales-kwmeng,
                    itm_sales-lfsta,
                    itm_sales-lfgsa,
                    itm_sales-fksta,
                    itm_sales-fksaa,
                    itm_sales-gbsta.
        ENDLOOP.
      ENDIF.
    skip 2.
      write:/  'open Quantity for the order is ', v_openqty .
    for 1.
    open invoices..
    SELECT vbeln
             fkart
             kunag
             gbstk
             INTO TABLE it_billing_h
             FROM vbrkuk
             WHERE vkorg IN so_vkorg
             AND vtweg IN so_vtweg
    *        AND spart IN so_spart
             AND kunag IN so_kunnr
            and   year in p_year                  ---->"parameter for year..
             AND gbstk NE 'C'.                   "----> open invoices
    for 2..
    2. refer TABLES mara, EINA ..
    regards,
    VIjay

  • How to get highest number of open cursors within the current calendar day

    Hi all ,
    i need to know how to get the highest number of open cursors within the current calendar day.
    Thanks ,

    823030 wrote:
    the issue is my customer is getting the error ORA-01000: maximum open cursors exceeded and we need an sql statment that gets the following values :
    -highest number of open cursors experienced in the current calendar day.
    -current open cursors
    -and maximum open cursorsThis error is rare. It happens when
    a) the value of the open cursor parameter is set extremly low (default is something like 1000). Low would be something like 10.
    b) <strike>you have many concurrent users(=sessions) and </strike>the application does not use bind values
    In this case each select will open a new cursor, instead of reusing it.
    c) you have a select that opens a cursor for each line. This can happen with a statement where you have the CURSOR keyword somewhere in the select or where clause. Those cursors will be closed when the select is finished. But during the run time of the select, all cursors stay open.
    To track the number of "open cursors" during the day you would need to implement some monitoring. Maybe based on the view that was already mentioned.
    Edited by: Sven W. on May 16, 2011 2:30 PM - since the parameter is on session level, other open cursors should not influence it much.

  • How to list the top 10 largest files in the current working directory ?

    How can I list the top 10 largest files in the current working directory in Solaris ?

    execute below....to get the large files in order.. change the <FS>
    find /<FS> -type f -size +1024 -ls | awk '{print $11, $7}' | sort -rn +1 | awk '{print $1, $2/1024/1024 "MB"}' | /bin/more

  • How can I make new tabs open next to the current tab?

    New tabs are advertised in Firefox 5.0 as being set to open next the the current tab by default. Mine, however, do not do this. They open to the right of the last tab, necessitating a lot of tab-scrolling, and a minor waste of time.
    I have not installed the extension that forces the tab behaviour I'm currently witnessing.
    Is there a kind soul out there with any suggestions for how I can get my new tabs to appear next to the tab I'm working on?

    Tabs that are "related" to the current tab, like the same domain, open to the right of the current tab. Other links that are from other domains open at the right end of the tab strip.
    The pref for that actions is '''browser.tabs.insertRelatedAfterCurrent'''.
    To have them all open to the right of the current tab would need an add-on, if that action even exists in an add-on.

  • On websites which open pop-under windows, Firefox 4 seems to be opening these over the current window instead of under. Is this a bug or an intentional feature?

    I have noticed a problem on FF4 when browsing sites that open pop-under windows on a user action. With all other browsers (including FF3) these open underneath the main window, but on Firefox 4 they open over the top - acting as pop-ups and not pop-unders.
    While pop-unders are annoying, it is even more annoying to have them keep appearing as pop-ups instead.
    I have run some tests and the following code successfully opens a pop-under on all browsers except Firefox 4.
    It appears that window.focus() is not correctly bringing the current window to the top.
    Example code:
    var w = window.open('http://www.mydomain.com/', 'mywin', 'width=400,height=300,toolbar=1,menubar=1,resizable=1,scrollbars=1');
    if(w){
    w.blur();
    window.focus();
    }

    This is normal. Firefox 4 has disabled the default "window flip".
    - go to adress about:config
    - accept and search dom.disable_window_flip set to false;
    And popunder, blur/focus javascript function will be back ;)

  • While opening a new tab via the Alt + Enter command, is it possible to make it open next to the current tab, and not in the end?

    Any insight on how to achieve this will be very welcome.

    There is not a built-in setting for opening new "unrelated" tabs anywhere except at the end of the tab bar.
    Various add-on authors have tackled this request over the years. It's not really clear to me which of these extensions still work, but you might check the reviews and see what you think. (I haven't tried these myself)
    * Tab Control: https://addons.mozilla.org/en-US/firefox/addon/tab-control/
    * Tab Utilities (updated test versions available on the "All Versions" page): https://addons.mozilla.org/EN-US/firefox/addon/tab-utilities/
    * Tab Utilities Phoenix (someone else is updating Tab Utilities, too): https://addons.mozilla.org/en-US/firefox/addon/tab-utilities-phoenix/

  • Open link onto the current page in a region?

    Was wondering how i would open a website onto my Apex page.
    so for example...
    i have a link linking to http://somewebsite.com in my apex page
    when the link is click the page would populate within a region in apex which now let the user use that website within apex. (not redirecting to the url itself or popping up a new tab)
    *I hope that make made sense...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Thanks!
    Was wondering.. how do i make it so this error message is default to "no" if that's possible. if other people were to use it.
    "Do you want to view only the webpage content that was delivered securely?"
    Im using IE 8 at the moment
    Edited by: PandaOracle on Feb 13, 2012 10:48 AM

  • Settings of the current work environment desincronizará the replacement and the original item

    This problem occurs when processing my composition, I asked to define the first frame of the composition as the start of the work environment but do not know how .. who helps me please

    a.) Move your playhead to the beginning of the work area and press the B key to set the beginning of your work area.
    b.) Move your playhead to the end of the work area and press the N key to set the end of your work area.

  • How can I access the Tabs page in the current window, without opening a new tab?

    I like the new Tabs page. I'd like to open it in the current window, without the need of opening a new tab or window.
    Is this possible?

    You can make a bookmark and set the location to about:newtab to open that page in the current tab.

  • Firefox opens all links in the current tab.

    firefox used to open links from google in the same tab while having links like gyazo links or anything like that open in a new tab. similar to how google chrome does it. then i reset firefox and now when i try to open links it opens them in the current tab. i know that i can right click and open in a new tab but it gets annoying doing that over and over again. is there anyway i can put it back how it was?

    Most likely not. As far as I know, the decision to open in a new or current tab by default comes from the webpage, not the browser. However, there's an easy way to do this.
    1. Try clicking the middle mouse button (the wheel). This is a built-in shortcut in Firefox to open the link in a new tab.
    2. You could try an extension. https://addons.mozilla.org/en-US/firefox/addon/open-link-in-new-tab/
    Other than that, I don't know.

  • Opening pages in new tab from Bookmark Folder

    From my Bookmark bar, I can open up a bookmark in a new tab by Cmd-clicking on it--just like any ol' regular link. But when the bookmark is in a folder, Cmd-clicking opens up in the current tab. I'd like it to open in a new tab. Am I doing something wrong? I'd hate to think I have to open up a new tab and then open the bookmark...

    Hi Brian,
    You're not doing anything wrong - it just doesn't work the way most people would expect.
    Send feedback to Apple via Safari menu -> Report Bugs to Apple...

Maybe you are looking for