How can i make xterm look like.... (rab's xterm)

It will be for my uxterm, but the defaults for xterm will be fine, thanks
or rab if you could share your .Xdefaults that would be ownage.

Where is this screenshot from? Ask the user for their ~/.Xdefaults file, and copy the color settings you want to copy.

Similar Messages

  • I don't like the new layout. How can I make it look like it did before this unwanted update?

    I don't want to just reinstall the older version, since I'll be constantly refusing update requests and will lose any new security updates. I just want to have the layout I had before FF changed it without informing me in advance. Otherwise I will switch to a different browser. I'm a patient man, so I will give FF 24 hours to correct this unwanted annoyance before switching over to the competition.

    You can make Firefox 4 look and behave more like Firefox 3.6, for details see http://www.computertechtips.net/64/make-firefox-4-look-like-ff-3-6

  • During installation of the NI-VISA 2.01 driver I get an error that tells me that my file (NICVISA.DPT) doesnt look like a tar archive. How can I make it look like a tar archive or is that not the solution to the problem?

    I am trying to install the NI-VISA 2.01 driver I downloaded from the NI website on a HP-UX 10.2 platform, but it keeps giving me the following error:
    tar: /var/spool/sw/NICVISA.DPT: This doesnt look like a tar archive.
    I also get errors telling me that files can't be loaded because their missing from source media. What could be causing this? Some of the files are msgrt4.txt,ni7seg24.bdf,ni7seg26, etc... Can these needed files be downloaded anywhere or is the problem linked to the tar archive scenario..

    The files were corrupt. Originally I had downloaded the driver files to my PC and used FTP to transfer them to my UNIX machine.
    Your tech support rep. suggested I download the driver files via ftp.ni.com to my UNIX machine vs. the PC...this worked great. I am now communicating with my instrument

  • How can I make Firefox look like the new updated toolbar?

    I installed Firefox 4 on a new computer running Windows XP, but I still have the old look and layout of Firefox. I want to use the new look with the all in one drop down menu bar.
    This is a fresh install of Firefox 4 with no previous version installed. Below is what mine looks like.
    See image: http://i52.tinypic.com/1532y4h.jpg

    Right-click the Menu bar and click to de-select the Menu bar.

  • How can i make firefox look like windows explorer?

    i'm using a custom explorerframe.dll in windows explorer. Now I want the firefox navigation bar(back and forward buttons; address bar) to look exactly the same. Is there a script(userchrome.css) that can do this automatically or do i have to port the style and make my own theme?

    Right-click the Menu bar and click to de-select the Menu bar.

  • How can i make itunes look like the new version?

    I downloaded the new Itunes 11.4 and it's opening as the old version of Itunes, how do i open itunes to the updated version on my mac?

    Turnb off the left sidebar.
    iTunes menu Viiew > Hide Sidebar

  • How can i make something look like it was embossed in PS?

    I have a simple shape...a rectangle filled with a solid color. It is a separator bar on a poster. I want the top of the bar to have highlight and the bottom of the bar to be darkened. (As if I brought it into PS and applied an emboss filter)
    I tried using a gradient and got ok results. Is there a better way to do this?
    TIA
    Dean

    If you count me, now two people want to know how to emboss a simple shape or path in Ai. I already know how to do it in both Photoshop and Fireworks, both a piece of pie, but I (we) must be overlooking something astonishingly obvious in Illustrator.
    Why not do it in Photoshop? Because the background from Ps comes along for the ride - even if it's transparent in Ps. And, unless I flatten the embossed path in Fw (converting it to bitmap from vector), the emboss doesn't paste into Ai, and then the background comes along...
    regards, su

  • How can i make a list like Razer Game Booster in wpf C#

    Hello every one
    I asked this question in stackoverflow, and they just gave me negative points! I don't know why,
    but at least
    I expected to get answer in here.
    I trying to make a software with WPF in C# that the theme is
    similar to Razer Game Booster.
    I made many effect similar to
    Razer Game Booster in my software but I don't Know how can i make a list like that software!
    You can download Razer Game Booster in this link: http://www.razerzone.com/cortex/download
    Now, What exactly i want?! I'll show you with following pics:
    After adding a few items, a scroll bar will appear and if you do nothing, it will be hidden after a few seconds:
    Image link: http://imgur.com/XIl3Bk9
    After placing the mouse on the items (on hover status):
    Image link: http://imgur.com/8NbUrIx
    Which one of objects in visual C# and WPF Application can do this?!
    if you interested to see what I've done, unfortunately I tried it and
    failed! Now I asking you to help me and show me how can i do that?
    any advice can help me. I'm waiting for your answer.
    thank you guys so much.
    I'm sorry
    if I bothering you.

    There are probably 1000's of tutorial about layout in WPF but I have found that the people on this forum have the best handle on how to use WPF.  I am now near a workstation and have the following code example which should get you started. (the example
    is in VB but it is the XAML which is important).
    <Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
    <Window.Resources>
    <Style TargetType="ListBox" x:Key="myListbox" >
    <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Hidden"></Setter>
    <Style.Triggers>
    <Trigger Property="IsMouseOver" Value="True">
    <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Visible" ></Setter>
    </Trigger>
    </Style.Triggers>
    </Style>
    </Window.Resources>
    <Grid Background="#FF040404">
    <ListBox Style="{StaticResource myListbox }"
    HorizontalAlignment="Left" Height="237" Margin="23,46,0,0"
    VerticalAlignment="Top" Width="470"
    ItemsSource="{Binding theList}" Background="Transparent" >
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <UniformGrid Rows="2"></UniformGrid>
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    <ListBox.ItemTemplate>
    <DataTemplate>
    <Grid Background="#FF574A4A" Width="150" Height="75" Margin="0,0,10,0" >
    <TextBlock Text="{Binding theCaption}" VerticalAlignment="Bottom" Foreground="#FFF5EFEF"></TextBlock>
    </Grid>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    </Grid>
    </Window>
    Class MainWindow
    Public Property theList As New List(Of theItem)
    Private Sub Window_Loaded(sender As Object, e As RoutedEventArgs)
    For i As Integer = 0 To 5
    Dim ti As New theItem With {.theCaption = "Caption " + i.ToString}
    theList.Add(ti)
    Next
    DataContext = Me
    End Sub
    End Class
    Public Class theItem
    Public Property theCaption As String
    End Class
    The above XAML define a listbox with the properties I mentioned in my previous post.  There is a listbox with an ItemTemplate (define how each item should be displayed) and a definition of how the layout
    should be done (ItemsPanel).  The is also a style which uses datatriggers to show/hide your scrollbar.  If you have questions about what I presented please ask but I would ask that you try it first so that you can see how it looks .
    And I'm sorry for the small font above but this forum editor constantly give me problems.
    Lloyd Sheen

  • How can I make a image like this one? (image in description)

    Hi guys I need to know how can I make a image like this one http://img31.imageshack.us/img31/2710/69823211.gif
    I need step by step instructions please. How can I animate it like that? Whats the font? Tell me everything please.

    To do a step by step instruction on here will take someone a very long time, as you havent really said at what level you are at.
    On Youtube there are a lot of animation tutorials for PS. But essentially in this case you are moving that white streak across a few frames at a time.
    The font might be found with the help of http://http://www.myfonts.com/WhatTheFont/

  • HT201365 I hate the look of ios 7.0.2. can I make it look like it used to?

    I hate the look of ios 7.0.2. can I make it look like it used to?

    No.
    I'm sorry, but Apple does not provide a downgrade path for iOS. Because downgrading is unsupported by Apple we cannot discuss it on these forums.
    You may leave comments at Apple Feedback.

  • How can i make download fast like CyberLink Downloader it is too fast

    how can i make download fast like CyberLink Downloader it is too fast

    Which Adobe product are you trying to download?  Is the download continuing to proceed but just seems slow?

  • How can I make 3d shadow like this

    Look at her face
    How can I make shadow like this
    Thank you

    Could you post (a section of) the image you want to edit?
    I assume you could
    • create a fairly good mask of the skin areas and use that as a Layer Mask for a Layer Group
    • create Adjustment Layers, Solid Color Layers, plain Layers with appropriate Blend Modes, … and paint in artificial shadows

  • How can I make the skin like rock ?

    How can I make the skin of a dramatic BW image of a Boxer look like peeling lava skin ?  I know that's a funny way to say it, but I want to make him look like rock and lava with hard cracks and such. Anyone have some ideas ?

    I'm sorry Myron, I didn't mean to cause your thread to go in the wrong direction.  I was feeling a bit frisky after a long day.
    Making skin look like something else is not a task I do normally, but if I were to want to experiment I'd probably try things like pasting a section of rock over the top of the skin in question, then set the mixing mode to Luminosity (so that just the luminance of the rock surface is used with the color of the face.  Use masking and partial mixing to help blend it.
    Seek (or capture) rock imagery with the light coming from the same direction, and with a similar level of detail.  That will help make it seem more believable.
    There may be others (I hope) who will chime in with more specific instructions or other tricks o' the trade that they've found to work.
    Best of luck, and please don't be afraid to show your results.
    -Noel

  • How can I make handwriting look heavier in PSE 11?

    I have a small handwritten note that I've scanned. When I enlarged it to the size I want to print, the handwriting strokes looked too thin to suit me. How can I make the strokes look thicker? (I'm trying to change the appearance from ball point pen to fine-tip felt marker.) Is there a way to do it easily by selecting the handwriting itself and somehow changing it all at once, or will I have to draw or paint over the strokes? I'm a newbie, so detailed instructions would be most appreciated.
    Thanks very much!
    Digital Dabbler

    Also, depending on exactly what you want, there's a Reflection edit in Guided Edit>Photo Play:

  • Normal font looks bold. How can I make it look normal?

    Hi.
    Installed the latest build from webkit.org yesterday and finally got the missing text to be visibla again.
    BUT... Normal (text) fonts as set in:
    font-weight: normal;
    does not look normal... they look like a bold font.
    What is the reason for this behaviour?
    Can I fix that by changing some settings or do I have to wait for another release of the Safari 3 Beta for windows?

    So there isn't any difference between OOO and OOO?
    If there's a difference then it's probably Safari's Font smoothing that make it look like its bold. Try to change it to light instead of medium;
    Go to Edit > Preference > Appearance -> Font smoothing
    Hope it helps,
    Emil
    Good luck
    PC   Windows XP Pro  

  • I'm running the same version of Firefox on one computer in Windows 7 and on another computer in Windows XP. How can I make them look the same? Bookmarks is a button on the right in W7 and a tab at the top left in XP.

    I am already running Sync for bookmarks, but I don't understand how to make Firefox have the same format at the top of the screen. I don't want to Sync tabs, so I haven't tried that option.

    There is no bookmarks tab, expect you are referring to the bookmarks menu on the menu bar ("File, Edit, View, History, Bookmarks, Tools, Help") on your XP system.
    Once your restore your menus on you Window 7 system, you can get rid of the bookmarks button. After going through the 10 steps below your toolbars on your Windows 7 system will be more usable again and like your XP system, none of which has anything to do with Sync.
    You can make '''Firefox 6.0.1''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    the first 9 steps above are basic toolbar customization the following link is in step #1 above. (See before/after picture (.png) in the footnote)
    *How do I customize the toolbars? | How to | Firefox Help
    *:https://support.mozilla.com/en-US/kb/how-do-i-customize-toolbars
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>
    There is a lot more beyond those first 10 steps listed, if you want to make Firefox more functional.
    Before and after customizations, the following also includes [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4styles styling changes] besides rearranging toolbars and toolbar items.
    * http://dmcritchie.mvps.org/icons/fx4toolbars.png
    *:Bookmarks toolbar -- [http://userstyles.org/styles/46947 Bookmarks Toolbar Fx4 Blue/Folders, Red/Bookmarks]
    *:Tab borders -- [http://userstyles.org/styles/24728 Tab Color Underscoring active/read/unread (Fx3.6)] red=active tab, blue=read, green=unread, magenta(not shown)=loading

Maybe you are looking for

  • How can I pass a value to the command prompt?

    I was wondering how can I pass a value to the command prompt with Windows and Linux? I'm more interested in Linux's system than Windows though. Is there a way to return info from the command prompt?

  • New Scripting Features in CS5

    This discussion is for new features/improvements in CS5 related to scripting. For changes to the scripting DOM which effect older scripts please use this discussion instead. Appropriate topics are ones which revolve around the ESTK, InDesign's DOM, o

  • I seem to have lost albums in iphoto and i can't find them in time machine either

    I have lost the last few albums created in iphoto and they don't seem yo be in time machine either

  • I need HELP on finding in the Archives Adobe Air.

    I have a Macintosh running OSX ver. 10.5.8. I need an Adobe Air to run on it. Can you tell me what ver. of Adobe Air from the Archives I use????? Thank You in advance for any help!!!! Art Bentley...

  • USB port gone kapooey

    Middle USB port will charge my iPod but that's it. Disconnected everything else, plugged keyboard into it - No go. Reset the SMU & PRAM - No go. Ran hardware test and Techtools Pro - No go. Any other suggestions? Looks like I am off to the Apple Stor