[SOLVED] dwm manager taskbar font howto

I'm trying to make my default dwm taskbar font bigger. After I installed dwm the default taskbar font looks small for me. How can I make it bigger?
I tried editing config.h file and edited default font to:
static const char font[]            = "*-*-fixed-medium-r-normal--*-110-*-*-*-*-iso8859-1";
just the way it was set in my other distro.
But still no result, same small font.
Does anybody have a good font in mind, that will look good, like the one from terminus pack. I don't know the names of good fonts and googling doesn't give any good alternatives.
Maybe somebody has already have something in mind?
1. why does my dwm font do not change, even when I edit config.h, compile and install (makepkg -efi)?
2. could you provide any good font alternatives?
ps. also this default dwm font does not understand cyrillic or any other language, so when I try "Mod+p" in ru layout it screws my typing.
Last edited by tasty_minerals (2011-05-13 20:34:22)

no, that doesn't work.
ls Public/dwmls Public/dwm_sync/dwm/_sync/dwm/
config.h                       dwm-5.8.2.tar.gz  dwm.install  PKGBUILD
dwm-5.8.2-2-x86_64.pkg.tar.xz  dwm.desktop       pkg          src
1. What I did is, edited config.h line to:
static const char font[]            = "-*-courier-medium-r-*-*-17-*-*-*-*-*-iso10646-*";
2.makepkg -efi
3.reboot
Result: nothing changed in taskbar
ps. didn't find any of your fonts, I've installed lots of fonts via pacman.
my config.h cat:
/* See LICENSE file for copyright and license details. */
/* appearance */
static const char font[] = "-*-courier-medium-r-*-*-17-*-*-*-*-*-iso10646-*";
static const char normbordercolor[] = "#9eeeee";
static const char normbgcolor[] = "#2e3436";
static const char normfgcolor[] = "#d3d7cf";
static const char selbordercolor[] = "#55aaaa";
static const char selbgcolor[] = "#3e4446";
static const char selfgcolor[] = "#d3d7cf";
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const Bool showbar = True; /* False means no bar */
static const Bool topbar = True; /* False means bottom bar */
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static const Rule rules[] = {
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, True, -1 },
{ "jumanji", NULL, NULL, 1 << 8, False, -1 },
/* layout(s) */
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
/* key definitions */
#define MODKEY Mod4Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
static const char *termcmd[] = { "xterm", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
TAGKEYS( XK_1, 0)
TAGKEYS( XK_2, 1)
TAGKEYS( XK_3, 2)
TAGKEYS( XK_4, 3)
TAGKEYS( XK_5, 4)
TAGKEYS( XK_6, 5)
TAGKEYS( XK_7, 6)
TAGKEYS( XK_8, 7)
TAGKEYS( XK_9, 8)
{ MODKEY|ShiftMask, XK_q, quit, {0} },
/* button definitions */
/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
/* click event mask button function argument */
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
{ ClkWinTitle, 0, Button2, zoom, {0} },
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
{ ClkTagBar, 0, Button1, view, {0} },
{ ClkTagBar, 0, Button3, toggleview, {0} },
{ ClkTagBar, MODKEY, Button1, tag, {0} },
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
Last edited by tasty_minerals (2011-04-03 11:28:20)

Similar Messages

  • [SOLVED] DWM colorful taskbar howto?

    Dwm users! Can somebody tip me on how to make my dwm taskbar xsetroot output colorful? Has anybody tried to do it?
    My current config is:
    xset -b
    xset m 5 5
    xrdb -load .Xdefaults
    setxkbmap -option grp:switch,grp:ctrl_shift_toggle,grp_led:scroll us,ru
    nitrogen --set-scaled /home/pshkadko/pictures/Wallpaper/todd_s_nebula_by_casperium.jpg
    while true
    do
    xsetroot -name "`cat /proc/acpi/ibm/thermal | awk '{print "cpu cores: "$3":"$4}' ` `df -h / | awk 'END {print "| root use: " $5}' | sed 's/Use%//'` `df -h /home| awk 'END {print " home use: " $5}' | sed 's/Use%//'` `date | awk 'END {print "| " $1" "$2" "$3" "}'` `uptime | awk 'BEGIN {FS = ":"}; END {print"|"$1":"$2}'`"
    sleep 20
    done
    Last edited by tasty_minerals (2011-05-13 19:42:10)

    stlarch wrote:You probably want the statuscolors patch. You can get it from http://dwm.suckless.org. Also you should check out https://bbs.archlinux.org/viewtopic.php?id=92895.
    ok, thanks, thats tons of info to dig for me!

  • Font Management - No Fonts Found

    CFDocument does not work due to having no fonts found in Font Management in CF9 Administrator.
    also, registering fonts via Font Management fails - nothing but a blank page is displayed when a font path is submitted. here's my system info:
    - Windows Server 2003 Standard x64 Edition
    - ColdFusion 9.01 Enterprise
    I've also installed Acrobat X Pro to see if its fonts would be listed in CF9 Administrator, but failed.
    any help would be greatly appreicated.
    thanks!

    Just out of curiosity, by “uninstalling the CHF2”, do you mean you just removed the cfh9010002.jar? or did you also revert the changes made to the CFIDE, \lib, and \wwwroot]WEB-INF\lib directories? It would just be interesting to know if you did only the former (the jar) and not the latter. Similarly, if you really mean you uninstalled CF and reinstalled it to not include the CHF2, I’ll just note that sometimes problems with the Admin breaking are due instead to mistakes made in updating those other 3 directories. Just sharing the observation.
    More at:
    http://www.carehart.org/blog/client/index.cfm/2011/10/21/why_chfs_may_break
    /charlie
    Re: Font Management - No Fonts Found
    created by Richard Davies <http://forums.adobe.com/people/Richard+Davies>  in ColdFusion Server Administration - View the full discussion <http://forums.adobe.com/message/4529055#4529055> 
    It appears in my case this was caused by the Cumulative Hot Fix 2. After uninstalling the hot fix 2 the fonts are again listed in the CF9 administrator.
    System details:
    CF9.0.1
    Windows Server 2008 R2 Standard (64 bit)
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4529055#4529055
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4529055#4529055. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in ColdFusion Server Administration by email <mailto:[email protected]orums.adobe.com>  or at Adobe Forums <http://forums.adobe.com/choose-container!input.jspa?contentType=1&containerType=14&contain er=2226>
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • KDE file manager UI fonts impossibly tiny (RESOLVED)

    The KDE installation seems to be at variance with documentation on kde.org.
    I can not find many of the configuration files named at kde.org.
    My problem is that while I can change fonts in the file display window of file manager, the font in the menu bars and left side tree are barely readable.
    This is more severe in the superuser file manager than in the user version, but I'm at a loss in changing either one of them.
    My screen is set at 800x600.
    I have been thru the files at /root/.kde/share/config.
    All help appreciated.
    Bill Barnes

    Thank you.
    I have been all over kcontrol, but found that to do what I wanted was to invoke it in a superuser terminal.  That did it.

  • Management of fonts?

    OS X Server 3.1.1 lists one of the new features as "Management of Fonts". I can't find anything that has something to do with font management though. Any help appreciated
    Jay
    Edit: I guess it all has to do with Profiles, reading it again slower. Correct?

    jayv. wrote:
    OS X Server 3.1.1 lists one of the new features as "Management of Fonts".
    I saw that and wondered too; however, I just went ahead installing the update. So, I am curious to know also!

  • [SOLVED] dwm-status.sh, possible to include scripts within the script?

    I have 'dwm-status.sh' printing some basic info (mpd, vol, date) into the status bar. Is it possible to make it include eg. gmail, weather, and battery scripts in a similar way that conky would? (execpi 60 python ~/.scripts/gmail.py)
    Also, off topic: How can I see which other special characters represent which icons in Ohsnap font? e.g. "Ñ" "Î" "¨" "¹" "ê" "í" "È represent cpu, memory, hdd, vol, clock.... how about the rest?
    dwm-status.sh:
    #!/bin/sh
    icons=("Ñ" "Î" "¨" "¹" "ê" "í" "È")
    getMusic() {
    msc="$(ncmpcpp --now-playing '{%a - %t}|{%f}')"
    if [ ! $msc ]; then
    echo -ne "\x0A${icons[4]}\x01 music off"
    else
    echo -ne "\x0A${icons[4]}\x01 ${msc}"
    fi
    getVolume() {
    vol="$(amixer get Master | egrep -o "[0-9]+%" | head -1 | egrep -o "[0-9]*")"
    echo -ne "\x0A${icons[5]}\x01 ${vol}"
    getDate() {
    dte="$(date '+%b %d %a')"
    echo -ne "\x0A${icons[1]}\x01 ${dte}"
    getTime() {
    tme="$(date '+ %H:%M')"
    echo -ne "\x0A${icons[6]}\x01 ${tme}"
    while true; do
    xsetroot -name "$(getMusic) $(getVolume) $(getDate) $(getTime)"
    sleep 1
    done
    Last edited by Winston-Wolfe (2013-06-26 13:10:11)

    Thanks guys, I've managed to get my notification scripts printing by simply not using execpi:
    getMail() {
    mai="$(~/.scripts/gmail.py)"
    echo -ne "\x0A${icons[3]}\x01 ${mai}"
    But like you said, I now have a calling frequency challenge.
    Trilby, that looks great. I've got it partially working, but I'm at a loss on how to go about printing the variables in the loop for those blocks that happen periodically.
    otherwise your email indicator (for example) will only pop up for one second every 5 minutes.
    ^ exactly what's currently happening.
    Is there something that just prints the variable without calling for an update like $(getMail) does that I could put into the loop?
    let loop=0
    while true; do
    # stuff that happens every second here
    xsetroot -name "$(getMusic) $(getVolume) $(getDate) $(getTime)"
    if [[ $loop%60 -eq 0 ]]; then
    #stuff that happens every minute here
    xsetroot -name "$(getMusic) $(getMail) $(getVolume) $(getDate) $(getTime)"
    fi
    if [[ $loop%300 -eq 0 ]]; then
    # stuff that happens every 5 minutes here
    xsetroot -name "$(getMusic) $(getMail) $(getWeather) $(getVolume) $(getDate) $(getTime)"
    let loop=0 #this prevents an eventual overflow
    fi
    let loop=$loop+1
    sleep 1
    done
    Last edited by Winston-Wolfe (2013-06-26 08:54:47)

  • [Solved]Firefox 3.5 Fonts gone wrong

    Since the upgrade to 3.5 my firefox fonts have messed up. Seems to be a problem with hinting not being taken from gnome font preferences no-more.
    I updated cairo and applied the lcd patch to it myself but firefox fonts still remain the same.
    I have read ppl on ubuntu have had the same problem but the fix found there wont work with arch.
    Any ideas?
    Last edited by Andy Mack (2009-07-15 15:47:42)

    Here's another example.  I have completely stripped ~/.fonts.conf to contain only the basic settings (no exceptions, conditions, etc.):
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    <match target="font">
    <edit name="antialias" mode="assign"><bool>false</bool></edit>
    <edit name="autohint" mode="assign"><bool>false</bool></edit>
    <edit name="hinting" mode="assign"><bool>false</bool></edit>
    <edit name="hintstyle" mode="assign"><const>hintnone</const></edit>
    <edit name="rgba" mode="assign"><const>none</const></edit>
    </match>
    </fontconfig>
    And here's the result:
    Note that hinting is still being applied to the fonts even though it has been disabled in fontconfig.
    Applying the above rules to the system-wide /etc/fonts/conf.d location produces the exact same result.  Here's what is linked there now (and I've moved everything out of here too and it made no difference):
    $ ls -l /etc/fonts/conf.d/
    total 4
    lrwxrwxrwx 1 root root 39 2009-06-13 11:08 20-fix-globaladvance.conf -> ../conf.avail/20-fix-globaladvance.conf
    lrwxrwxrwx 1 root root 39 2009-06-13 11:08 20-unhint-small-vera.conf -> ../conf.avail/20-unhint-small-vera.conf
    lrwxrwxrwx 1 root root 42 2009-06-13 11:08 29-replace-bitmap-fonts.conf -> ../conf.avail/29-replace-bitmap-fonts.conf
    lrwxrwxrwx 1 root root 36 2009-06-13 11:08 30-metric-aliases.conf -> ../conf.avail/30-metric-aliases.conf
    lrwxrwxrwx 1 root root 33 2009-06-13 11:08 30-urw-aliases.conf -> ../conf.avail/30-urw-aliases.conf
    lrwxrwxrwx 1 root root 30 2009-06-13 11:08 40-nonlatin.conf -> ../conf.avail/40-nonlatin.conf
    lrwxrwxrwx 1 root root 27 2009-06-13 11:08 45-latin.conf -> ../conf.avail/45-latin.conf
    lrwxrwxrwx 1 root root 31 2009-06-13 11:08 49-sansserif.conf -> ../conf.avail/49-sansserif.conf
    lrwxrwxrwx 1 root root 26 2009-06-13 11:08 50-user.conf -> ../conf.avail/50-user.conf
    lrwxrwxrwx 1 root root 27 2009-06-13 11:08 51-local.conf -> ../conf.avail/51-local.conf
    lrwxrwxrwx 1 root root 27 2009-06-13 11:08 60-latin.conf -> ../conf.avail/60-latin.conf
    lrwxrwxrwx 1 root root 35 2009-06-13 11:08 65-fonts-persian.conf -> ../conf.avail/65-fonts-persian.conf
    lrwxrwxrwx 1 root root 30 2009-06-13 11:08 65-nonlatin.conf -> ../conf.avail/65-nonlatin.conf
    lrwxrwxrwx 1 root root 29 2009-06-13 11:08 69-unifont.conf -> ../conf.avail/69-unifont.conf
    lrwxrwxrwx 1 root root 31 2009-06-13 11:08 80-delicious.conf -> ../conf.avail/80-delicious.conf
    lrwxrwxrwx 1 root root 31 2009-06-13 11:08 90-synthetic.conf -> ../conf.avail/90-synthetic.conf
    -rw-r--r-- 1 root root 959 2008-07-06 15:08 README
    I run a minimal X desktop (dwm). No gnome-settings-daemon.  No font settings declared in .Xdefaults either.  I manage everything via ~/.fonts.conf and every other application looks great.
    Last edited by thayer (2009-07-08 19:37:29)

  • [SOLVED] [dwm] Can't start dwm

    Hi!
    I've recently entered the world of tiling WM and started with dwm.
    Since I'm kinda insecure, and wanted to keep gnome as well, I've followed every single step in the wiki article and used the ~/.Xclients way, so I could start dwm from gdm (I've followed also the steps in the discussion page as well).
    Then, when I tried to startup dwm from gdm, it doesn't start, and goes back again to gdm.
    My ~/.Xclients file is the following:
    setxkbmap -layout pt
    #relogio
    while true; do
    xsetroot -name "$( date +"%F %R" )"
    sleep 1m # Update time every minute
    done &
    # #estado da bateria
    # while true; do
    # batt=$(LC_ALL=C acpi -b)
    # case $batt in
    # *Discharging*)
    # batt="${batt#* * * }"
    # batt="${batt%%, *} "
    # batt=""
    # esac
    # xsetroot -name "$batt$(date +%R)"
    # sleep 60
    # done &
    #conky bar
    conky | while read -r; do xsetroot -name "$REPLY"; done &
    #executar o dwm
    exec dwm
    It's all things copied from the wiki page, just for testing if everything was fine...
    My /usr/share/xsessions/dwm.desktop file is:
    [Desktop Entry]
    Encoding=UTF-8
    Name=Dwm
    Comment=Dynamic window manager
    Exec=/usr/local/bin/dwm
    Icon=dwm
    Type=XSession
    And I've created a /usr/share/xsessions/user.desktop file that looks like this:
    [Desktop Entry]
    Encoding=UTF-8
    Name=User XSession script
    Comment=Runs your ~./Xsession script
    Exec=/etc/X11/Xsession
    Type=Application
    Thanks in advance for any help, I've searched the forums and used google and couldn't find any answer to this problem :S
    Last edited by Aeriel (2011-09-01 17:19:02)

    haxit, thanks I've managed to solve the problem!
    I've installed SLiM and set up everything in .xinitrc.
    The dwm.desktop doesn't match with yours because I've changed somethings and because I didn't backup the file (I know, it's super dumb and stupid) I had to paste the defaults I found in the web.
    Thanks.
    Fellow gdm and dwm users, an advice, put everything in .xinitrc. It's easier.
    Last edited by Aeriel (2011-09-01 17:19:30)

  • [solved] urxvt terminal: Bitmap fonts not working

    Hello
    I can't get bitmap fonts to work with urxtv (aka rxvt-unicode).
    Here's output of fc-list : file -command
    $ fc-list : file
    Fontconfig warning: "/etc/fonts/conf.d/53-monospace-lcd-filter.conf", line 10: Having multiple values in <test> isn't supported and may not work as expected
    /usr/share/fonts/TTF/DejaVuSerif-BoldItalic.ttf:
    /usr/share/fonts/Type1/a010015l.pfb:
    /usr/share/fonts/TTF/comic.ttf:
    /usr/share/fonts/Type1/n019043l.pfb:
    /usr/share/fonts/TTF/DejaVuSans-ExtraLight.ttf:
    /usr/share/fonts/Type1/n019044l.pfb:
    /usr/share/fonts/TTF/DroidSansArmenian.ttf:
    /usr/share/fonts/TTF/times.ttf:
    /usr/share/fonts/TTF/DroidSansEthiopic-Regular.ttf:
    /usr/share/fonts/TTF/DejaVuSerif-Bold.ttf:
    /usr/share/fonts/Type1/n022003l.pfb:
    /usr/share/fonts/Type1/n022004l.pfb:
    /usr/share/fonts/TTF/arial.ttf:
    /usr/share/fonts/TTF/DroidSansHebrew-Regular.ttf:
    /usr/share/fonts/Type1/n021023l.pfb:
    /usr/share/fonts/Type1/n021024l.pfb:
    /usr/share/fonts/TTF/ariblk.ttf:
    /usr/share/fonts/Type1/n019023l.pfb:
    /usr/share/fonts/TTF/DroidSansFallbackLegacy.ttf:
    /usr/share/fonts/Type1/n022023l.pfb:
    /usr/share/fonts/TTF/verdana.ttf:
    /usr/share/fonts/Type1/n022024l.pfb:
    /usr/share/fonts/Type1/n019024l.pfb:
    /usr/share/fonts/TTF/TerminusBold.ttf:
    /usr/share/fonts/cantarell/Cantarell-Bold.otf:
    /usr/share/fonts/TTF/DejaVuSansCondensed.ttf:
    /usr/share/fonts/TTF/timesi.ttf:
    /usr/share/fonts/TTF/DroidKufi-Bold.ttf:
    /usr/share/fonts/TTF/VeraMoBI.ttf:
    /usr/share/fonts/TTF/DejaVuSansMono-BoldOblique.ttf:
    /usr/share/fonts/TTF/DroidKufi-Regular.ttf:
    /usr/share/fonts/Type1/n021003l.pfb:
    /usr/share/fonts/Type1/n021004l.pfb:
    /usr/share/fonts/TTF/andalemo.ttf:
    /usr/share/fonts/TTF/DroidSansHebrew-Bold.ttf:
    /usr/share/fonts/TTF/Ubuntu-B.ttf:
    /usr/share/fonts/TTF/Ubuntu-R.ttf:
    /usr/share/fonts/Type1/n019003l.pfb:
    /usr/share/fonts/TTF/Ubuntu-C.ttf:
    /usr/share/fonts/TTF/VeraMoBd.ttf:
    /usr/share/fonts/TTF/TerminusMediumItalic.ttf:
    /usr/share/fonts/TTF/DejaVuSerifCondensed-BoldItalic.ttf:
    /usr/share/fonts/TTF/DejaVuSerif-Italic.ttf:
    /usr/share/fonts/Type1/n019004l.pfb:
    /usr/share/fonts/TTF/VeraMoIt.ttf:
    /usr/share/fonts/TTF/DejaVuSansMono.ttf:
    /usr/share/fonts/TTF/DroidSansGeorgian.ttf:
    /usr/share/fonts/TTF/DroidSansEthiopic-Bold.ttf:
    /usr/share/fonts/TTF/Ubuntu-L.ttf:
    /usr/share/fonts/TTF/DroidSansJapanese.ttf:
    /usr/share/fonts/TTF/TerminusMedium.ttf:
    /usr/share/fonts/TTF/DejaVuSans-BoldOblique.ttf:
    /usr/share/fonts/TTF/VeraMono.ttf:
    /usr/share/fonts/TTF/DejaVuSansCondensed-Oblique.ttf:
    /usr/share/fonts/TTF/DroidNaskh-Regular.ttf:
    /usr/share/fonts/TTF/DejaVuSans.ttf:
    /usr/share/fonts/TTF/cour.ttf:
    /usr/share/fonts/TTF/georgia.ttf:
    /usr/share/fonts/TTF/DejaVuSansCondensed-Bold.ttf:
    /usr/share/fonts/TTF/VeraSe.ttf:
    /usr/share/fonts/TTF/UbuntuMono-BI.ttf:
    /usr/share/fonts/TTF/DroidSerif-BoldItalic.ttf:
    /usr/share/fonts/Type1/c059036l.pfb:
    /usr/share/fonts/TTF/VeraSeBd.ttf:
    /usr/share/fonts/TTF/DroidSans-Bold.ttf:
    /usr/share/fonts/Type1/c059033l.pfb:
    /usr/share/fonts/TTF/Ubuntu-RI.ttf:
    /usr/share/fonts/TTF/DejaVuSansMono-Oblique.ttf:
    /usr/share/fonts/cantarell/Cantarell-Regular.otf:
    /usr/share/fonts/TTF/VeraBI.ttf:
    /usr/share/fonts/TTF/DroidSansTamil-Regular.ttf:
    /usr/share/fonts/TTF/VeraIt.ttf:
    /usr/share/fonts/TTF/DroidSerif-Regular.ttf:
    /usr/share/fonts/TTF/DroidNaskh-Regular-SystemUI.ttf:
    /usr/share/fonts/Type1/d050000l.pfb:
    /usr/share/fonts/TTF/VeraBd.ttf:
    /usr/share/fonts/TTF/DroidSans.ttf:
    /usr/share/fonts/TTF/UbuntuMono-RI.ttf:
    /usr/share/fonts/Type1/c059016l.pfb:
    /usr/share/fonts/Type1/s050000l.pfb:
    /usr/share/fonts/TTF/verdanai.ttf:
    /usr/share/fonts/TTF/verdanaz.ttf:
    /usr/share/fonts/Type1/c059013l.pfb:
    /usr/share/fonts/TTF/Ubuntu-BI.ttf:
    /usr/share/fonts/TTF/verdanab.ttf:
    /usr/share/fonts/TTF/trebucit.ttf:
    /usr/share/fonts/TTF/DejaVuSerifCondensed-Italic.ttf:
    /usr/share/fonts/TTF/Ubuntu-LI.ttf:
    /usr/share/fonts/TTF/DejaVuSans-Bold.ttf:
    /usr/share/fonts/TTF/DejaVuSerif.ttf:
    /usr/share/fonts/TTF/georgiai.ttf:
    /usr/share/fonts/TTF/DejaVuSansMono-Bold.ttf:
    /usr/share/fonts/TTF/DroidSansThai.ttf:
    /usr/share/fonts/TTF/trebucbd.ttf:
    /usr/share/fonts/TTF/DejaVuSerifCondensed.ttf:
    /usr/share/fonts/TTF/couri.ttf:
    /usr/share/fonts/TTF/georgiab.ttf:
    /usr/share/fonts/Type1/b018032l.pfb:
    /usr/share/fonts/TTF/DroidNaskh-Bold.ttf:
    /usr/share/fonts/TTF/georgiaz.ttf:
    /usr/share/fonts/TTF/timesbi.ttf:
    /usr/share/fonts/TTF/arialbd.ttf:
    /usr/share/fonts/Type1/b018035l.pfb:
    /usr/share/fonts/TTF/UbuntuMono-B.ttf:
    /usr/share/fonts/TTF/trebucbi.ttf:
    /usr/share/fonts/TTF/UbuntuMono-R.ttf:
    /usr/share/fonts/TTF/arialbi.ttf:
    /usr/share/fonts/TTF/DroidSansArabic.ttf:
    /usr/share/fonts/TTF/timesbd.ttf:
    /usr/share/fonts/TTF/DroidSerif-Bold.ttf:
    /usr/share/fonts/TTF/DroidSansDevanagari-Regular.ttf:
    /usr/share/fonts/TTF/DejaVuSansCondensed-BoldOblique.ttf:
    /usr/share/fonts/Type1/z003034l.pfb:
    /usr/share/fonts/TTF/DroidSansFallback.ttf:
    /usr/share/fonts/TTF/courbi.ttf:
    /usr/share/fonts/TTF/comicbd.ttf:
    /usr/share/fonts/Type1/b018012l.pfb:
    /usr/share/fonts/Type1/p052004l.pfb:
    /usr/share/fonts/TTF/DroidSerif-Italic.ttf:
    /usr/share/fonts/TTF/webdings.ttf:
    /usr/share/fonts/Type1/b018015l.pfb:
    /usr/share/fonts/Type1/a010033l.pfb:
    /usr/share/fonts/TTF/DroidSansTamil-Bold.ttf:
    /usr/share/fonts/Type1/p052003l.pfb:
    /usr/share/fonts/Type1/a010035l.pfb:
    /usr/share/fonts/TTF/DejaVuSerifCondensed-Bold.ttf:
    /usr/share/fonts/Type1/n019063l.pfb:
    /usr/share/fonts/TTF/trebuc.ttf:
    /usr/share/fonts/TTF/courbd.ttf:
    /usr/share/fonts/Type1/n019064l.pfb:
    /usr/share/fonts/TTF/Vera.ttf:
    /usr/share/fonts/TTF/DroidSansMono.ttf:
    /usr/share/fonts/Type1/p052024l.pfb:
    /usr/share/fonts/TTF/impact.ttf:
    /usr/share/fonts/TTF/ariali.ttf:
    /usr/share/fonts/TTF/DejaVuSans-Oblique.ttf:
    /usr/share/fonts/Type1/a010013l.pfb:
    /usr/share/fonts/TTF/DroidSansFallbackFull.ttf:
    /usr/share/fonts/Type1/p052023l.pfb:
    What I've read, there should be /usr/share/fonts/local/* too in that list.
    I run my window manager, dwm with startx and ~/.xinitrc has these lines before dwm:
    xset +fp /usr/share/fonts/local
    xset fp rehash
    I have also tried to include those with xorg.conf:
    $ cat /etc/X11/xorg.conf
    Section "Files"
    FontPath "/usr/share/fonts/local/"
    EndSection
    I'm using Ubuntu's patched versions of freetype, fontconfig and cairo if that has anything to do with my problem:
    freetype2-ubuntu fontconfig-ubuntu cairo-ubuntu
    Xft fonts work fine with urxvt, but bitmaps don't. What am I missing?
    Last edited by NAND (2013-01-29 16:13:00)

    There isn't a "tamsynu" family in the tamsyn-font package.  You're trying to use a font that doesn't exist on your machine.
    $ xlsfonts -fn "-*-tamsynu-*"
    xlsfonts: pattern "-*-tamsynu-*" unmatched
    $ xlsfonts -fn "-*-tamsyn-*"
    -misc-tamsyn-bold-r-normal--0-0-100-100-c-0-iso8859-1
    -misc-tamsyn-bold-r-normal--12-87-100-100-c-60-iso8859-1
    << And more >>
    The syntax for the resource is fine, but it is case-sensitive.  The class is 'URxvt', an instance would be 'urxvt'.
    This should be good for a first attempt at the proper size:
    urxvt.font: -misc-tamsyn-medium-r-normal--14-101-100-100-c-70-iso8859-1
    urxvt.boldFont: -misc-tamsyn-bold-r-normal--14-101-100-100-c-70-iso8859-1
    That's about equal to DejaVu Sans Mono at 8 points.
    If you have rebuilt your font cache, either by restarting X or running 'fc-cache -f', and you want to use Xft, then this is equivalent (Tamsyn does not use anti-aliasing):
    urxvt.font: xft:Tamsyn:style=Regular:size=10.1
    urxvt.boldFont: xft:Tamsyn:style=Bold:size=10.1

  • Noob needs help using/managing large font collection in os10

    Hope this is the correct forum for this question. I'm a os10 noob starting at a new, small startup design-oriented biz (6-7 macs) that needs to manage fonts - 100s, over a 1000. Other places I've worked used Font Reserve and I'm familiar with that program but I never knew if it came with os10 or you had to go buy it, and if you needed to buy a separate copy for each computer?
    I'm trying to help get this biz set-up, but I know NOTHING about font usage/set-up in os10. I've always used ATM Deluxe4.6 (os9) and have over 2000 fonts nicely arranged in sets (took me an entire day, way back when). Would love to transfer these arranged sets into os10, if possible.
    Is there a built-in font mgmt in os10? Is it any good for large collections? Is Font Reserve a good program for large font collections?
    I don't even know where os10 stores fonts or the right questions to ask. Pls point me in the right direction!
    TIA

    Fontbook is ok for dealing with a handful of fonts on an occasional basis, but for pro design work you should run, don't walk, to: http://www.linotype.com/fontexplorerX/
    FontExplorerX beats the pants of any other font management tool I've used on the mac after many years of ATM, Suitcase & Font Agent Pro. FEX looks and feels like an "iTunes for Fonts" - it's fast, stable, clean and simple to use and best of all for a small biz (like me) - it's FREE! :O

  • [SOLVED] Network manager only works as root

    Hello everyone,
    I am brand new to arch and have been quite impressed over the past few days over all it has to offer.  Everything has been running quite smoothly and I am now in the process of setting up wireless.  I installed network manager and was able to connect to a wireless network as root.  For my regular user, however, I am running into some issues.  First one was that the nm-applet could not be opened in fluxbox.  I received the following error:
    ** (nm-applet:1576): WARNING **: <WARN> request_name(): Could not acquire the NetworkManagerUserSettings service.
    Error: (9) Connection ":1.27" is not allowed to own the service "org.freedesktop.NetworkManagerUserSettings" due to security policies in the configuration file
    I "fixed" this by adding the following to /etc/dbus-1/system.d/nm-applet.conf.  Original credit goes to the user in this thread (I only slightly modified his code): https://bbs.archlinux.org/viewtopic.php?id=63576
    <!-- hack -->
    <policy user="myusername">
    <allow own="org.freedesktop.NetworkManagerUserSettings"/>
    <allow send_destination="org.freedesktop.NetworkManagerUserSettings"/>
    <allow send_interface="org.freedesktop.NetworkManagerUserSettings"/>
    <deny send_interface="org.freedesktop.NetworkManagerSetting.Secrets"/>
    </policy>
    <!-- end of hack -->
    Now the applet shows up for my regular user, the problem being that it doesn't connect to the wireless networks (only wired).  Whenever I try to connect to wireless, nothing happens (the symbol doesn't change in any way, i.e. the green spheres should start circling); I am still able to succesfully connect to wireless using root.  Does anyone know what the source of this issue may be?  Thank you very much in advance.
    Last edited by Ipozya (2011-01-20 04:49:55)

    Solved: Had to install consolekit and add "ck-launch-session" to my .xinitrc file when starting fluxbox.
    Edit: Please note that this also allowed me to remove the previous change to nm-applet.conf (no longer necessary)!
    Last edited by Ipozya (2011-01-20 04:54:20)

  • [SOLVED]Network Manager dispatcher unexpected unmounting davfs folders

    I have used Network Manager dispatcher to configure automatic mount of cloud storage using  webdav. i have used davfs2 to perform mounting and wrote a script for NM dispatcher.
    If i run /etc/NetworkManager/dispatcher.d/10-YandexDisk.sh manualy all works perfect.
    If this script will be executed by NM-dispatcher all will fine(YandexDisk mounts successfully, sycronization - successfully), but after ~10 seconds mount.davfs gets signal 15.
    sudo systemctl status NetworkManager-dispatcher
    NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service
    Loaded: loaded (/usr/lib/systemd/system/NetworkManager-dispatcher.service; enabled)
    Active: inactive (dead) since Wed 2013-07-31 23:12:55 EEST; 11s ago
    Process: 12132 ExecStart=/usr/lib/networkmanager/nm-dispatcher.action (code=exited, status=0/SUCCESS)
    Jul 31 23:12:44 DellLaptop nm-dispatcher.action[12132]: --- yandex.ru ping statistics ---
    Jul 31 23:12:44 DellLaptop nm-dispatcher.action[12132]: 2 packets transmitted, 2 received, 0% packet loss, time 1000ms
    Jul 31 23:12:44 DellLaptop nm-dispatcher.action[12132]: rtt min/avg/max/mdev = 36.570/37.776/38.983/1.222 ms
    Jul 31 23:12:44 DellLaptop mount.davfs[12138]: davfs2 1.4.7
    Jul 31 23:12:44 DellLaptop mount.davfs[12138]: mount.davfs -o auto,nodev,dir_mode=755,exec,file_mode=755,gid=users,_netdev,rw,uid=lexa https://webdav.yandex.ru/ /home/lexa/.../YandexDisk
    Jul 31 23:12:44 DellLaptop nm-dispatcher.action[12132]: >mounted https://webdav.yandex.ru/ to /home/lexa/Data/YandexDisk
    Jul 31 23:12:44 DellLaptop nm-dispatcher.action[12132]: >exiting!!
    Jul 31 23:12:55 DellLaptop mount.davfs[12140]: pid 12140, got signal 15
    Jul 31 23:12:55 DellLaptop mount.davfs[12140]: unmounting /home/lexa/Data/YandexDisk
    Jul 31 23:12:55 DellLaptop mount.davfs[12140]: unmounting failed
    Why does this happen? Who send this signal ?
    /etc/NetworkManager/dispatcher.d/10-YandexDisk.sh
    #!/bin/bash
    #this script will mount WebDav folder
    # by pirat9600q
    #given arguments are
    #$1 is interface name
    #$2 is state "up" or "down"
    eth="enp7s0" #ethernet interface
    wlan="wlp8s0" #wireless interface
    ignore_connections="Pirat9600q" #WiFi SSIDs that must be ignored
    mount_dir="/home/lexa/Data/YandexDisk" #mount point directory
    remote_server="https://webdav.yandex.ru/" #server address
    #local acces options
    local_user="lexa" #files owner user
    local_group="users" #files owner group
    echo "<<<started with '$1' and '$2' arguments>>>"
    echo "> our mount dir is '$mount_dir'"
    echo "> and remote server is '$remote_server'"
    case "$2" in
    up)
    #first of all we need to check internet connection
    if (ping -c 2 -q yandex.ru); then
    #we are online
    if [ "$1" = "$wlan" ]; then
    #Does this network is ignored ?
    SSID=$(iwgetid -r)
    for x in $ignore_connections; do
    if [ "$x" = "$SSID" ]; then
    echo "> WiFi SSID '$SSID' is in ignore list, exiting"
    exit
    fi
    done
    fi
    if [ ! -d "$mount_dir" ]; then
    fusermount -u "$mount_dir"
    fi
    if(mount.davfs -o auto,nodev,dir_mode=755,exec,file_mode=755,gid=$local_group,_netdev,rw,uid=$local_user "$remote_server" "$mount_dir"); then
    echo ">mounted $remote_server to $mount_dir"
    echo ">invoking syncronization script"
    /home/lexa/.scripts/SyncYandexDisk.sh
    else
    echo ">error mounting $remote_server to $mount_dir !!!"
    fi
    else
    echo ">network down";
    exit
    fi;;
    down)
    echo ">unmounting '$mount_dir'"
    fusermount -u "$mount_dir"
    echo ">removing $mount_dir"
    rmdir $mount_dir
    echo ">finished";;
    esac
    echo ">exiting!!"
    exit
    /home/lexa/.scripts/SyncYandexDisk.sh
    #!/bin/bash
    #this script will synchronize local storage
    #with mounted Yandex Disk folder
    # by pirat9600q
    source_dir="/home/lexa/Data/YandexDisk/" #mount point directory
    dest_dir="/home/lexa/Data/ARC/CloudSync/" #local storage location
    echo "<<<started with:"
    echo " source folder '$source_dir'"
    echo " and destination folder '$dest_dir'"
    if [ ! -L ${source_dir}Foto ]; then #if not link
    echo ">invoking syncronization from '$source_dir' to '$dest_dir'"
    echo ">syncronizing 'Foto' folder"
    if !(rsync --quiet --recursive --update --executability --owner --group --delete-before ${source_dir}Foto/ ${dest_dir}Foto/); then
    echo ">>error"
    else
    echo ">>success"
    fi
    echo ">syncronizing 'Documents' folder"
    if !(rsync --quiet --recursive --update --executability --owner --group --delete-before ${source_dir}Documents/ ${dest_dir}Documents/); then
    echo ">>error"
    else
    echo ">>success"
    fi
    else
    echo ">syncronization will not be made, because source is fake"
    fi
    echo ">exiting"
    exit 0
    P.S. sorry for my English
    Last edited by pirat9600q (2013-08-02 08:14:44)

    I solved the problem. Here is a little explanation.
    After NetworkManager establishes network connection, NetworkManager-dispatcher service is started( for ~10 seconds). This service execute /usr/lib/networkmanager/nm-dispatcher.action, which execute scripts in /etc/NetworkManager/dispatcher.d. After exiting nm-dispatcher.action mount.davfs process appears in NetworkManager-dispatcher`s CGroup. By default all processes in CGroup must be killed when service stops. To change this behavior I have added KillMode=process to [Service] section of NetworkManager-dispatcher.service file.
    sudo nano /usr/lib/systemd/system/NetworkManager-dispatcher.service
    Here is it`s code now.
    [Unit]
    Description=Network Manager Script Dispatcher Service
    [Service]
    Type=dbus
    BusName=org.freedesktop.nm_dispatcher
    ExecStart=/usr/lib/networkmanager/nm-dispatcher.action
    KillMode=process
    [Install]
    WantedBy=multi-user.target
    Alias=dbus-org.freedesktop.nm-dispatcher.service

  • [SOLVED] Cannot get japanese fonts working in console

    First time with Arch. Did a clean install yesturday with Plasma as my choice of GUI.
    I have everything work, except for getting Japanese font support in consoles.
    First, fonts worked inside Dolphin, but looked terrible. So I added the infinality repos and installed infinality-bundle, infinality-bundle-multilib, ibfonts-meta-base, and ibfonts-meta-extended.
    This was probably overkill, but fonts look perfect in both my file manager and applications, but still no support in console, konsole, uxterm, or yakuake terminals.
    Then I made sure both "en_US.UTF-8" and "ja_JP.UT8" inside of /etc/locale.gen were uncommended and then ran "locale-gen" as root to generate the locales. After a reboot the fonts still wont work, the appear as ? in console.
    Any help would be greatly appreciated.
    Last edited by lolihunter (2015-05-08 16:51:07)

    After a lot of messing around, I finally got it to work.
    Not only did "en_US.UTF-8" and "ja_JP.UT8" need to uncommented, but also "en_US.ISO-8859-1" and "ja_JP.EUC-JP".
    Running "sudo locale-gen" then returned:
    Generating locales...
      en_US.UTF-8... done
      en_US.ISO-8859-1... done
      ja_JP.EUC-JP... done
      ja_JP.UTF-8... done
    Generation complete.
    As expected. Oddly enough, the output of "locale" has not changed at all, but now japanese fonts show up correctly in shell and terminals, even without a reboot!

  • [SOLVED] Display manager

    I am new to Arch. I have installed Arch, X, Mate (as the DE) and Lightdm as the display manager.  Lightdm will only start in X, with the sudo lightdm command. From there, you can get into Mate.
    Mate seems to work just fine. However, it would be nice to be able to boot successfully to a display manager and then into a desktop environment.
    Before Lightdm, I had installed gdm with xfce. Gdm starts up properly but will not properly start either xfce or Mate. Gdm goes to a screen that is akin to the login screen but with nothing else. I just tried slim, which will not start up, either on boot up or from x.
    I am not sure what to post for logs on this. In any event, my computer is an old Dell Dimension 2400, with a pentium 4 processor, intel graphics and 2 gb of memory. I am not sure what log would be helpful here but, if someone could help me with my issue, it would be appreciated.
    My x-0-greeter.log reads:
    ** (process:290): WARNING **: Failed to open CK session: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.ConsoleKit was not provided by any .service files
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_shell_parse_argv: assertion `command_line != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Failed to open sessions directory: Error opening directory '/usr/share/lightdm/remote-sessions': No such file or directory
    ** (lightdm-gtk-greeter:331): WARNING **: Failed to load user image: Failed to open file '/home/allen/.face': Permission denied
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XKeyboardLayouts
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XHasMessages
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type: assertion `value != NULL' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_type_is_subtype_of: assertion `g_variant_type_check (type)' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type_string: assertion `value != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Unexpected accounts property type for XHasMessages: (null)
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_unref: assertion `value != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XKeyboardLayouts
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XHasMessages
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type: assertion `value != NULL' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_type_is_subtype_of: assertion `g_variant_type_check (type)' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type_string: assertion `value != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Unexpected accounts property type for XHasMessages: (null)
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_unref: assertion `value != NULL' failed
    That seems to include some errors. The x-0.log reads:
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.9.7-1-ARCH i686
    Current Operating System: Linux archbox 3.9.9-1-ARCH #1 SMP PREEMPT Wed Jul 3 22:52:05 CEST 2013 i686
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5eec6b5e-dd19-4f9d-8e3b-39b950052c48 ro quiet
    Build Date: 01 July 2013 10:52:25AM
    Current version of pixman: 0.30.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 24 22:13:55 2013
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    (II) AIGLX: Suspending AIGLX clients for VT switch
    setversion 1.4 failed
    The lightdm.log reads:
    [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log
    [+0.00s] DEBUG: Starting Light Display Manager 1.6.0, UID=0 PID=532
    [+0.00s] DEBUG: Loaded configuration from /etc/lightdm/lightdm.conf
    [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager
    [+0.00s] DEBUG: Using Xephyr for X servers
    [+0.00s] DEBUG: Registered seat module xlocal
    [+0.00s] DEBUG: Registered seat module xremote
    [+0.00s] DEBUG: Adding default seat
    [+0.00s] DEBUG: Starting seat
    [+0.00s] DEBUG: Starting new display for greeter
    [+0.00s] DEBUG: Starting local X display
    [+0.02s] DEBUG: Could not run plymouth --ping: Failed to execute child process "plymouth" (No such file or directory)
    [+0.02s] DEBUG: Using VT 7
    [+0.02s] DEBUG: Activating VT 7
    [+0.03s] DEBUG: Logging to /var/log/lightdm/x-2.log
    [+0.03s] DEBUG: Writing X server authority to /run/lightdm/root/:2
    [+0.03s] DEBUG: Launching X Server
    [+0.03s] DEBUG: Launching process 536: /usr/bin/Xephyr :2 -auth /run/lightdm/root/:2 -nolisten tcp vt7 -novtswitch
    [+0.06s] DEBUG: Waiting for ready signal from X server :2
    [+0.06s] DEBUG: Acquired bus name org.freedesktop.DisplayManager
    [+0.06s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0
    The log from slim reads:
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    The xorg.0.log reads:
    [ 6.928]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 6.928] X Protocol Version 11, Revision 0
    [ 6.928] Build Operating System: Linux 3.9.7-1-ARCH i686
    [ 6.928] Current Operating System: Linux archbox 3.9.9-1-ARCH #1 SMP PREEMPT Wed Jul 3 22:52:05 CEST 2013 i686
    [ 6.929] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5eec6b5e-dd19-4f9d-8e3b-39b950052c48 ro quiet
    [ 6.929] Build Date: 01 July 2013 10:52:25AM
    [ 6.929]
    [ 6.929] Current version of pixman: 0.30.0
    [ 6.929] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 6.929] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 6.929] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 24 22:13:55 2013
    [ 6.958] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 6.978] (==) No Layout section. Using the first Screen section.
    [ 6.978] (==) No screen section available. Using defaults.
    [ 6.978] (**) |-->Screen "Default Screen Section" (0)
    [ 6.978] (**) | |-->Monitor "<default monitor>"
    [ 6.985] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 6.985] (==) Automatically adding devices
    [ 6.985] (==) Automatically enabling devices
    [ 6.985] (==) Automatically adding GPU devices
    [ 7.000] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 7.000] Entry deleted from font path.
    [ 7.000] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 7.000] Entry deleted from font path.
    [ 7.000] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 7.000] Entry deleted from font path.
    [ 7.000] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 7.000] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 7.000] Entry deleted from font path.
    [ 7.000] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 7.000] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 7.000] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 7.000] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 7.005] (II) Loader magic: 0x8258620
    [ 7.005] (II) Module ABI versions:
    [ 7.005] X.Org ANSI C Emulation: 0.4
    [ 7.005] X.Org Video Driver: 14.1
    [ 7.005] X.Org XInput driver : 19.1
    [ 7.005] X.Org Server Extension : 7.0
    [ 7.006] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 7.007] (--) PCI:*(0:0:2:0) 8086:2562:1028:0160 rev 1, Mem @ 0xe8000000/134217728, 0xfeb80000/524288
    [ 7.008] Initializing built-in extension Generic Event Extension
    [ 7.008] Initializing built-in extension SHAPE
    [ 7.008] Initializing built-in extension MIT-SHM
    [ 7.008] Initializing built-in extension XInputExtension
    [ 7.008] Initializing built-in extension XTEST
    [ 7.008] Initializing built-in extension BIG-REQUESTS
    [ 7.008] Initializing built-in extension SYNC
    [ 7.008] Initializing built-in extension XKEYBOARD
    [ 7.008] Initializing built-in extension XC-MISC
    [ 7.008] Initializing built-in extension SECURITY
    [ 7.008] Initializing built-in extension XINERAMA
    [ 7.008] Initializing built-in extension XFIXES
    [ 7.008] Initializing built-in extension RENDER
    [ 7.008] Initializing built-in extension RANDR
    [ 7.008] Initializing built-in extension COMPOSITE
    [ 7.008] Initializing built-in extension DAMAGE
    [ 7.008] Initializing built-in extension MIT-SCREEN-SAVER
    [ 7.008] Initializing built-in extension DOUBLE-BUFFER
    [ 7.008] Initializing built-in extension RECORD
    [ 7.008] Initializing built-in extension DPMS
    [ 7.008] Initializing built-in extension X-Resource
    [ 7.008] Initializing built-in extension XVideo
    [ 7.008] Initializing built-in extension XVideo-MotionCompensation
    [ 7.008] Initializing built-in extension XFree86-VidModeExtension
    [ 7.008] Initializing built-in extension XFree86-DGA
    [ 7.008] Initializing built-in extension XFree86-DRI
    [ 7.008] Initializing built-in extension DRI2
    [ 7.008] (II) LoadModule: "glx"
    [ 7.027] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 7.042] (II) Module glx: vendor="X.Org Foundation"
    [ 7.042] compiled for 1.14.2, module version = 1.0.0
    [ 7.042] ABI class: X.Org Server Extension, version 7.0
    [ 7.042] (==) AIGLX enabled
    [ 7.042] Loading extension GLX
    [ 7.042] (==) Matched intel as autoconfigured driver 0
    [ 7.042] (==) Matched intel as autoconfigured driver 1
    [ 7.042] (==) Matched vesa as autoconfigured driver 2
    [ 7.042] (==) Matched modesetting as autoconfigured driver 3
    [ 7.043] (==) Matched fbdev as autoconfigured driver 4
    [ 7.043] (==) Assigned the driver to the xf86ConfigLayout
    [ 7.043] (II) LoadModule: "intel"
    [ 7.044] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 7.098] (II) Module intel: vendor="X.Org Foundation"
    [ 7.098] compiled for 1.14.2, module version = 2.21.12
    [ 7.098] Module class: X.Org Video Driver
    [ 7.098] ABI class: X.Org Video Driver, version 14.1
    [ 7.098] (II) LoadModule: "vesa"
    [ 7.098] (WW) Warning, couldn't open module vesa
    [ 7.098] (II) UnloadModule: "vesa"
    [ 7.098] (II) Unloading vesa
    [ 7.098] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 7.098] (II) LoadModule: "modesetting"
    [ 7.099] (WW) Warning, couldn't open module modesetting
    [ 7.099] (II) UnloadModule: "modesetting"
    [ 7.099] (II) Unloading modesetting
    [ 7.099] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 7.099] (II) LoadModule: "fbdev"
    [ 7.099] (WW) Warning, couldn't open module fbdev
    [ 7.099] (II) UnloadModule: "fbdev"
    [ 7.099] (II) Unloading fbdev
    [ 7.099] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 7.099] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), HD Graphics, HD Graphics 4600,
    Haswell Desktop (GT3), HD Graphics, HD Graphics 4600,
    Haswell Mobile (GT3), HD Graphics, HD Graphics P4600/P4700,
    Haswell Server (GT3), Haswell (GT1), Haswell (GT2), Haswell (GT3),
    HD Graphics, Haswell (GT2), Haswell (GT3), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT3),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT3), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT3),
    Haswell SDV (GT1), Haswell SDV (GT2), Haswell SDV (GT3),
    Haswell SDV (GT1), Haswell SDV (GT2), Haswell SDV (GT3),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Iris(TM) Graphics 5100, HD Graphics, HD Graphics 4400,
    HD Graphics 5000, Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Iris(TM) Graphics 5100, Haswell ULT (GT1), Haswell ULT (GT2),
    Iris(TM) Graphics 5100, HD Graphics, HD Graphics 4200,
    Iris(TM) Graphics 5100, Haswell CRW Desktop (GT1), HD Graphics 4600,
    Iris(TM) Pro Graphics 5200, Haswell CRW Mobile (GT1),
    HD Graphics 4600, Iris(TM) Pro Graphics 5200,
    Haswell CRW Server (GT1), Haswell CRW Server (GT2),
    Iris(TM) Pro Graphics 5200, Haswell CRW (GT1), Haswell CRW (GT2),
    Iris(TM) Pro Graphics 5200, Haswell CRW (GT1), Haswell CRW (GT2),
    Iris(TM) Pro Graphics 5200, ValleyView PO board
    [ 7.101] (++) using VT number 7
    [ 7.101] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 7.101] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 7.101] (==) intel(0): RGB weight 888
    [ 7.101] (==) intel(0): Default visual is TrueColor
    [ 7.101] (--) intel(0): Integrated Graphics Chipset: Intel(R) 845G
    [ 7.101] (**) intel(0): Relaxed fencing disabled
    [ 7.102] (**) intel(0): Wait on SwapBuffers? enabled
    [ 7.102] (**) intel(0): Triple buffering? enabled
    [ 7.102] (**) intel(0): Framebuffer tiled
    [ 7.102] (**) intel(0): Pixmaps tiled
    [ 7.102] (**) intel(0): 3D buffers tiled
    [ 7.102] (**) intel(0): SwapBuffers wait enabled
    [ 7.103] (==) intel(0): video overlay key set to 0x101fe
    [ 7.303] (II) intel(0): Output VGA1 has no monitor section
    [ 7.443] (II) intel(0): EDID for output VGA1
    [ 7.443] (II) intel(0): Manufacturer: DEL Model: 3142 Serial#: 894121267
    [ 7.443] (II) intel(0): Year: 1999 Week: 29
    [ 7.443] (II) intel(0): EDID Version: 1.2
    [ 7.443] (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 7.443] (II) intel(0): Sync: Separate
    [ 7.443] (II) intel(0): Max Image Size [cm]: horiz.: 32 vert.: 24
    [ 7.443] (II) intel(0): Gamma: 2.27
    [ 7.443] (II) intel(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 7.443] (II) intel(0): First detailed timing is preferred mode
    [ 7.443] (II) intel(0): redX: 0.645 redY: 0.321 greenX: 0.285 greenY: 0.600
    [ 7.443] (II) intel(0): blueX: 0.142 blueY: 0.057 whiteX: 0.283 whiteY: 0.298
    [ 7.443] (II) intel(0): Supported established timings:
    [ 7.443] (II) intel(0): 720x400@70Hz
    [ 7.443] (II) intel(0): 640x480@60Hz
    [ 7.443] (II) intel(0): 640x480@75Hz
    [ 7.443] (II) intel(0): 800x600@60Hz
    [ 7.443] (II) intel(0): 800x600@75Hz
    [ 7.443] (II) intel(0): 1024x768@60Hz
    [ 7.443] (II) intel(0): 1024x768@75Hz
    [ 7.443] (II) intel(0): 1280x1024@75Hz
    [ 7.443] (II) intel(0): Manufacturer's mask: 0
    [ 7.443] (II) intel(0): Supported standard timings:
    [ 7.443] (II) intel(0): #0: hsize: 1024 vsize 768 refresh: 85 vid: 22881
    [ 7.443] (II) intel(0): #1: hsize: 800 vsize 600 refresh: 85 vid: 22853
    [ 7.443] (II) intel(0): #2: hsize: 640 vsize 480 refresh: 85 vid: 22833
    [ 7.443] (II) intel(0): Supported detailed timing:
    [ 7.443] (II) intel(0): clock: 94.5 MHz Image Size: 306 x 230 mm
    [ 7.444] (II) intel(0): h_active: 1024 h_sync: 1072 h_sync_end 1168 h_blank_end 1376 h_border: 0
    [ 7.444] (II) intel(0): v_active: 768 v_sync: 769 v_sync_end 772 v_blanking: 808 v_border: 0
    [ 7.444] (II) intel(0): Serial No: 5322DE5K5379
    [ 7.444] (II) intel(0): Monitor name: DELL M780
    [ 7.444] (II) intel(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 85 kHz,
    [ 7.444] (II) intel(0): EDID (in hex):
    [ 7.444] (II) intel(0): 00ffffffffffff0010ac423133354b35
    [ 7.444] (II) intel(0): 1d0901020820187fea1269a552499924
    [ 7.444] (II) intel(0): 0e484ca54b0061594559315901010101
    [ 7.444] (II) intel(0): 010101010101ea240060410028303060
    [ 7.444] (II) intel(0): 130032e61000001e000000ff00353332
    [ 7.444] (II) intel(0): 324445354b353337390a000000fc0044
    [ 7.444] (II) intel(0): 454c4c204d3738300a202020000000fd
    [ 7.444] (II) intel(0): 0032a01e55ff000a20202020202000e3
    [ 7.444] (II) intel(0): Printing probed modes for output VGA1
    [ 7.444] (II) intel(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 7.444] (II) intel(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 7.444] (II) intel(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 7.444] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 7.444] (II) intel(0): Modeline "800x600"x85.1 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 7.444] (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 7.444] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 7.444] (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 7.444] (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 7.444] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.444] (II) intel(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 7.444] (II) intel(0): Output VGA1 connected
    [ 7.444] (II) intel(0): Using exact sizes for initial modes
    [ 7.444] (II) intel(0): Output VGA1 using initial mode 1024x768
    [ 7.444] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 7.444] (II) intel(0): Kernel page flipping support detected, enabling
    [ 7.444] (==) intel(0): DPI set to (96, 96)
    [ 7.444] (II) Loading sub module "fb"
    [ 7.444] (II) LoadModule: "fb"
    [ 7.444] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 7.458] (II) Module fb: vendor="X.Org Foundation"
    [ 7.458] compiled for 1.14.2, module version = 1.0.0
    [ 7.458] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 7.458] (II) Loading sub module "dri2"
    [ 7.458] (II) LoadModule: "dri2"
    [ 7.458] (II) Module "dri2" already built-in
    [ 7.458] (==) Depth 24 pixmap format is 32 bpp
    [ 7.466] (II) intel(0): [DRI2] Setup complete
    [ 7.466] (II) intel(0): [DRI2] DRI driver: i915
    [ 7.466] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
    [ 7.478] (II) UXA(0): Driver registered support for the following operations:
    [ 7.478] (II) solid
    [ 7.478] (II) copy
    [ 7.478] (II) composite (RENDER acceleration)
    [ 7.478] (II) put_image
    [ 7.478] (II) get_image
    [ 7.478] (==) intel(0): Backing store disabled
    [ 7.478] (==) intel(0): Silken mouse enabled
    [ 7.478] (II) intel(0): Initializing HW Cursor
    [ 7.478] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 7.480] (==) intel(0): DPMS enabled
    [ 7.480] (==) intel(0): Intel XvMC decoder disabled
    [ 7.480] (II) intel(0): Set up overlay video
    [ 7.480] (II) intel(0): direct rendering: DRI2 Enabled
    [ 7.480] (==) intel(0): hotplug detection: "enabled"
    [ 7.540] (--) RandR disabled
    [ 7.689] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 7.689] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 7.689] (II) AIGLX: enabled GLX_ARB_create_context
    [ 7.689] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 7.689] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 7.689] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 7.689] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 7.689] (II) AIGLX: Loaded and initialized i915
    [ 7.689] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 7.690] (II) intel(0): Setting screen physical size to 270 x 203
    [ 7.924] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 7.924] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.924] (II) LoadModule: "evdev"
    [ 7.925] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 7.943] (II) Module evdev: vendor="X.Org Foundation"
    [ 7.943] compiled for 1.14.2, module version = 2.8.1
    [ 7.943] Module class: X.Org XInput Driver
    [ 7.943] ABI class: X.Org XInput driver, version 19.1
    [ 7.943] (II) Using input driver 'evdev' for 'Power Button'
    [ 7.943] (**) Power Button: always reports core events
    [ 7.943] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 7.943] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 7.943] (--) evdev: Power Button: Found keys
    [ 7.943] (II) evdev: Power Button: Configuring as keyboard
    [ 7.943] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 7.943] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 7.943] (**) Option "xkb_rules" "evdev"
    [ 7.943] (**) Option "xkb_model" "pc104"
    [ 7.943] (**) Option "xkb_layout" "us"
    [ 7.980] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 7.980] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.980] (II) Using input driver 'evdev' for 'Power Button'
    [ 7.980] (**) Power Button: always reports core events
    [ 7.980] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 7.980] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 7.980] (--) evdev: Power Button: Found keys
    [ 7.980] (II) evdev: Power Button: Configuring as keyboard
    [ 7.981] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 7.981] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 7.981] (**) Option "xkb_rules" "evdev"
    [ 7.981] (**) Option "xkb_model" "pc104"
    [ 7.981] (**) Option "xkb_layout" "us"
    [ 7.981] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 7.982] (II) config/udev: Adding input device OM (/dev/input/event1)
    [ 7.982] (**) OM: Applying InputClass "evdev pointer catchall"
    [ 7.982] (II) Using input driver 'evdev' for 'OM'
    [ 7.982] (**) OM: always reports core events
    [ 7.982] (**) evdev: OM: Device: "/dev/input/event1"
    [ 7.982] (--) evdev: OM: Vendor 0x4f3 Product 0x232
    [ 7.982] (--) evdev: OM: Found 3 mouse buttons
    [ 7.982] (--) evdev: OM: Found scroll wheel(s)
    [ 7.982] (--) evdev: OM: Found relative axes
    [ 7.982] (--) evdev: OM: Found x and y relative axes
    [ 7.982] (II) evdev: OM: Configuring as mouse
    [ 7.982] (II) evdev: OM: Adding scrollwheel support
    [ 7.982] (**) evdev: OM: YAxisMapping: buttons 4 and 5
    [ 7.982] (**) evdev: OM: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.982] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.1/usb2/2-2/2-2:1.0/input/input1/event1"
    [ 7.982] (II) XINPUT: Adding extended input device "OM" (type: MOUSE, id 8)
    [ 7.982] (II) evdev: OM: initialized for relative axes.
    [ 7.983] (**) OM: (accel) keeping acceleration scheme 1
    [ 7.983] (**) OM: (accel) acceleration profile 0
    [ 7.983] (**) OM: (accel) acceleration factor: 2.000
    [ 7.983] (**) OM: (accel) acceleration threshold: 4
    [ 7.983] (II) config/udev: Adding input device OM (/dev/input/mouse0)
    [ 7.983] (II) No input driver specified, ignoring this device.
    [ 7.983] (II) This device may have been added with another device file.
    [ 7.984] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 7.984] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 7.984] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 7.984] (**) AT Translated Set 2 keyboard: always reports core events
    [ 7.984] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 7.984] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 7.984] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 7.984] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 7.984] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 7.984] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 7.984] (**) Option "xkb_rules" "evdev"
    [ 7.984] (**) Option "xkb_model" "pc104"
    [ 7.984] (**) Option "xkb_layout" "us"
    [ 7.985] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 7.985] (II) No input driver specified, ignoring this device.
    [ 7.985] (II) This device may have been added with another device file.
    [ 29.826] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 53.275] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 53.426] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 53.427] (II) intel(0): Using EDID range info for horizontal sync
    [ 53.427] (II) intel(0): Using EDID range info for vertical refresh
    [ 53.427] (II) intel(0): Printing DDC gathered Modelines:
    [ 53.427] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 53.427] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 53.427] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 53.427] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 53.427] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 53.427] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 53.427] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 53.427] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 53.427] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 53.427] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 53.427] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 53.433] setversion 1.4 failed
    [ 57.450] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.450] (II) intel(0): Using hsync ranges from config file
    [ 57.450] (II) intel(0): Using vrefresh ranges from config file
    [ 57.450] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.450] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.450] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.450] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.450] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.450] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.450] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.450] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.450] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.450] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.450] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.450] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 57.590] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.590] (II) intel(0): Using hsync ranges from config file
    [ 57.590] (II) intel(0): Using vrefresh ranges from config file
    [ 57.590] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.590] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.590] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.590] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.590] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.590] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.590] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.590] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.590] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.590] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.590] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.590] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 57.763] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.763] (II) intel(0): Using hsync ranges from config file
    [ 57.763] (II) intel(0): Using vrefresh ranges from config file
    [ 57.763] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.763] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.763] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.763] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.763] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.763] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.763] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.763] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.763] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.763] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.763] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.763] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 57.903] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.903] (II) intel(0): Using hsync ranges from config file
    [ 57.903] (II) intel(0): Using vrefresh ranges from config file
    [ 57.903] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.903] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.903] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.903] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.903] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.903] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.903] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.903] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.903] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.903] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.903] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.903] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    No doubt I have missed the pertinent log.
    Last edited by nef131 (2013-07-31 12:47:23)

    Oxyd,
    The current state of things, after removing gdm, slim and reinstalling lightdm, is that nothing has changed. In any event, below is the results of pacman -Qs lightdm:
    [allen@archbox ~]$ pacman -Qs lightdm
    local/lightdm 1:1.6.0-5 (lightdm)
    A lightweight display manager
    local/lightdm-gtk3-greeter 1:1.6.0-1
    GTK+ greeter for LightDM
    [allen@archbox ~]$
    The result of is cat /etc/lightdm/lightdm.conf:
    [allen@archbox ~]$ cat /etc/lightdm/lightdm.conf
    # General configuration
    # start-default-seat = True to always start one seat if none are defined in the configuration
    # greeter-user = User to run greeter as
    # minimum-display-number = Minimum display number to use for X servers
    # minimum-vt = First VT to run displays on
    # lock-memory = True to prevent memory from being paged to disk
    # user-authority-in-system-dir = True if session authority should be in the system location
    # guest-account-script = Script to be run to setup guest account
    # log-directory = Directory to log information to
    # run-directory = Directory to put running state in
    # cache-directory = Directory to cache to
    # xsessions-directory = Directory to find X sessions
    # remote-sessions-directory = Directory to find remote sessions
    # xgreeters-directory = Directory to find X greeters
    [LightDM]
    #start-default-seat=true
    #greeter-user=lightdm
    #minimum-display-number=0
    #minimum-vt=7
    #lock-memory=true
    #user-authority-in-system-dir=false
    #guest-account-script=guest-account
    #log-directory=/var/log/lightdm
    run-directory=/run/lightdm
    #cache-directory=/var/cache/lightdm
    #xsessions-directory=/usr/share/xsessions
    #remote-sessions-directory=/usr/share/lightdm/remote-sessions
    #xgreeters-directory=/usr/share/xgreeters
    # Seat defaults
    # type = Seat type (xlocal, xremote)
    # xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
    # xserver-layout = Layout to pass to X server
    # xserver-config = Config file to pass to X server
    # xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
    # xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
    # xdmcp-port = XDMCP UDP/IP port to communicate on
    # xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
    # greeter-session = Session to load for greeter
    # greeter-hide-users = True to hide the user list
    # greeter-allow-guest = True if the greeter should show a guest login option
    # greeter-show-manual-login = True if the greeter should offer a manual login option
    # greeter-show-remote-login = True if the greeter should offer a remote login option
    # user-session = Session to load for users
    # allow-guest = True if guest login is allowed
    # guest-session = Session to load for guests (overrides user-session)
    # session-wrapper = Wrapper script to run session with
    # display-setup-script = Script to run when starting a greeter session (runs as root)
    # greeter-setup-script = Script to run when starting a greeter (runs as root)
    # session-setup-script = Script to run when starting a user session (runs as root)
    # session-cleanup-script = Script to run when quitting a user session (runs as root)
    # autologin-guest = True to log in as guest by default
    # autologin-user = User to log in with by default (overrides autologin-guest)
    # autologin-user-timeout = Number of seconds to wait before loading default user
    # autologin-session = Session to load for automatic login (overrides user-session)
    # exit-on-failure = True if the daemon should exit if this seat fails
    [SeatDefaults]
    #type=xlocal
    #xserver-command=X
    #xserver-layout=
    #xserver-config=
    #xserver-allow-tcp=false
    #xdmcp-manager=
    #xdmcp-port=177
    #xdmcp-key=
    #greeter-session=example-gtk-gnome
    #greeter-hide-users=false
    #greeter-allow-guest=true
    #greeter-show-manual-login=false
    #greeter-show-remote-login=true
    #user-session=default
    #allow-guest=true
    #guest-session=UNIMPLEMENTED
    session-wrapper=/etc/lightdm/xsession
    #display-setup-script=
    #greeter-setup-script=
    #session-setup-script=
    #session-cleanup-script=
    #autologin-guest=false
    #autologin-user=
    #autologin-user-timeout=0
    #autologin-session=UNIMPLEMENTED
    pam-service=lightdm-autologin
    #exit-on-failure=false
    # Seat configuration
    # Each seat must start with "Seat:".
    # Uses settings from [SeatDefaults], any of these can be overriden by setting them in this section.
    #[Seat:0]
    # XDMCP Server configuration
    # enabled = True if XDMCP connections should be allowed
    # port = UDP/IP port to listen for connections on
    # key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
    # The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
    # it can be a word and the first 7 characters are used as the key.
    [XDMCPServer]
    #enabled=false
    #port=177
    #key=
    # VNC Server configuration
    # enabled = True if VNC connections should be allowed
    # command = Command to run Xvnc server with
    # port = TCP/IP port to listen for connections on
    # width = Width of display to use
    # height = Height of display to use
    # depth = Color depth of display to use
    [VNCServer]
    #enabled=false
    #command=Xvnc
    #port=5900
    #width=1024
    #height=768
    #depth=8
    The result of cat /etc/lightdm/lightdm-gtk-greeter.conf is :
    [allen@archbox ~]$ cat /etc/lightdm/lightdm-gtk-greeter.conf
    # background = Background file to use, either an image path or a color (e.g. #772953)
    # theme-name = GTK+ theme to use
    # icon-theme-name = Icon theme to use
    # font-name = Font to use
    # xft-antialias = Whether to antialias Xft fonts (true or false)
    # xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
    # xft-hintstyle = What degree of hinting to use (none, slight, medium, or full)
    # xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr)
    # show-language-selector (true or false)
    # show-indicators = semi-colon ";" separated list of allowed indicator modules (e.g. libsoundmenu.so)
    # show-clock (true or false)
    # clock-format = strftime-format string, e.g. %H:%M
    # keyboard = command to launch on-screen keyboard
    [greeter]
    #background=
    #theme-name=
    #icon-theme-name=
    #font-name=
    #xft-antialias=
    #xft-dpi=
    #xft-hintstyle=
    #xft-rgba=
    #show-language-selector=
    #show-indicators=
    #show-clock=
    #clock-format=
    #keyboard=
    Cfr: "Did you test X following the Beginners' Guide?"
    Yes. I tested X. I believe that I followed the Beginner's Guide to the letter. Of course, I am new to Arch, so it is possible I misunderstood something. I believe what I did was to enter the following command to install X: pacman -S xorg-server xorg-server-utils xorg-xinit and then, as provided in the guide, I installed mesa.
    I have, per your suggestion, removed xorg-server-xephyr. I note, however, that the guide for installing lightdm indicates that the package should be installed initially, in order to test to see if lightdm works. In any event, removing it does not alter how the system starts up.
    You are correct that I am starting the computer directly to lightdm - and not starting lightdm from X - but lightdm leaves a blank page, as I noted. I can click around on the blank page and stuff pops up. On looking at Oxyd's suggested outputs, I wonder if my problem is that nearly everything in the configuration file has been commented out.

  • [Solved] Insanely small e17 fonts

    Upon doing a 'pacman -S e17-svn' install of 17, I start it up (using startx), and things seem ok except for the fact that the fonts are literally thinner than the border of this post new topic box.  I just got the whole system up running and wanted to install this as my default WM (I had been trying it out on BSD earlier before I installed Arch last night.)  Whatever popped out of Xorg -configure with those ServerFlags settings to make mouse and keyboard work is my current Xorg config (radeonhd driver for my ati r580, 1920x1200 monitor resolution) - this is what I did on BSD too, standard stuff is no different.
    One other side note, whenever I do hwd -e, it says my graphics card is using vesa, even though I have radeonhd (for now) installed and completely removed xf86-video-vesa package, but my Xorg -configure pops up radeonhd for me.
    Last edited by Joshmotron (2009-03-06 00:25:13)

    danielomen wrote:install ttf-bitstream-vera package
    Thanks a lot. I am installing a system from scratch and was stuck...
    I'm not sure why ttf-bitstream-vera is not set as a dependency of e17 It would solve lots of hassle...

Maybe you are looking for