Search:

Type: Posts; User: Freelance Physicist; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.14 seconds.

  1. Replies
    4
    Views
    1,330

    [ubuntu] Re: Mint Menu Doesn't Work On 11.04

    The Webupd8 team has ported the Mint Menu to Ubuntu. From http://www.webupd8.org/2010/05/install-linux-mint-main-menu-mintmenu.html :



    Despite what the page says, the team has updated the ppa...
  2. Re: Problem with a bash script calling an external script

    You could use
    pkill <program-name> to kill the program by name instead of PID.

    So, to modify the above program:


    #!/bin/bash

    while : # while(true) infinite loop
    do
  3. Re: Problem with a bash script calling an external script

    Does the perl script have options for running a certain length of time? If it does, you could just create a simple bash script like this:



    #!/bin/bash

    while : # while(true) infinite loop...
  4. Replies
    0
    Views
    315

    [all variants] Define new :command in vim

    What I want to do is type the following vim colon command

    :latexquotes
    and have vim run the following two commands

    :%s/"\</``/g
    :%s/"/''/g

    How do I define this command?
  5. [ubuntu] Re: How to browse folders to choose a program to "open with"

    It would be easier to help you if you specified which program you want to use and which program you want to open.
  6. Replies
    5
    Views
    6,429

    [ubuntu] Re: Artist Sort Order in Rhythmbox

    No. I've read the developer discussions regarding this and the consensus was that there would be no way to account for multiple languages. You can select multiple files within rythmbox using...
  7. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    The problem with this solution is that clicking on links within emails will open up the gmail page instead. %u stands for the link you want to open, not just the link to open when you click on the...
  8. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    That's odd. I'm not sure what's going on with that. You could try deleting the gmail cookies in firefox and then logging in one more time through firefox before trying again through checkgmail. If...
  9. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    Could you post the commands you use to start checkgmail on startup?
  10. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    Which problem isn't fixed?
  11. [ubuntu] Re: Is it possible to "print to jpeg" (instead "print to PDF")?

    No, but you can create one. Go to System->Preferences->Keyboard shortcuts and click on Add, then fill in the boxes. For Name, I use "Take a screenshot with options" and for Command, use
    ...
  12. [ubuntu] Re: Is it possible to "print to jpeg" (instead "print to PDF")?

    I think it would be easier to take a screenshot of the spreadsheet you want to turn into a jpeg. If all the cells you want to print are visible on screen, you can just push the PrintScreen button on...
  13. [ubuntu] Re: GIMP wont load after installing plugins

    What happens if you run gimp from the command line (Applications->Accessories->Terminal)?
  14. [ubuntu] Re: GIMP zoom level dropdown box missing!

    Is the entire bottom part of the window gone, including the part that contains the name of the active layer, the mouse position coordinates, and the unit selector? If it is, choose "Show Statusbar"...
  15. [ubuntu] Re: Is it possible to "print to jpeg" (instead "print to PDF")?

    There might be a better/easier way. What exactly are you trying to convert into a jpeg?
  16. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    If you want to use the profile feature, you have to use the -profile= option every time. So, change the command in the startup dialog to

    checkgmail -no-login -profile=home
    Then create new...
  17. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    You type these commands into the terminal. If you use Alt+F2, you need to type each version of checkgmail on their own lines (no semicolons). Or, if you want checkgmail to start when the computer...
  18. Replies
    36
    Views
    11,095

    [ubuntu] Re: best gmail/mail notifier?

    @Rubicon421

    Your problem with going directly to your gmail page is solved by starting checkgmail with the -no-login option. You may have to login to the gmail web page one more time after that. ...
  19. Replies
    4
    Views
    725

    Re: Downsizing Bulk Images

    You can also install the imagemagick package which contains a lot of tools for working with images on the command line. In your case, the 'convert' command would suit your purposes. If all of your...
  20. Replies
    5
    Views
    6,429

    [ubuntu] Re: Artist Sort Order in Rhythmbox

    These options allow you to specify an alternate name for artists and albums for the purpose of ordering them alphabetically in the browser and song list.

    For example, I have an mp3 with the song...
  21. Replies
    4
    Views
    465

    Re: Bash Abuse

    Thanks, jpkotta. That makes sense. Too bad, using $((--a)) twice would have been sneakier than $((a-1)) and $((a-2)). Ah, well.

    @falconindy: It's like the c++ operators. $((--foo)) decrements...
  22. Replies
    4
    Views
    465

    Bash Abuse

    So, occasionally, I like to write programs in inefficient ways just to watch the computer thrash around (especially if the code becomes rather obfuscated in the process (I don't know what's wrong...
  23. [ubuntu] Re: Z22 Palm locks after karmic install

    I was just having the exact same problem after upgrading to Karmic (freezing, houndstooth pattern). I followed the directions from your post here and everything worked.

    Essentially,

    Double...
  24. Re: checking spelling of latex file using aspell

    Wouldn't a better way be to make a bash script that accepts arguments? This way you wouldn't have to edit the script every time you wanted to spell check a different file.

    Something like this:
    ...
  25. Replies
    3
    Views
    502

    [ubuntu] Re: Launch script with user input

    Essentially, kpkeerthi is showing you the beginnings of a BASH script, which you can think of as a list of commands to be executed. Once you learn a few commands you can input into a terminal,...
Results 1 to 25 of 34
Page 1 of 2 1 2