[Solved] Looking for arch's original man page color codes

Hey everyone. I'm new to arch, and enjoying having everything begin to work out for me. One thing I was wondering though is what the color codes are that the man pages use before X is loaded or anything similar.
Per the archwiki, I'm using the following to provide myself with colored man pages in urxvt:
From .Xresources:
! colored man pages on rxvt-unicode-256color
URxvt.colorIT: #87af5f
URxvt.colorBD: #d7d7d7
URxvt.colorUL: #87afd7
This works, but it's not the same colorscheme as what arch starts out with initially. Anyone know what that colorscheme is? Or where I could look to find it?
Last edited by zematis (2014-05-12 22:21:30)

ayekat, thanks for the warm welcome!
ayekat wrote:What article in the wiki?
Here's the section in the Wiki I was referring to:
https://wiki.archlinux.org/index.php/ma … vt-unicode
karol wrote:Are you talking about using man pages before installing Arch or after installing but in the tty? Do you want to get the same colors in X?
(I think) I was talking about the colors that the man pages are in the TTY. Specifically, my processes is:
Boot up arch
Login (X yet not started)
Look at a man page - like the colors
Startx - boot to window manager (i3)
Look at a man page - want to change the colors
That said, I liked the colors the man pages had before installing Arch quite a bit, and wouldn't object to learning what those are.
ayekat wrote:Here you are changing how urxvt displays characters that are marked as underline, italic or bold; in particular you are changing their colours.
The thing is, it won't only affect man pages viewed in urxvt, but everything.
Makes sense
ayekat wrote:As for changing the colour scheme of the manpage, you'll probably want to do it more properly, using the LESS_TERMCAP environment variables.
I tried copying your format to my .bashrc and it worked great! So that's a win. Now I just need to figure out what the '\e[#;#;#m' numbers mean. I think I can probably handle that one on my own though. I found a resource here at:
http://misc.flogisoft.com/bash/tip_colo … ng#colors2
And it looks like it covers what I need to know.
Thanks for your help!
And honestly, at this point I think I can figure out what colorscheme I like given the info at hand. So I think we can call this one taken care of.
If it interests anyone, I found a .sh script at the above link to display all 256 colors, then modified it to show the colors bolded, italicized etc. Here's the script:
#!/bin/bash
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
for coltype in {0..8} ; do # Bold, Italic etc.
  for fgbg in 38 48 ; do #Foreground/Background
    for color in {0..256} ; do #Colors
      #Display the color
      echo -en "\e[(0${coltype});(${fgbg};5;${color}m ${color}\t\e[0m"
      #Display 10 colors per lines
      if [ $((($color + 1) % 10)) == 0 ] ; then
        echo #New line
      fi
    done
    echo #New line
    echo #New line
  done
  echo #New line
done
exit 0

Similar Messages

  • Looking for a way to change GTK2 colors in xfce

    I am looking for a way to edit the colors in the GTK theme I am using in xfce, the way you could in gnome2. Lxappearance allows for this but xfce doesn't read the changes from it when I change it though that.
    Can anyone suggest something that works? Preferable without having to edit configs by hand.

    It is discussed on the xfce forums but unfortunately that solution requires editing by hand. However it does seem relatively easy to automate. Writing a graphical program for those tasks is something you'd only have to do once.

  • [SOLVED] Hook for Arch to optionally run "LIVE"

    I currently patch init with the code shown below and it works as expected by loading Arch to RAM then unmounting the underlying real root. It's optional and there's also support for a compressed archive of the root filesystem which can speed the loading to RAM by a factor of more than 10 if booting from a USB memory stick.
    What I'd like to do now however is convert the code to a hook since I have always found patching init a tad bit intrusive.
    My code is run after the init  section that starts with the comment # Successfully mounted /new_root, but ${init} is missing as shown below.
    What do I need to add to my code to make it function as a hook instead of as a patch to init?
    elif [ ! -x "/new_root${init}" ]; then
    # Successfully mounted /new_root, but ${init} is missing
    # The same logic as above applies
    err "Root device mounted successfully, but ${init} does not exist."
    echo "Bailing out, you are on your own. Good luck."
    echo
    launch_interactive_shell --exec
    fi
    # "LIVE" code starts here >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    echo "]press a key *NOW* if you *DO NOT* want the root filesystem loaded to RAM...█"
    if read -t 5 -n 1 k ; then
    echo "]running from real root...█"
    else
    mkdir /tmp/real_root/
    mount --move /new_root/ /tmp/real_root/
    mount -t tmpfs -o size=60% none /new_root/
    if [[ -f /tmp/real_root/rootfs.tar.gz ]] ; then
    echo "]copying root filesystem ARCHIVE $(date -r /tmp/real_root/rootfs.tar.gz +%F-%T) to RAM...█" ; tar -xf /tmp/real_root/rootfs.tar.gz -C /new_root/
    else
    echo "]copying root filesystem to RAM...█" ; cp -a -R /tmp/real_root/* /new_root/
    fi
    umount /tmp/real_root/
    touch /new_root/RAMroot
    fi # read -t 3 -n 1 k
    # "LIVE" code ends here <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    if [ "${break}" = "postmount" ]; then
    echo ":: Post-mount break requested, type 'exit' to resume operation"
    launch_interactive_shell
    fi
    Last edited by KairiTech (2015-04-16 21:53:07)

    [Edit] added the --preserve=all option to the cp command to retain the file capabilities of ping as cap_net_raw+ep if it's to be run by a non-root user. Still looking for a tar version that supports file capabilities.
    [Edit] bsdtar supports file capabilities by default. You just need to add the -p option during the extract to restore them. I redirect bsdtar's output to the same file that I use to indicate that Arch is running from RAM because there will be instances when the file's and/or directories' flags cannot be restored. So far that hasn't caused any issues. 
    After looking at the liveroot package in AUR and elsewhere on the internet I settled on the code below. I was mostly just missing the mount_handler part.
    run_hook() {
    echo "]press a key *NOW* if you *DO NOT* want the root filesystem loaded to RAM...█"
    if read -t 5 -n 1 k ; then
    clear
    else
    poll_device ${root} 20
    mkdir /real_root/
    mount ${root} /real_root/
    mount -t tmpfs -o size=60% none /new_root/
    if [[ -f /real_root/rootfs.tar.gz ]] ; then
    echo "]copying root filesystem ARCHIVE $(date -r /real_root/rootfs.tar.gz +%F_%T) to RAM...█"
    bsdtar -pxf /real_root/rootfs.tar.gz -C /new_root/ > /new_root/LIVE 2>&1
    else
    echo "]copying root filesystem to RAM...█"
    cp --preserve=all -a -R /real_root/* /new_root/
    fi # [[ -f /real_root/rootfs.tar.gz ]]
    touch /new_root/LIVE
    umount /real_root/
    LIVE_mount() {
    # since init doesn't have to mount anything anymore give it something usefull to do instead
    clear
    echo "
    ]you are L I V E ! ! ! █
    mount_handler=LIVE_mount
    fi # read -t 3 -n 1 k
    I created the root filesystem archive with:
    bsdtar --exclude={/rootfs.tar.gz,/var/cache/pacman/pkg/*,/boot/*,/dev/*,/proc/*,/sys/*,/tmp/*,/run/*,/mnt/*,/media/*,/lost+found,/usr/share/man/*,/usr/share/doc/*,/usr/share/gtk-doc/*} -vzcf /rootfs.tar.gz /
    And for completeness here's the install:
    #!/bin/ash
    build() {
    add_runscript
    help() {
    cat <<HELPEOF
    ]Run Arch from RAM█
    HELPEOF
    Last edited by KairiTech (2015-05-08 00:33:59)

  • [SOLVED] Advice for Arch install with rEFInd dual boot Lenovo laptop?

    I am trying to plan an Arch install on a new laptop for dual boot with Windows 8.1, but I know there is a potential to cause huge problems so I have been trying to read and learn about the hard disk partition structure and how I might install the rEFInd boot files so that I am still able to boot Windows once Arch is installed. (Unfortunately for some tasks such as updating the maps on my satnav box Windows is essential). However I am really quite unsure if I am doing the right thing in the way I am thinking about the Arch install so I would appreciate any help from experts on the forum.
    The laptop is a Lenovo IdeaPad Y510p which came with Windows 8 pre-installed, with the option to upgrade to Windows 8.1.  The upgrade was completed without issue and I then looked into the question of hard drive partitions and boot.  I had read posts on the Ubuntu forums about users who had installed Ubuntu on this same laptop and ended up being unable to boot Windows afterwards so I wanted to tread very carefully before executing anything which might cause really major damage. I had also read on the Lenovo forums replies about people who had replaced the hard drive and installed linux only to find that they could  not boot to the recovery partitions, with replies from Lenovo moderators saying that if the partition structure had been changed then the laptop would have to be sent back to Lenovo for a factory repair.
    On this laptop to get into the bios or boot options you do not just press the power button and hit an F key, but instead there is a special small "OneKey Recovery" button next to the power jack, which opens up with options for BIOS setup and boot options as well as normal boot or recovery. This OneKey Recovery button is therefore needed to boot a usbkey - the power button only allows it to boot to windows presumably until/unless a different bootloader and NVRAM entry is amended.
    I have done all the initial ( safe!)changes necessary to move to the point at which I can execute the Arch install. From within Windows (switched off fastboot, and shrunk the "C:" drive to make space for linux partitions).  I have also switched off Secure Boot from the BIOS, and made sure that Windows still boots up fine.
    The current arch install iso (February 2014) boots under uefi just fine - and of course once booted I have access to the gdisk programme.  That certainly showed the pre-existing partitions on the drive (8 partitions with partition number 2 being the EFI partition, and three recovery partitions!) with a GPT partition table, and it should therefore be possible to make the necessary new linux partitions in the now unallocated space on the disk that was freed up with the internal disk management facility within Windows 8.1.  So at that point I created three partitions for a root partition (type 8300), a swap partition (type 8200) and another type 8300 partition which will become /opt in the installed Arch system.
    In order to try and not make any changes to the partition structure I let the three new linux partitions be number 9, 10 and 11.
    I am told that for a GPT disk it is a definite no-no to try to create more than one EFI partition. So I will need to use the existing EFI partition to place the rEFInd files and the kernel once I install Arch.
    In this (Y510p) laptop the EFI partition contains the following structure:
    BOOT/ - containing only boot.sdi
    BOOTSECT.BAK
    EFI/ which contains two directories Boot/ and Microsoft/
    so EFI/Boot/ contains only Boot64.efi which is likely a fallback copy of the Windows 8.1 bootloader
    and EFI/Microsoft/ contains a Boot/ directory - so
    EFI/Microsoft/Boot/ contains loads of language specific directories like en-GB/
    plus bootmgfw.efi (which I believe is the Windows main efi loader file)
    bootmgr.efi
    memtest.efi
    The scheme that I am planning to use which I have previously used in pure Arch uefi machines, is that /boot is a directory in the root partition, /. That way /boot is an ext4 directory and will contain the kernel and initramfs plus the rEFInd linux config file.
    Then I can mount the EFI (vfat) partition as /boot/efi and so I can then make a /boot partition under /.  Then the EFI /BOOT/ directory would be seen in Linux as /boot/efi/BOOT/ and the Windows efi stuff would be in /boot/efi/EFI/Boot/Microsoft/Boot/ in which case I would presume that I have to make a new directory in /boot/efi/EFI/refind/ and put the refind stuff including the filesystem drivers there, and let the kernel go into the (ext4) /boot/ directory which would be preferred!  However I am not 100% confident that this is what will work and I need to read more before trying to do the install. The thing that concerns me is how the system will handle the uefi boot process, and whether it would auto-detect the Windows efi file as well as the Arch refind efi file once the system has started up?
    ... and then there is the issue of the NVRAM entries and I am no longer confident that if I use the usual tools to create an entry (efiboomgr or bcfg), that I will get a successful dual boot system!
    There is still a chance that I would irrevocably damage being able to boot to the Windows and Recovery partition boot options by messing up the EFI and/or the NVRAM so I have to tread very very carefully with this.
    If anyone has gone through this kind of dual boot install with a Windows 8 or 8.1 machine using rEFInd for the bootloader, and can offer advice or help here I would very much appreciate it.  I have another pure Arch system which uses rEFInd that works extremely well, but it seems that dual boot with uefi is a rather more complex animal than a pure linux system!
    Last edited by mcloaked (2014-02-22 10:06:03)

    vipin wrote:I have recently bought the y510p , im planning to install Arch , this is my 4th laptop , i had installed Arch in all the other 3 with no problems, but im a bit worried with the installation as this is the first laptop which has EFI , im a linux user for the past 6 years , i started with fedora , now i like Arch , mike documentation is excellent, i just had one question when i had grub , it automatically finds the new kernel when i update (grub.conf/menu.lst gets updated), does rEFInd also do that.
    When there is an update to the rEFInd package you need to copy the files across to your ESP from the files contained in /usr/share/refind/  usually you need to copy the refind_x64.efi binary as well as the icons, fonts, and drivers directories.  Since there is flexibility in how you configure the kernel and initrd files in terms of where they are located whether you need to do anything else when a new kernel update arrives depends on how you set your system up.  If you have the /boot directory as your ESP partition which will then have the kernel and initrd files updated by default then there no need to do anything else when there is a kernel update. If the ESP is then at /boot/EFI and within that is your refind/ directory then that is where the replacement files go if refind-efi gets a pacman update. So it is actually fairly straight forward. If you configure rEFInd to look for kernels in some other directory than /boot/ then you may need to copy the files there after a kernel update but there is more information in the arch wiki about this.
    During a refind-efi package update there are helpful files in the pacman output (and log) reminding you of what you need to do.  eg for the latest refind-efi update you get:
    [2014-06-18 18:48] [PACMAN] upgraded radvd (1.12-1 -> 1.13-1)
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] rEFInd UEFI application has been installed at /usr/share/refind/refind_*.efi
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] Other UEFI applications have been installed at /usr/share/refind/tools_*/
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] UEFI drivers have been installed at /usr/share/refind/drivers_*/
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] Copy the efi application (according to your UEFI ARCH)
    [2014-06-18 18:48] [ALPM-SCRIPTLET] and /usr/share/refind/refind.conf-sample to a sub-directory of <EFISYS>/EFI/
    [2014-06-18 18:48] [ALPM-SCRIPTLET] as refind.conf and add an entry to firmware boot menu using efibootmgr
    [2014-06-18 18:48] [ALPM-SCRIPTLET] or mactel-boot (for Macs)
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] rEFInd Icons have been installed at /usr/share/refind/icons/
    [2014-06-18 18:48] [ALPM-SCRIPTLET] rEFInd Fonts have been installed at /usr/share/refind/fonts/
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] HTML Documentation is available at /usr/share/refind/docs/html/
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [ALPM-SCRIPTLET] More info: [url]https://wiki.archlinux.org/index.php/UEFI_Bootloaders#Using_rEFInd[/url]
    [2014-06-18 18:48] [ALPM-SCRIPTLET]
    [2014-06-18 18:48] [PACMAN] upgraded refind-efi (0.8.1-1 -> 0.8.2-1)
    I hope that helps.
    By the way you can also boot uefi using grub and in fact you can get rEFInd to chainload grub as a backup bootloader as an added safety factor and have both rEFInd as well as grub installed simultaneously. How that can be done is explained in the thread at https://bbs.archlinux.org/viewtopic.php?id=181906
    Last edited by mcloaked (2014-06-25 17:41:12)

  • Looking for CRM IC Webclient HTML page

    Hi guys
    I need to change a value which is found on a HTML page.
    The page starts with :
    <html dir="rtl"><head><title>Interaction Center</title>
          <SCRIPT language="JavaScript">
    This html can be obtained if I tight click the page in the browser and look for the
    page source code.
    But I cannot find this page.
    I have searched SE80 under CRM_IC_* modules and found nothing.
    Any hint will be appreciated
    regards
    yuval

    Hi Yuval,
    Instead of looking into the source code of the broweser better you maintain the parameter CRM_ICWC_TEST with value 0x23456789 in your user setting. This will activate your tool tip and then you will see a tooltip appearing in the application when you point your mouse to the title of a view, telling you the BSP application name .
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Looking for Javascript to replace 'selected' pages in a pdf?

    Hi
    I've searched the web looking for a solution to a time consuming issue without luck. I have multi-page, print ready pdfs - but have to make corrections to a number of 'random' pages in InDesign. I have to replace only the random corrected pages in the standing pdf.
    An ideal solution would be a script that could launch an interface allowing input of the corrected page numbers eg: 3,5,14,56,92,146, together with a facility to select the corrected file/or files to replace pages, page number for page number in the print ready pdf. Does anyone know of a solution or possible starting point?
    MTIA

    Hi,
    Have you tried transforming this using XSLT?
    Regards
    Ayyapparaj

  • [SOLVED] Looking for a tiling WM with a certain feature

    I've been using openbox/pekwm for a few years I recently tried tiling window managers again (tried them a few years ago and hated them) and I'm hooked but after trying just about all of the popular ones and reading the man pages/web sites I can't find any that have a certain feature I'd like (maybe I've just completely missed it). What I'd like is to have firefox in the master area (left hand side, about 50-60% width), whatever else I have open (usually one or two terminals and thunar) in the slave area and then pidgin buddy list open in a small thin area on the right hand side of the screen.
    I'm not fussed about status/task bars or anything like that (but being able to add my own would be a bonus), prefer no window borders (like i3 or wmii) and would prefer something easy to configure (I don't mind learning haskell if xmonad is perfect for my needs but I'd rather avoid awesome as I've heard the config changes often and I'm not too keen on the built in task bar etc)
    Thanks
    Last edited by descendent87 (2010-02-16 14:12:41)

    descendent87 wrote:what's the difference in dynamic and manual tyling managers?
    Dynamic tilers have one or more pre-defined layouts for you to choose from and arrange the frames accordingly, while in manual tilers, you choose the size/arrangement of frames yourself.
    What I'd ideally like is something where I can set so that firefox/chromium/uzbl (whatever browser I'm using) always opens in the master area, pidgin always opens in the far right hand side and anything else (terminals, thunar, mplayer) always opens in the slave erea (inbetween web browser and pidgin).
    Well, this is doable with musca, though I've never even tried to set it up that way Though it's probably along the lines of:
    * Put commands in a ~/.musca_start file
    * In this file, set up frames as you want using commands like hsplit, vsplit, etc.
    * Set focus to the frame you want browser to appear in (also with above commands), start browser, dedicate frame to browser so no other window will appear in the same frame
    * focus next frame, start Pidgin
    * etc.
    Unfortunately, this won't work with multiple browser windows, for example, since the dedicate command won't allow several browser windows to appear in the same frame. Also, my solution is *very* ugly (seems more like an Excel macro to me rather than a properly scripted solution ). There's probably a lot more possible with proper use of wmctrl, but I never got around doing much with it. If you really do want full control over your layout, I should probably recommend Xmonad, but I've had zero experience with it (a >500MiB ghc is a little spooky).

  • Looking for examples of the Exchange Page

    Hey! Any Body??
    I am looking to display data like on the Exchange page with
    logo and links in the tables. Does any one know of where I can
    start looking for something like that? I like the layout of the
    Exchange page. If any of you know something please let me know.
    thanks.

    You can find several examples that will work with the DAQCard-1200 at zone.ni.com/libraries/.
    Then look under Data Acquisition. There are also examples that ship with
    LV and NIDAQ. Look in ...\Labview\examples\daq\anlogin\.
    "david frazao" wrote:
    >Thank you , if you can help me by sending VI examples for the 1200 daq-card>,
    with 2 or mores inputs>>

  • [SOLVED] looking for lightweight free ftp program for KDE

    im looking for a free ftp program, or an alternative good suggestion thats not free hehehe (i like cuteFTP for win) so i can download for my arch box?  i would like to do some file exchange on my remote server periodically, and like to drag and drop, cut and paste, and navigate via file browser to make things go quicker.  i have alot of files to move around.
    Last edited by wolfdogg (2011-06-08 08:56:35)

    kioslaves are cool.  i guess they were working for me and i didnt even know it.  i especially like the audiocd one.   and thanks for pointing out that asset, i will refer to it more often now that i know about it, and learn how to maximize the use for them. 
    using dolphin, i was having some problems initially (nothing to do with standard ftp however) because the directory is actually a 'webprotect' directory, so is accessed by as http://user.domain.com/location   i had to manipulate the url for a while to get it to load as ftp://domain.com/public_html/users/uname/location, infact i couldnt log in at all using my username, i had to log into the server as root using this method.  this is because the webprotect uses .htaccess for permissions, so as accessed from ftp:// i believe the server doesnt use the permissions from the .htaccess.  so thats one hitch when using a filebrowser such as dolphin.
    COOLEST thing i found so far, using the file browser, it supports RESUME.  wow.  thats nice!  saves teh file as .part, then suggests a resume when transfer senses the file already exists.
    im SURE there is a way around this, ill just have to play with it for a while.  because i dont want to be logging in as root, i want to utilise the subdomain that i created for users access on the website storage folders.
    Last edited by wolfdogg (2011-06-08 22:33:10)

  • [SOLVED] Where are all of the Man pages?

    On my system, man-pages do not exist for many things e.g.  bash commands like ls, rm, cp & cd are missing?
    The directory /usr/man/ has the following folders: man1, 3, 4, 5, 7, 8
    It would seem that at least numbers 2 & 6 are missing.
    I have reinstalled the man utility (though it already worked) & man-pages, though it doesn't give me access to the bash commands that I know man pages exist for.
    Any ideas?
    Last edited by handy (2008-10-19 03:49:01)

    Onwards wrote:
    handy wrote:Which is now entered in my /etc/profile/ but it has no noticeable effect.
    /etc/profile is read by the login shells only. So you could have got the desired effect w/o a reboot by doing either:
    su -
    OR...
    konsole --ls #starting it as a login shell
    What I needed to know was not just the line to add & where, which first answer told me, but also the line to delete, which second useful answer told me. I had logged out after adding the line, & decided after the removing the offending line that I will reboot for good measure!
    Thanks for your confirmation that a logout would have done the job.

  • Safari hangs up, seems like it is looking for something, when it opens page

    Hello,
    I have tried everything, safari upon opening takes sometime to open a page, once that page is open, it is somewhat quick to open other pages within that page, but when going to different pages the same delay happens,
    it looks like safari might be looking for an ip addy? I am using airport and have also tried everything as far as resetting, setting up new locations?

    If Safari is getting very slow:
    (Presumably you regularly empty your Safari cache and clear your History)
    Adding Open DNS codes to your Network Preferences, should give good results in terms of speed-up as well as added security:
    If you are using a single computer: Open System Preferences/Network. Double click on your connection type, or select it in the drop-down menu, and in the box marked 'DNS Servers' add the following two numbers:
    208.67.222.222
    208.67.220.220
    (You can also enter them if you click on Advanced and then DNS)
    Sometimes reversing the order of the DNS numbers can be beneficial in cases where there is a long delay before web pages start to load, and then suddenly load at normal speed:
    http://support.apple.com/kb/TS2296
    If your computer is part of a network: please refer to this page: http://www.opendns.com/start/bestpractices/#yournetwork and follow the advice given.
    You could also try these codes as well: 4.2.2.1 & 4.2.2.2
    If you use a Router, make sure it has the latest firmware installed.
    One reason for a slowness in page loading may be the 'DNS Pre-fetching' feature of Safari 5.x
    This is described here:
    http://support.apple.com/kb/TS3408?viewlocale=en_US
    If Safari seems to hang for ages:
    If you have a lot of tabs open and/or a lot of pages running Flash, Safari can sometimes 'hang', requiring a restart of Safari. This can often be inconvenient, and as it is rarely Safari itself that is hanging but merely one of its plug-ins, usually Flash, there is a way using Terminal to restart the plug-ins (without restarting Safari and losing your tabs) by quitting the WebPluginHost process:
    Open the Terminal from the Utilities folder in /Applications and type
    killall -9 WebKitPluginHost
    Note that this command kills all Safari plug-ins, not just Flash. All plug-ins should start back up when you reload the page.
    Then go back to Safari and refresh any pages that were using the Flash plug-in. This also fixes the Beachball of Death. Try this whenever Safari gets slow or freezes. The latest versions of Flash 10.1 appear to have improved the situation somewhat, but haven't completed eliminated it.

  • [Solved] Looking for a simple music player

    Hello there,
    I'm looking for a music player for a box I'm currently building. I only need it to have a GUI, playlist support and random playing. I've thought of xmms2, but the standard package comes without GUI and I haven't found any clients with random playing.
    Any ideas?
    Thanks!
    Last edited by Surgat_ (2009-10-21 20:37:46)

    as simple as they get:
    xmms: (not xmms2!)
    audacious:
    audacious is a form of bmp, which is a fork of xmms... they're all basicly the same, audacious is more up to date though.

  • [SOLVED] Looking for an audio player; specific requirements

    I've searched around and can't really find what I'm looking for in an audio player(though Audacious and Exaile come close). What I need is one with these aspects:
    - Based on GTK+
    - Relatively lightweight
    - Skinnable
    I'd like something with a look similar to the Winamp "modern" skins, rather than the classic ones, but I can't find anything like this for Linux.
    Last edited by Ronin-Sage (2009-01-14 07:28:10)

    droog wrote:
    Ronin-Sage wrote:I'd like something with a look similar to the Winamp "modern" skins, rather than the classic ones
    This makes your request impossible.
    Nothing's impossible... creativity is key. I you can't achieve the look you're looking for natively, either code something yourself or look into running winamp through wine (here's an article on running winamp through wine if you're feeling lazy).

  • [SOLVED] Looking for URW Gothic L font in .ttf format (...)

    Hi,
    I'm able to use URW Gothic L font while writing in OpenOffice.org, as default font for Conky and PyPanel (all with working Polish letters like - Ł, ł, Ó, ó, Ś, ś, Ż, ż, Ź, ź, Ę, ę, Ć, ć). Recently I wanted to test bmpanel with Arch theme. So I edited the theme config file and changed
    clock_font DejaVuSans-14
    to
    clock_font URWGothicL-14
    You can imagine how suprised I was, when executing bmpanel had no effect, but when I tried to lunch it from the terminal everything was (nearly) clear. Here's the output:
    > bmpanel arch
    starting bmpanel with theme: arch
    only ttf files are supported
    failed to load font: URWGothicL-14
    fatal loading error
    failed to load theme: arch
    So it seems that URW Gothic L is not in .ttf format. I've looked through all known to me folders containing fonts, but with no luck. Where the hell is it stored?
    These are font packages installed in my system (hope these are all of them, but maybe you know a better way of displaying a list of all font packages installed):
    extra/gsfonts 8.11-4 [installed]
    extra/ttf-dejavu 2.28-1 [installed]
    extra/ttf-ms-fonts 2.0-2 [installed]
    extra/xorg-fonts-100dpi 1.0.1-1 [installed] (xorg)
    extra/xorg-fonts-75dpi 1.0.1-2 [installed] (xorg)
    extra/xorg-fonts-alias 1.0.1-1 [installed]
    extra/xorg-fonts-encodings 1.0.2-2 [installed]
    extra/xorg-fonts-misc 1.0.0-3
    Is there a way of getting URW Gothic L in proper .ttf format to use with bmpanel?
    PS. If you need any other data, please say so, I'll provide it as fast as I can. I'm not an expert in those matters (yet ).
    EDIT:
    I've searched some more and it appears that Polish version of URW Gothic L is a Type1 font included in gsfonts package. Still searching for TTF equivalent or a maybe a way to make a Type1 font work with bmpanel.
    Last edited by Lilim (2009-02-19 20:58:55)

    Made it Thank you Skottish. That's why I like Arch community - if someone answers your question you may me sure it will be a helpful answer (well... in most cases).
    For those who might have the same problem in the future - I choose a simple solution - Fontforge. It did the trick just fine.
    EDIT:
    Ops, reached the subject's length limit I'll need to cut it in order to add [SOLVED] there. Done.
    Last edited by Lilim (2009-02-19 21:01:02)

  • New look for Arch website?

    Just noticed the Arch site has a new look, and the title graphic is now a link
    Nice work!  Still nice and clean, just like Arch.
    My only (admittedly small) gripe is that it looks quite blue on my monitor here at work.
    I think I prefer the #f9f9f9 background of the forums to the new #eeeeff, but otherwise -- LOVE IT!

    Meyithi wrote:
    Not sure if want...
    Is there a reason package search box is so big?  Header needs same padding as body on L and R, logo too small, looks like a wiki page.
    Meh old one was perfect IMO
    While I agree the old one was fine; MANY MANY people just couldn't/wouldn't see it.  You could direct them to the main page and say search for a package there and WAYYYY to many ppl would come back and say "I can't find it"
    Just my guess as to the reason for different size/bg color of the search box

Maybe you are looking for