How do I set a keyboard shortcut to open a new terminal window?

Service -> Keyboard Shortcuts allows me to open the first one, but I would like a keyboard shortcut to open new windows as well.

Hi Raymond,
Terminal already has a keyboard shortcut to open a new window (Command + N).
gl,
kel

Similar Messages

  • Setting up a global shortcut to open a new terminal window

    Alright, so, here's my idea. I would like a new terminal shell to open every time I press f7. I really like this idea, but i just can't get it to work. It would have to be a global shortcut, and i've tried it via the keyboard pane in preferences, but the closest thing I can get it to change the command "new shell" to f7. not quite what I want..... any ideas/help?
    Reposted from MacOSX Tiger forum - told to go here for better answers
    Also, I've tried iTerm, but it's got a ton more stuff that I don't need. And I've looked at visor but it requries simba (or something like that) and I heard a rumor that simba wasn't going to work with lepoard.

    I've thought about quicksilver, but i understand that's it's used to do much more than just that. And, I don't really want to deal with all of quicksilver. Now that might change, but I think I want to stay away from it for now.
    However, butler looks good. I'll play around with it.
    Also, the other application "Fast Scripts" looks decent, but it's shareware and I personally would like to get an entire program free and then donate when I feel props are due. (Just my personal thing.)

  • How do I set up Keyboard shortcuts to match Windows Excel?

    At work I use MS Excel on Windows and I use the keyboard shortcuts a lot.
    eg. Alt+= for sum the cells above
    Alt+I, Alt+R for insert a row
    Alt+D for downfill
    How do I set this up on iWork numbers?
    Also, where could I go to find out how to do this on MS Excel 2008 for Mac?
    Thanks,

    As Yvan said, it is in the help files. The procedure is
    1) Open System Preferences and navigate to the Keyboard section then keyboard shortcuts.
    2) Hit the + to add a new shortcut
    3) Having it apply to All Applications is the default. You may want to use that because otherwise you'll have to do this once for Numbers and once for Excel. On the other hand, it might screw up an existing shortcut in another application if you are using a key combination assigned to something else in that application.
    4) Type in the menu title EXACTLY as it is in the menu. Capitalization and punctuation are important. You don't need to put Insert/Function/Sum, just Sum.
    5) Choose a key combination. Note that some key combinations cannot be reassigned. For instance, Alt+ (actually this is Option=) does not work; it inserts a not equal to symbol. Nor does Command+ (Command=) because it is assigned by Numbers to something else. Control+ will work. You can, however, make a different shortcut for the existing Command= shortcut (Format/Font/Bigger) so there is no conflict.
    6) Click Add.
    Message was edited by: Badunit

  • How do I set the keyboard shortcut for zoom tool to be r-clicking the mouse?

    I want to have the r-click of my mouse be the zoom tool like in Quark Xpress. Can I make the Z shortcut to choosing the Zoom tool instead a r-click? I know how to get into keyboard shortcuts - just dont know what to type in for the new shortcut to make it a r-click. right now its 2 steps to zoom rather than in quark 1. not that I want to go back. lol.
    also, while were talking about migration differences and extra steps, is there a way I can hide guides and set overprint preview in one step? (this is something I do often and was just a simple F7 in quark)
    so these are just 2 things that take 2 steps in ID but one in quark. not that I want to go back. lol

    OK, I've been doing this since CS2 with no need for a script. To hide guides and show preview...
    1) Go to 'Keyboard Shortcuts'
    2) Go to 'Product Area - Tools'. Yes, you'd think it would be in Views! But the buttons for this is at the bottom of the Tool Bar.
    3) Go to 'Commands: Toggle view setting between default and preview'
    4) Click your cursor inside 'New Shortcut' and hit the key you want or type it in. I choose the unused F2 key
    5) Click the 'Assign' button and you are set. Hit the key to switch back and forth.
    As for your mouse Zoom, use Power Zoom as described above or just hold down the Alt/Option button in 'Hand' mode and use the scroll wheel to zoom in and out. Not one step but it works!
    Now you won't miss Quark at all!

  • How to set a keyboard shortcut for open with VLC player

    Hey everyone!
    I have reffered the earlier discussion upon creating a shortcut for the open with function and the below is the correct answer for it by using applescript editor submitted by Barney. However, I couldn't get past the 1st paragraph. It all just went over my head. Especially the "open (thefilelist) " part. Which filelist is being referred to here? All I want is a shortcut for opening files with .avi, .mpeg, and .3gp exts. with VLC player. Please help me out by providing the exact stuff I need to paste in the applescript.
    Thanks
    Ok, this one works both on the finder selection and as a droplet:
    property htmlList : {"htm", "html"}
    property htmleditor : "TextWrangler"
    property textList : {"txt", "text"}
    property texteditor : "TextEdit"
    --property myappextlist: {"ext1","ext2","ext3"}
    -- property myappsname: "myAppName" on run
    tell application "Finder"
    set the fileList to the selection
    repeat with aFile in fileList
    set theFile to aFile as string
    my myOpen(theFile)
    end repeat
    end tell
    end run on open (thefileList)
    repeat with i from 1 to number of items in thefileList
    set this_item to item i of thefileList
    my myOpen(this_item)
    end repeat
    end open on myOpen(aFileAlias)
    set theItemInfo to info for (alias aFileAlias)
    if not folder of theItemInfo then
    set theExtension to name extension of theItemInfo
    if theExtension is in htmlList then
    tell application htmleditor
    open aFileAlias
    activate
    end tell
    end if
    if theExtension is in textList then
    tell application texteditor
    open aFileAlias
    activate
    end tell
    end if
    -- if theExtension is in myappextlist then
    -- tell application myAppName
    -- open this_item
    -- activate
    -- end tell
    -- end if
    end if end myOpen

    Luds.R wrote:
    I have reffered the earlier discussion
    I have the feeling of dropping in in the middle of the conversation.
    Anyway, try this
    --script begins
    property myVLC : "/Applications/VLC/VLC.app"
    property myTypes : {"avi", "mpeg", "mpg", "3gp"}
    on run
              my vlcTest(myVLC)
              tell application "Finder" to set fileList to selection
              my vlcOpen(fileList)
    end run
    on open fileList
              my vlcTest(myVLC)
              my vlcOpen(fileList)
    end open
    on vlcTest(myVLC)
              try
      POSIX file myVLC as alias
              on error
                        display dialog "Sorry, could not locate VLC. Please add the correct POSIX path to the script." buttons {"Cancel"} default button 1
              end try
    end vlcTest
    on vlcOpen(fileList)
              tell application "Finder"
                        repeat with i in fileList
                                  if name extension of i is in myTypes then open i using (POSIX file myVLC)
                        end repeat
              end tell
    end vlcOpen
    --script ends

  • How do i set it to yahoo when opening a new tab??

    i have windows 7 home premium,, when opening a new tab ,, why is it always blank... how can i change it to be automatically in yahoo or goggle??

    https://addons.mozilla.org/en-US/firefox/addon/newtaburl/

  • How can I set firefox in order to open a new tab for every new search?

    Every search i've done since the last update, Firefox open the new search in the old tab. I've already fixed the boolean valor in browser.search.openintab to true in about:config, but it's working only with google search (and not, i.e. with youtube search).

    Separate Issue;
    Your System Details shows;
    Installed Plug-ins
    Adobe Shockwave for Director Netscape plug-in, version 12.0.9.149
    Adobe Shockwave for Director Netscape plug-in, version 12.1.3.153
    Having more than one version of a program may cause issues.
    Grab the uninstaller from here:
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html Uninstall Flash Player | Windows]'''
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html Uninstall Flash Player | Mac]'''
    Then reinstall the latest version.
    Flash Player '''Version 17.0.0.134<br>https://www.adobe.com/products/flashplayer/distribution3.html'''
    Shockwave Director '''Version 12.1.7.157 http://get.adobe.com/shockwave/'''

  • How to get links from other applications to open a new Firefox window

    I have non-Web browser applications that want to open browser windows. I have Firefox as my default Web browser. When these other applications pass a URL to Windows, Windows passes the URL to Firefox. Unless there are no Firefox windows running, Firefox then opens the URL in a new tab of the most recently used Firefox window. I would prefer that Firefox open a completely new window. Where can I find the setting for this behavior?
    Thank you,
    Dan

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    See also:
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Preferences_not_saved

  • Keyb shortcut to open "now playing" artwork window?

    I would like to open the artwork in the bottom left corner with a keyboard shortcut but it seems like that is not supported.
    I can close it with <alt><F4> ...
    Does anyone know how?
    BR, B-O

    Barney-15E,
    On the comments to the second article you posted, some people confirmed they can use the Cmd-Opt-Spacebar as a global default shortcut to open a new Finder window (not Spotlight)  — http://contented.qolc.net/articles/osx-global-shortcut-key-new-finder-window/#co mment-61887, users thesmarti and Bradley. Moreover, users CT and Avinash in this forum confirmed that too.
    I know that "tapping the Finder icon in the Dock opens a Finder window if one isn't already opened", but as you say, it only does it if one Finder window isn't open. If you have one open, then you have to right click on the icon, etc. And if you have an application in fullscreen, the icon is not there and it takes a while for it to appear... Not ideal.
    I guess I could solve this using Automator as you suggested, but I'm frustrated because this shortcut used to work on my Mac when I bought it and it stopped working who knows why after some months.

  • I have a Pro that's about five years old.  It doesn't have a hash tag on the keyboard which is useless for Twitter.  How do I set up a shortcut.  Help is useless

    I have a Pro that's about five years old.  It doesn't have a hash tag on the keyboard which is useless for Twitter.  How do I set up a shortcut.  Help is useless
    Hold on, found it - Alt 3 - thanks to old messages. 

    hello, for the old sync system in firefox 28 and below you also had to sign up with a mail address and password originally - to connect firefox to the old account you would need to have all those three pieces (mail, password & recovery key) available to you unfortunately...

  • How do I export/import keyboard shortcuts to a text file

    How do I export/import keyboard shortcuts to a text file?
    It would be nice to export them, edit and/or add to them in a text editor on my iMac, then import them back into iPhone and iPad.

    You can backup the bookmarks to a file, then copy that file to the new computer and import them, for details see [[Backing up and restoring bookmarks]].
    You can copy more than just the bookmarks. The user data, such as bookmarks and passwords, are stored in the profile folder. You can copy the data manually by copying the contents of the profile folder, for details see [http://kb.mozillazine.org/Profile_backup Profile backup - MozillaZine Knowledge Base] or [[Backing up your information]].
    There are some add-ons and utilities that can make this process easier. The first one is the [https://addons.mozilla.org/en-US/firefox/addon/2109/ FEBE] add-on which can be used to copy a profile. Another option is the free [http://mozbackup.jasnapaka.com/ MozBackup] utility.

  • How do I customize Firefox keyboard shortcuts without using an add-on?

    I want to modify shortcuts '''without using add-ons, extensions, or plug-ins'''. In other words, I would like to know how to modify a keyboard shortcut in a way that does '''not '''involve installing a plug-in, extension, or add-on. So, an answer that states that I should install this extension, or that plug-in is a useless answer and will be rated unhelpful as will indicate that you didn't read the question.
    Again: How do I modify a keyboard shortcut '''WITHOUT '''installing any add-ons? For example, how would I change the homepage shortcut from Alt+Home to something else, without installing any add-ons?

    I actually made this happen a few versions back, but I don't remember how I did it. I have looked through the about:config entries and can't find it. I looked through the ...xul keybindings and did not find it. I know it can (or recently could) be done, but I don't remember how.
    The problem with the existing shortcut is that on a laptop, the Home button is frequently sharing space with another key. It is a hassle to have to access Home and the alt key when accessing Home is itself an operation.
    The problem with add-ons is that I cannot, in a reasonably quick momentary glance, determine their safety now, nor in the future as they are updated. Since Mozilla does not certify add-ons as safe, I prefer to avoid them.
    Other programs don't present such difficulties with simple things like modifying shortcuts. It's pretty standard for that to be accessible from a Customize submenu in one of the main drop-downs.

  • Can you create keyboard shortcuts to open applications?

    Hi everyone,
    I have been trying to create some keyboard shortcuts to open individual applications but they haven't been working. For example, to open up iTunes, I assigned Command+i. But I'm starting to think this isn't possible in OS X. Is this true? Any suggestions on how to accomplish this?
    Thanks,
    Dustin

    The Apple Help for Keyboard Shortcuts in "System Preferences" (the Question Mark "?" down at the bottom) says the following: "Note: You can create keyboard shortcuts only for existing menu commands. You cannot define keyboard shortcuts for general purpose tasks such as opening an application or switching between applications."
    I use a program called "Quicksilver" from blacktree.com . It is not easy to get used to, but it is quite powerful. To open a program (once Quicksilver is installed properly), you can either set a keyboard shortcut such as "Control-i" (or whatever you want), or use their universal opener "Control-space" and type the first letter or two of the application you want to open and then hit or type open.
    My favorite feature of Quicksilver so far is the ability to recover easily any number of previous copies to your clipboard. How many times have I copied something and then before pasting it copied something else by mistake and lost the first thing I copied?!? Quicksilver lets me hit "Control-space" and then open a clipboard history window and scroll down to whatever I want to paste (I have it set for 100 items, pretty excessive, I know!). Cheers!

  • How do i set up my magic trackpad to my new mac mini

    how do i set up my magic trackpad to my new mac mini

    Go to system Prefences>Tackpad and then turn on the drackpad and follow instructions when it is discovered.
    If necessary
    Troubleshooting wireless mouse and keyboard issues

  • Is there a keyboard shortcut to open the Services submenu?

    I'm trying to learn how to use Services and Automator.  One thing that seems to be missing is a keyboard shortcut to open the Services submenu (in any application)  I'm guessing after highlighting the object of interest the shortcut starts with option but what comes next I haven't the foggiest.
    Gene W.
    (intel iMac running OS 10.6.7)

    @leroydouglas.  Your reply although factual is not in answer to my question.
    for example: I'm reading my question and your reply on a web page using Safari (with OS 10.6.7)
    If I select (highlight) a portion of any text in my question (or your reply) and then right-click (control-click) I get a contextual menu.  While the same text is highlighted, I go up to Safari's menu bar and pull down to and select-click Services submenu, I get another menu. Similar to the result of right-click, but different.
    I just thought that a feature of OS 10.6.x, Services, which relies so heavily on keyboard shortcuts would have a keyboard shortcut to open it.  So, far that shortcut has eluded me.
    TIA

Maybe you are looking for

  • Facebook Notificati​ons

    Okay, when I first got my BB I installed Facebook and everything was working perfectly.  The last three days I have not been receiving notifications.  I checked my Facebook settings and all my notifications are set to "on", my email address is correc

  • Inserting and manipulating data in object tables resulting from inheritance

    Dear All, Let's say we have the following definitions: create type t1 as object(x number) not final; create type t2 under t1(y number); create table t1t of t1; create table t2t of t2; If I want to insert a new row in t1t I can do insert into t1t valu

  • I just downloaded mountain lion and now my google chrome and spotify wont open

    I just downloaded mountain lion and now my google chrome and spotify wont open.  Any help would be appreciated.

  • Doubt about Message Interface

    Hi Experts, How many message interfaces we have to create per scenario.If it is a synchronous  or Asynchronous.One is enough or should we create two Regards Khanna

  • AppleWorks 6 crashes when I use the keyboard...

    ...in word processing, spreadsheet, or a drawing! I can draw or create a field, but as soon as I attempt to type within any document, e.g., enter dimensions in a drawing, AW quits instantly. It makes no reference to the document when I start up again