[SOLVED] awesome & urxvt results in some screen flickering

Hi,
i've been using awesome since a few weeks and i noticed a flickering problem when starting urxvt (via mod4+enter).
urxvt starts, disappears, comes back again, disappears and so on.
starting up urxvt (time until i get a usable promt) takes about 1-2 seconds.
However, i don't know how to track the problem down. Maybe it is urxvt's (i think it is), maybe it is awesome's or even ati's fault (using 2.6.32 with open source ati driver).
when i switch between multiple windows (using mod4+n) only urxvt windows are flickering. Switching between gui-apps (ff, dolphin, …) works as expected.
maybe someone has an idea about this …
Here are the configs:
.Xdefaults:
!URxvt settings
!--[Title]--!
URxvt*title: urxvtc
URxvt*termName: rxvt-unicode
URxvt*cursorBlink: true
URxvt*urgentOnBell: true
!--[Url's /launching/marking/yanking]--!
URxvt.perl-ext: default,matcher
URxvt.urlLauncher: /usr/bin/firefox
URxvt.matcher.button: 1
!--[Fonts]--!
URxvt*font: xft:Bitstream Vera Sans Mono:pixelsize=14:antialias=false
URxvt.italicFont: xft:Bitstream Vera Sans Mono:italic:autohint=true:antialias=false
URxvt.boldItalicFont: xft:Bitstream Vera Sans Mono:bold:italic:autohint=true:antialias=false
URxvt.underlineColor: yellow
URxvt.scrollBar: false
!--[Urxvt Options]--!
URxvt.boldMode: false
URxvt.imLocale: de_AT.UTF-8
URxvt.loginShell: true
URxvt.saveLines: 512
URxvt.inheritPixmap: true
URxvt.borderless: true
URxvt.jumpScroll: true
URxvt.tintColor: white
URxvt.internalBorder: 0
URxvt.cursorBlink: false
URxvt.cursorColor: #dd9900
URxvt.cursorColor2: #000000
URxvt.background: #222222
URxvt.foreground: #ddccbb
URxvt.colorBD: #ffffff
URxvt.colorIT: #bbbbbb
URxvt.colorUL: #999999
URxvt.underlineColor: #999999
URxvt*saveLines: 512
!URxvt*depth: 32
!URxvt*background: rgba:02f0/04f0/04f0/cccc
URxvt*transparent: true
URxvt*shading: 10
!--[Colours]--!
!Theme One from
!http://phraktured.net/terminal-colors/terminal%20theme.tags.html
*background: rgb:00/00/00
*foreground: rgb:a8/a8/a8
*color0: rgb:00/00/00
*color1: rgb:a8/00/00
*color2: rgb:00/a8/00
*color3: rgb:a8/54/00
*color4: rgb:00/00/a8
*color5: rgb:a8/00/a8
*color6: rgb:00/a8/a8
*color7: rgb:a8/a8/a8
*color8: rgb:54/50/54
*color9: rgb:f8/54/50
*color10: rgb:50/fc/50
*color11: rgb:f8/fc/50
*color12: rgb:50/54/f8
*color13: rgb:f8/54/f8
*color14: rgb:50/fc/f8
*color15: rgb:f8/fc/f8
http://github.com/nblock/config/blob/master/.Xdefaults
rc.lua:
-- {{{ Load libraries
-- Standard awesome library
require("awful")
require("awful.autofocus")
require("awful.rules")
-- Theme handling library
require("beautiful")
-- Notification library
require("naughty")
require("vicious")
-- {{{ Variable definitions
-- Themes define colours, icons, and wallpapers
beautiful.init("/usr/share/awesome/themes/zenburn/theme.lua")
-- This is used later as the default terminal and editor to run.
terminal = "urxvtc"
editor = "vim"
editor_cmd = terminal .. " -e " .. editor
-- Default modkey.
-- Usually, Mod4 is the key with a logo between Control and Alt.
-- If you do not like this or do not have such a key,
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
-- However, you can use another modifier like Mod1, but it may interact with others.
modkey = "Mod4"
-- Table of layouts to cover with awful.layout.inc, order matters.
layouts =
awful.layout.suit.tile, --1
awful.layout.suit.tile.left, --2
awful.layout.suit.tile.bottom, --3
awful.layout.suit.tile.top, --4
awful.layout.suit.fair, --5
awful.layout.suit.fair.horizontal, --6
awful.layout.suit.spiral, --7
awful.layout.suit.spiral.dwindle, --8
awful.layout.suit.max, --9
awful.layout.suit.max.fullscreen, --10
awful.layout.suit.magnifier, --11
awful.layout.suit.floating --12
-- some commands
local commands = {}
commands.suspend = "sudo pm-suspend"
commands.help = "touch ~/seppal"
commands.lock = "xscreensaver-command --lock"
commands.screenshot = "scrot -e 'mv $f ~/bilder/screenshots'"
--audio stuff
commands.raisevol = "amixer set PCM 2%+"
commands.lowervol = "amixer set PCM 2%-"
commands.mute = "amixer sset PCM toggle"
commands.cmusnext = "cmus-remote --next"
commands.cmusprev = "cmus-remote --prev"
commands.cmuspause = "cmus-remote --pause"
commands.cmusplay = "cmus-remote --play"
commands.calc = "krunner"
--todo
commands.fileman = "pcmanfm"
commands.calc = "xcalc"
commands.browser = "firefox"
-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag({
"1 download", "2 mail", "3 chat",
"4 music", "5 news", "6 fm",
7, 8, 9 }, s,
{layouts[3], layouts[1], layouts[1], -- Tags: 1, 2, 3
layouts[1], layouts[1], layouts[1], -- 4, 5 ,6
layouts[1], layouts[1], layouts[1] -- 7, 8, 9
end
-- {{{ Menu
-- Create a laucher widget and a main menu
myawesomemenu = {
{ "manual", terminal .. " -e man awesome" },
{ "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" },
{ "restart", awesome.restart },
{ "quit", awesome.quit }
mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
{ "open terminal", terminal }
mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon),
menu = mymainmenu })
-- {{{ Wibox
-- {{{ Widgets configuration
-- {{{ Reusable separators
local spacer = widget({ type = "textbox", name = "spacer" })
local separator = widget({ type = "textbox", name = "separator" })
spacer.text = " "
separator.text = " <span foreground='red'>•</span> "
-- {{{ CPU load
local cpuwidget = widget({ type = "textbox" })
vicious.register(cpuwidget, vicious.widgets.cpu, "<span foreground='orange'>load: </span><span foreground='green'>$2%</span><span foreground='orange'> - </span><span foreground='green'>$3%</span>")
-- {{{ CPU temperature
local thermalwidget = widget({ type = "textbox" })
vicious.register(thermalwidget, vicious.widgets.thermal, "<span foreground='orange'>temp: </span><span foreground='green'>$1°C</span>", 20, "thermal_zone1")
-- {{{ Battery state
-- Widget icon
-- baticon = widget({ type = "imagebox", name = "baticon" })
-- baticon.image = image(beautiful.widget_bat)
local batwidget = widget({ type = "textbox" })
vicious.register(batwidget, vicious.widgets.bat, "<span foreground='orange'>bat: </span><span foreground='green'>$1$2%</span>", 60, "C1C5")
-- {{{ Date and time
local datewidget = widget({ type = "textbox" })
vicious.register(datewidget, vicious.widgets.date, "<span foreground='green'>%a, %d.%m.%y - %H:%M</span>", 5)
-- {{{ Volume widget
local volwidget = widget({ type = "textbox" })
vicious.register(volwidget, vicious.widgets.volume, "<span foreground='orange'>vol: </span><span foreground='green'>$1%</span>", 1, 'PCM')
-- {{{ System tray
systray = widget({ type = "systray" })
-- {{{ Wibox initialisation
local wibox = {}
local promptbox = {}
local layoutbox = {}
local taglist = {}
taglist.buttons = awful.util.table.join(
awful.button({ }, 1, awful.tag.viewonly),
awful.button({ modkey }, 1, awful.client.movetotag),
awful.button({ }, 3, awful.tag.viewtoggle),
awful.button({ modkey }, 3, awful.client.toggletag),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev))
for s = 1, screen.count() do
-- Create a promptbox
promptbox[s] = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright })
-- Create a layoutbox
layoutbox[s] = awful.widget.layoutbox(s)
layoutbox[s]:buttons(awful.util.table.join(
awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)
-- Create a taglist widget
taglist[s] = awful.widget.taglist(s, awful.widget.taglist.label.all, taglist.buttons)
-- Create the wibox
wibox[s] = awful.wibox({
position = "top", screen = s,
fg = beautiful.fg_normal, bg = beautiful.bg_normal
-- Add widgets to the wibox
wibox[s].widgets = {{
launcher, taglist[s], layoutbox[s], promptbox[s],
layout = awful.widget.layout.horizontal.leftright
s == screen.count() and systray or nil,
spacer, datewidget,
separator, volwidget,
separator, batwidget,
separator, cpuwidget,
separator, thermalwidget,
layout = awful.widget.layout.horizontal.rightleft
end
-- {{{ Mouse bindings
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
-- {{{ Key bindings
globalkeys = awful.util.table.join(
--user defined
awful.key({}, "XF86PowerOff", function() awful.util.spawn_with_shell(commands.suspend) end ),
awful.key({}, "Help", function() awful.util.spawn_with_shell(commands.help) end ),
awful.key({ modkey, }, "F12", function () awful.util.spawn_with_shell(commands.lock) end),
--audio stuff
awful.key({}, "XF86AudioMute", function() awful.util.spawn_with_shell(commands.mute) end ),
awful.key({}, "XF86AudioRaiseVolume", function() awful.util.spawn_with_shell(commands.raisevol) end ),
awful.key({}, "XF86AudioLowerVolume", function() awful.util.spawn_with_shell(commands.lowervol) end ),
awful.key({}, "XF86AudioNext", function() awful.util.spawn_with_shell(commands.cmusnext) end ),
awful.key({}, "XF86AudioPrev", function() awful.util.spawn_with_shell(commands.cmusprev) end ),
awful.key({}, "XF86AudioPlay", function() awful.util.spawn_with_shell(commands.cmuspause) end ),
awful.key({}, "XF86Tools", function() awful.util.spawn_with_shell(commands.cmusplay) end ),
awful.key({}, "XF86Calculator", function() awful.util.spawn_with_shell(commands.calc) end ),
awful.key({}, "Print", function() awful.util.spawn_with_shell(commands.screenshot) end ),
-- awful.key({}, "XF86MyComputer", function() awful.util.spawn_with_shell(commands.fileman) end ),
-- awful.key({}, "XF86Mail", function() awful.util.spawn_with_shell(commands.mail) end ),
-- awful.key({}, "XF86HomePage", function() awful.util.spawn_with_shell(commands.browser) end ),
-- awful.key({}, "XF86Sleep", function() awful.util.spawn_with_shell(commands.lock) end ),
-- awful.key({"Control", "Mod1"}, "l", function() awful.util.spawn_with_shell(commands.lock) end ),
--default bindings
awful.key({ modkey, }, "Left", awful.tag.viewprev ),
awful.key({ modkey, }, "Right", awful.tag.viewnext ),
awful.key({ modkey, }, "Escape", awful.tag.history.restore),
awful.key({ modkey, }, "n",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, }, "k",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, }, "w", function () mymainmenu:show(true) end),
-- Layout manipulation
awful.key({ modkey, "Shift" }, "n", function () awful.client.swap.byidx( 1) end),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
awful.key({ modkey, "Control" }, "n", function () awful.screen.focus_relative( 1) end),
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
awful.key({ modkey, }, "Tab",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end),
-- Standard program
awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
awful.key({ modkey, "Control" }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", awesome.quit),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
-- Prompt
awful.key({ modkey }, "r", function () promptbox[mouse.screen]:run() end),
-- Run stuff in a Terminal
awful.key({ modkey }, "x", function ()
awful.prompt.run({ prompt = "Run in Terminal: " }, promptbox[mouse.screen].widget,
function (prog)
awful.util.spawn_with_shell(terminal .. " -name " .. prog .. " -e /bin/bash -c " .. prog)
end)
end)
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
awful.key({ modkey, }, "j", function (c) c.minimized = not c.minimized end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end)
-- Compute the maximum number of digit we need, limited to 9
keynumber = 0
for s = 1, screen.count() do
keynumber = math.min(9, math.max(#tags[s], keynumber));
end
-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it works on any keyboard layout.
-- This should map on the top row of your keyboard, usually 1 to 9.
for i = 1, keynumber do
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey }, "#" .. i + 9,
function ()
local screen = mouse.screen
if tags[screen][i] then
awful.tag.viewonly(tags[screen][i])
end
end),
awful.key({ modkey, "Control" }, "#" .. i + 9,
function ()
local screen = mouse.screen
if tags[screen][i] then
awful.tag.viewtoggle(tags[screen][i])
end
end),
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()
if client.focus and tags[client.focus.screen][i] then
awful.client.movetotag(tags[client.focus.screen][i])
end
end),
awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
function ()
if client.focus and tags[client.focus.screen][i] then
awful.client.toggletag(tags[client.focus.screen][i])
end
end))
end
clientbuttons = awful.util.table.join(
awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize))
-- Set keys
root.keys(globalkeys)
-- {{{ Rules
awful.rules.rules = {
-- All clients will match this rule.
{ rule = { },
properties = { border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = true,
keys = clientkeys,
buttons = clientbuttons } },
--floating apps
{ rule = { class = "pinentry-qt4" },
properties = { floating = true } },
{ rule = { class = "Gimp" },
properties = { floating = true } },
--apptags
--downloading stuff
{ rule = { class = "JDownloader" },
properties = { tag = tags[1][1],switchtotag = true } },
{ rule = { instance = "rtorrent" },
properties = { tag = tags[1][1],switchtotag = false } },
-- mail
{ rule = { class = "Kmail" },
properties = { tag = tags[1][2],switchtotag = true } },
--chat and stuff like that
{ rule = { class = "Choqok" },
properties = { tag = tags[1][3],switchtotag = false } },
{ rule = { class = "Kopete" },
properties = { tag = tags[1][3],switchtotag = false } },
-- cmus
{ rule = { instance = "cmus" },
properties = { tag = tags[1][4],switchtotag = true } },
-- news
{ rule = { instance = "newsbeuter" },
properties = { tag = tags[1][5],switchtotag = true } },
--file manager
{ rule = { class = "Dolphin" },
properties = { tag = tags[1][6],switchtotag = true } },
--misc stuff
{ rule = { class = "Konqueror" },
properties = { tag = tags[1][9],switchtotag = true } },
-- {{{ Signals
-- Signal function to execute when a new client appears.
client.add_signal("manage", function (c, startup)
-- Add a titlebar
-- awful.titlebar.add(c, { modkey = modkey })
-- remove gaps
c.size_hints_honor = false
-- Enable sloppy focus
c:add_signal("mouse::enter", function(c)
if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
and awful.client.focus.filter(c) then
client.focus = c
end
end)
if not startup then
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- awful.client.setslave(c)
-- Put windows in a smart way, only if they does not set an initial position.
if not c.size_hints.user_position and not c.size_hints.program_position then
awful.placement.no_overlap(c)
awful.placement.no_offscreen(c)
end
end
end)
client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- {{{ Autostart
os.execute("krandrtray &")
-- vim: fdm=marker fdl=0 sts=4 ai
http://github.com/nblock/config/blob/ma … ome/rc.lua
Thanks.
Last edited by nblock (2010-01-02 09:59:24)

Try this .Xdefaults which works with awesome/urxvt.
*utf8: 1
*faceSize: 10
*jumpScroll: true
*multiScroll: true
*boldMode: false
*scrollBar: false
*cutNewline: false
*scrollTtyOutput: false
*scrollKey: true
*cursorBlink: true
*dynamicColors: true
*saveLines: 5000
*geometry: 125x45
! URxvt
URxvt*termName: xterm
URxvt.font: xft:Bitstream Vera Sans Mono:antialias=true:pixelsize=12
!urxvt.font: xft:Bitstream Vera Sans Mono-12:antialias=true
URxvt*transparent: false
URxvt*tintColor: #666666
URxvt*shading: 50
URxvt*scrollBar: false
URxvt*internalBorder: 5
URxvt*urgentOnBell: true
URxvt*scrollTtyKeypress: true
URxvt*underlineColor: yellow
URxvt*perl-ext-common: default,matcher
URxvt*urlLauncher: firefox
URxvt*matcher.button: 1
URxvt*matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-]
! Colours
*background: #303030
*foreground: #f2f2f2
*cursorColor: #999
*highlightColor: #333
*color0: #101010
*color1: #f13a21
*color2: #93f91d
*color3: #ffd00a
*color4: #404f9e
*color5: #ec0048
*color6: #2aa7e7
*color7: #f2f2f2
*color8: #1d202f
*color9: #ff361e
*color10: #ffc005
*color11: #93ff00
*color12: #3071ff
*color13: #ef0051
*color14: #4bb8fd
*color15: #a020f0
Last edited by r6 (2010-01-02 05:05:11)

Similar Messages

  • [solved] maximizing window results in white screen

    hi, using xfce4 and gdm with nvidia driver (from Arch), 64 bit, using compiz
    while in the GUI if i maximize a window, say Thunderbird, the app only shows a white screen. the window decorations are still there and i can restore it down and everything is fine, but when i maximize, white screen
    not to post two problems in one thread, but im using emerald via compiz, but i would like to use gtk-window-decorator but if i change it, it does not stick. after a log out/log in it is changed back to emerald
    i have tried different emerald themes and i still get the white screen. i think it only happens when the window is opened small to begin with. if it opens full screen i dont have that problem
    Last edited by dodgefan (2011-07-19 03:57:39)

    i think i figured this out, i was using the latest nvidia driver when i should have been using the 173xx series

  • R9 270X Screen Flickering

    Hey there.
    I have resently bought an MSI R9 270X to be honest at 31/1/2014 and i have some screen flickering problem when i am playing.
    I update the vbios and the drivers of the card and i still have the problem. What should i do next? Can MSI do something?
    My spec is:
    Operating System: Windows 7 Ultimate 64-bit SP1
    CPU: AMD FX-6300 Six-Core Processor (Black Edition)
    RAM: 8GB DDR3 1866MHz (Kingston® HyperX® Beast)
    Motherboard: Asus M5A97 R2.0
    GPU: MSI RADEON R9 270X GAMING 2GB GDDR5 PCI-E RETAIL
    Monitor: Samsung SyncMaster P2370 23inch 1920x1080
    Ty in advance

    Quote from: Press on 13-February-14, 06:50:31
    It's a very common problem with r9 270x cards so I don't understand answers from MSI staff.
    Just google it, read amd forums, brand doesn't matter. Some brands made new bios for this to help this annoying flickering problem.
    I also found a new bios for MSI  but it's on korean site, not sure if ok to use?
    I got it as well and a friend with same card also.
    Mostly only in 2d mode, when browsing, watching some YouTube or when scrolling.
    Yes there is a such, but he already using latest vbios version,
    which is suppose to have this fix.
    Quote from: Efthimios on 07-February-14, 00:13:39
    This is the serial number of the card 602-V303-13SB1312021280.
    The so called flickering, looks more like broken graphics that can be seen only in few games that are demanding in general. My first assumption was that might be the Power supply unit but again i can be so sure because the least requirement for this card is 500 Watt PSU.
    Thanks in advance. 
    Information according to Live Update 5
    Operating System : Windows 7 64 Bit
    Motherboard Model: M5A97 R2.0
    Current Bios Version: 2201
    Graphics Card: AMD Radeon R9 200 series
    VGA Bios Version: TV303MS.102
    you can try attached one, the GOP verison of the same .102

  • [solved] after kernel upgrade screen flickering in gdm

    Hi,
    after the recent kernel-upgrade to 4.0.1-1-ARCH i have an ugly behavior. The bottom half of my screen flickers while on gdm. After login to gnome everything is normal and I have no problems. But in gdm the screen is flickering which is really annoying. I never had this behavior before. My laptop has such an hybrid graphics stack with intel and ati. Here are some logfiles but I cant find anything suspicious. Has anyone any idea what could be the cause of this behavior or which logfile to log into?
    greetings
    % lspci |grep -i vga
    00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series] (rev ff)
    Xorg.log:
    -- Logs begin at Mo 2014-04-21 18:45:38 CEST, end at Mo 2015-05-04 20:01:25 CEST. --
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) RADEON(G0): Default visual is TrueColor
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) RADEON(G0): RGB weight 888
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (--) RADEON(G0): Chipset: "CAICOS" (ChipID = 0x6760)
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Loading sub module "dri2"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) LoadModule: "dri2"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Module "dri2" already built-in
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Loading sub module "exa"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) LoadModule: "exa"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Loading /usr/lib/xorg/modules/libexa.so
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Module exa: vendor="X.Org Foundation"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: compiled for 1.17.1, module version = 2.6.0
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: ABI class: X.Org Video Driver, version 19.0
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): KMS Color Tiling: enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): KMS Color Tiling 2D: enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): KMS Pageflipping: enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): SwapBuffers wait for vsync: enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Output VGA-1-1 has no monitor section
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): EDID for output VGA-1-1
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): mem size init: gart size :3fdde000 vram size: s:40000000 visible:3f88b000
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): EXA: Driver will allow EXA pixmaps in VRAM
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) RADEON(G0): DPI set to (96, 96)
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Loading sub module "fb"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) LoadModule: "fb"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Loading /usr/lib/xorg/modules/libfb.so
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Module fb: vendor="X.Org Foundation"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: compiled for 1.17.1, module version = 1.0.0
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: ABI class: X.Org ANSI C Emulation, version 0.4
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Loading sub module "ramdac"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) LoadModule: "ramdac"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Module "ramdac" already built-in
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "modesetting"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Unloading modesetting
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "fbdev"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Unloading fbdev
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) UnloadSubModule: "fbdevhw"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Unloading fbdevhw
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "vesa"
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Unloading vesa
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) Depth 24 pixmap format is 32 bpp
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): [DRI2] Setup complete
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): [DRI2] DRI driver: r600
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): [DRI2] VDPAU driver: r600
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Front buffer size: 3072K
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): VRAM usage limit set to 934023K
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) RADEON(G0): Backing store enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Direct rendering enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) EXA(256): Driver allocated offscreen pixmaps
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) EXA(256): Driver registered support for the following operations:
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Solid
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Copy
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) Composite (RENDER acceleration)
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) UploadToScreen
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) DownloadFromScreen
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Acceleration enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) RADEON(G0): DPMS enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) RADEON(G0): Silken mouse enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): Set up textured video
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): [XvMC] Associated with Radeon Textured Video.
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): [XvMC] Extension initialized.
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) RADEON(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): SNA initialized with Sandybridge (gen6, gt2) backend
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) intel(0): Backing store enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) intel(0): Silken mouse enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): HW Cursor enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) intel(0): DPMS enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (==) intel(0): display hotplug detection enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): [DRI2] Setup complete
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): [DRI2] DRI driver: i965
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): [DRI2] VDPAU driver: i965
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): direct rendering: DRI2 enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): hardware support for Present enabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (--) RandR disabled
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_ARB_create_context
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_ARB_create_context_profile
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_INTEL_swap_event
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_ARB_fbconfig_float
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: enabled GLX_ARB_create_context_robustness
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) AIGLX: Loaded and initialized i965
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) GLX: Initialized DRI2 GL provider for screen 0
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    Apr 08 22:19:58 cyph gdm-Xorg-:0[358]: (II) intel(0): Setting screen physical size to 423 x 238
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Power Button (/dev/input/event4)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Power Button: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) LoadModule: "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Module evdev: vendor="X.Org Foundation"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: compiled for 1.17.1, module version = 2.9.2
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: Module class: X.Org XInput Driver
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: ABI class: X.Org XInput driver, version 21.0
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'Power Button'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Power Button: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Power Button: Device: "/dev/input/event4"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Power Button: Vendor 0 Product 0x1
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Power Button: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Power Button: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event4"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: The XKEYBOARD keymap compiler (xkbcomp) reports:
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: > Ignoring extra symbols
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: Errors from xkbcomp are not fatal to the X server
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Video Bus (/dev/input/event9)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Video Bus: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'Video Bus'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Video Bus: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Video Bus: Device: "/dev/input/event9"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Video Bus: Vendor 0 Product 0x6
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Video Bus: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Video Bus: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input10/event9"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Video Bus (/dev/input/event8)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Video Bus: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'Video Bus'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Video Bus: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Video Bus: Device: "/dev/input/event8"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Video Bus: Vendor 0 Product 0x6
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Video Bus: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Video Bus: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:16/LNXVIDEO:00/input/input9/event8"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Power Button (/dev/input/event3)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Power Button: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'Power Button'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Power Button: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Power Button: Device: "/dev/input/event3"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Power Button: Vendor 0 Product 0x1
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Power Button: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Power Button: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4/event3"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event14)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event14"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc050
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:046D:C050.0001/input/input15/event14"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 10)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse1)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event12)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event13)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HP Webcam-101 (/dev/input/event15)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP Webcam-101: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP Webcam-101: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'HP Webcam-101'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP Webcam-101: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: HP Webcam-101: Device: "/dev/input/event15"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: HP Webcam-101: Vendor 0x4f2 Product 0xb249
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: HP Webcam-101: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: HP Webcam-101: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input16/event15"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "HP Webcam-101" (type: KEYBOARD, id 11)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) AT Translated Set 2 keyboard: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: AT Translated Set 2 keyboard: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) LoadModule: "synaptics"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Module synaptics: vendor="X.Org Foundation"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: compiled for 1.17.1, module version = 1.8.2
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: Module class: X.Org XInput Driver
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: ABI class: X.Org XInput driver, version 21.0
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "Device" "/dev/input/event7"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5728 (res 46)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4828 (res 70)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "TapButton1" "1"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "TapButton2" "2"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "TapButton3" "3"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event7"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) No input driver specified, ignoring this device.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) This device may have been added with another device file.
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HP Wireless hotkeys (/dev/input/event1)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP Wireless hotkeys: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP Wireless hotkeys: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'HP Wireless hotkeys'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP Wireless hotkeys: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: HP Wireless hotkeys: Device: "/dev/input/event1"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: HP Wireless hotkeys: Vendor 0 Product 0
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: HP Wireless hotkeys: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: HP Wireless hotkeys: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/virtual/input/input2/event1"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "HP Wireless hotkeys" (type: KEYBOARD, id 14)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event6)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP WMI hotkeys: Applying InputClass "system-keyboard"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) HP WMI hotkeys: always reports core events
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) evdev: HP WMI hotkeys: Device: "/dev/input/event6"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: HP WMI hotkeys: Vendor 0 Product 0
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (--) evdev: HP WMI hotkeys: Found keys
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) evdev: HP WMI hotkeys: Configuring as keyboard
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event6"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 15)
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_rules" "evdev"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_model" "pc104"
    Apr 08 22:19:59 cyph gdm-Xorg-:0[358]: (**) Option "xkb_layout" "de"
    Apr 08 22:20:07 cyph gdm-Xorg-:0[358]: (II) intel(0): EDID vendor "AUO", prod id 5022
    Apr 08 22:20:07 cyph gdm-Xorg-:0[358]: (II) intel(0): Printing DDC gathered Modelines:
    Apr 08 22:20:07 cyph gdm-Xorg-:0[358]: (II) intel(0): Modeline "1600x900"x0.0 107.80 1600 1648 1680 1966 900 903 909 912 -hsync -vsync (54.8 kHz eP)
    Apr 08 22:20:15 cyph gdm-Xorg-:0[358]: The XKEYBOARD keymap compiler (xkbcomp) reports:
    Apr 08 22:20:15 cyph gdm-Xorg-:0[358]: > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    Apr 08 22:20:15 cyph gdm-Xorg-:0[358]: > Ignoring extra symbols
    Apr 08 22:20:15 cyph gdm-Xorg-:0[358]: > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    Apr 08 22:20:15 cyph gdm-Xorg-:0[358]: > Ignoring extra symbols
    Apr 08 22:20:15 cyph gdm-Xorg-:0[358]: Errors from xkbcomp are not fatal to the X server
    Apr 08 22:29:04 cyph gdm-Xorg-:0[358]: (II) config/udev: removing device Logitech USB-PS/2 Optical Mouse
    Apr 08 22:29:04 cyph gdm-Xorg-:0[358]: (II) evdev: Logitech USB-PS/2 Optical Mouse: Close
    Apr 08 22:29:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 22:29:06 cyph gdm-Xorg-:0[358]: The XKEYBOARD keymap compiler (xkbcomp) reports:
    Apr 08 22:29:06 cyph gdm-Xorg-:0[358]: > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    Apr 08 22:29:06 cyph gdm-Xorg-:0[358]: > Ignoring extra symbols
    Apr 08 22:29:06 cyph gdm-Xorg-:0[358]: Errors from xkbcomp are not fatal to the X server
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: HP WMI hotkeys: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: HP Wireless hotkeys: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "synaptics"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: AT Translated Set 2 keyboard: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: HP Webcam-101: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: Power Button: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: Video Bus: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: Video Bus: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) evdev: Power Button: Close
    Apr 08 23:39:04 cyph gdm-Xorg-:0[358]: (II) UnloadModule: "evdev"
    Apr 08 23:39:05 cyph gdm-Xorg-:0[358]: (II) Server terminated successfully (0). Closing log file.
    -- Reboot --
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: X.Org X Server 1.17.1
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Release Date: 2015-02-10
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: X Protocol Version 11, Revision 0
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Build Operating System: Linux 3.18.6-1-ARCH x86_64
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Current Operating System: Linux cyph 3.19.3-3-ARCH #1 SMP PREEMPT Wed Apr 8 14:10:00 CEST 2015 x86_64
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/root rw cryptdevice=/dev/sda6:root
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Build Date: 14 March 2015 06:45:50PM
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Current version of pixman: 0.32.6
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Before reporting problems, check http://wiki.x.org
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: to make sure that you have the latest version.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Markers: (--) probed, (**) from config file, (==) default setting,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (++) from command line, (!!) notice, (II) informational,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (++) Log file: "/dev/null", Time: Thu Apr 9 22:30:42 2015
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) Using config directory: "/etc/X11/xorg.conf.d"
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) No Layout section. Using the first Screen section.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) No screen section available. Using defaults.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (**) |-->Screen "Default Screen Section" (0)
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (**) | |-->Monitor "<default monitor>"
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) No monitor specified for screen "Default Screen Section".
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: Using a default monitor configuration.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) Automatically adding devices
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) Automatically enabling devices
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) Automatically adding GPU devices
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) FontPath set to:
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: /usr/share/fonts/misc/,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: /usr/share/fonts/TTF/,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: /usr/share/fonts/OTF/,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: /usr/share/fonts/Type1/,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: /usr/share/fonts/100dpi/,
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: /usr/share/fonts/75dpi/
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (==) ModulePath set to "/usr/lib/xorg/modules"
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) The server relies on udev to provide the list of input devices.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: If no devices become available, reconfigure udev or disable AutoAddDevices.
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) Loader magic: 0x815d80
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) Module ABI versions:
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: X.Org ANSI C Emulation: 0.4
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: X.Org Video Driver: 19.0
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: X.Org XInput driver : 21.0
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: X.Org Server Extension : 9.0
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (EE) systemd-logind: failed to get session: PID 363 does not belong to any known session
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) xfree86: Adding drm device (/dev/dri/card1)
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) xfree86: Adding drm device (/dev/dri/card0)
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (--) PCI:*(0:0:2:0) 8086:0116:103c:1672 rev 9, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00005000/64
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (--) PCI: (0:1:0:0) 1002:6760:103c:1672 rev 0, Mem @ 0xa0000000/268435456, 0xc2600000/131072, I/O @ 0x00004000/256, BIOS @ 0x????????/131072
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) LoadModule: "glx"
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    Apr 09 22:30:42 cyph gdm-Xorg-:0[363]: (II) Module glx: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.1, module version = 1.0.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Server Extension, version 9.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) AIGLX enabled
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Matched intel as autoconfigured driver 0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Matched ati as autoconfigured driver 1
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Matched intel as autoconfigured driver 2
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Matched modesetting as autoconfigured driver 3
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Matched fbdev as autoconfigured driver 4
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Matched vesa as autoconfigured driver 5
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) Assigned the driver to the xf86ConfigLayout
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "intel"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module intel: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.1, module version = 2.99.917
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Module class: X.Org Video Driver
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "ati"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module ati: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.0, module version = 7.5.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Module class: X.Org Video Driver
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "radeon"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module radeon: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.0, module version = 7.5.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Module class: X.Org Video Driver
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "modesetting"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module modesetting: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.1, module version = 1.17.1
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Module class: X.Org Video Driver
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "fbdev"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module fbdev: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.0, module version = 0.4.4
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Module class: X.Org Video Driver
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "vesa"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module vesa: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.0, module version = 2.3.2
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Module class: X.Org Video Driver
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) RADEON: Driver for ATI Radeon chipsets:
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X600 (RV380) 3E50 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon IGP330M/340M/350M (U2) 4337,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800PRO (R420) JI (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9800 (M18) JN (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility M7 LW (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL 7800 M7 LX (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL Mobility 9000 (M9) Ld (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9000 (M9) Lf (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9600 (M10) NQ (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9600 (M11) NR (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9600 (M10) NS (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL Mobility T2 (M10) NT (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800PRO (R423) UI (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800LE (R423) UJ (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800SE (R423) UK (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL unknown (R423) UR (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL unknown (R423) UT (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V5000 (M26) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V5000 (M26) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X700 XL (M26) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X700 (M26) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X700 (M26) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9100 IGP (U3) 5835,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200 5954 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200M 5975 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200 5A41 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200M 5A42 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200 5A61 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon XPRESS 200M 5A62 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X300 (RV370) 5B60 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X600 (RV370) 5B62 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X550 (RV370) 5B63 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V3100 (RV370) 5B64 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X800 XT (M28) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V5100 (M28) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X850 XT PE (R480) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X850 XT (R480) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X800XT (R423) 5D57 (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X700 PRO (RV410) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 3850 X2, ATI RV670,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireGL V3600, ATI Radeon HD 2600 LE,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6300 Series Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Firestream 9350, ATI Radeon HD 5800 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 5800 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 5000 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 5000 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Mobility Radeon Graphics, CEDAR,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) FBDEV: driver for framebuffer: fbdev
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) VESA: driver for VESA chipsets: vesa
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (++) using VT number 1
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20141121
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) [KMS] Kernel modesetting enabled.
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (WW) Falling back to old probe method for modesetting
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (WW) Falling back to old probe method for fbdev
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading sub module "fbdevhw"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) LoadModule: "fbdevhw"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) Module fbdevhw: vendor="X.Org Foundation"
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: compiled for 1.17.1, module version = 0.0.2
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: ABI class: X.Org Video Driver, version 19.0
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (WW) Falling back to old probe method for vesa
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel(0): Creating default Display subsection in Screen section
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: "Default Screen Section" for depth/fbbpp 24/32
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) intel(0): Depth 24, (--) framebuffer bpp 32
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) intel(0): RGB weight 888
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (==) intel(0): Default visual is TrueColor
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (II) intel(0): Output LVDS1 has no monitor section
    Apr 09 22:30:43 cyph gdm-Xorg-:0[363]: (--) intel(0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
    Apr 09 22:30:43 cyph gdm-Xor

    It happens to me as well but in xfce4 or openbox rather than on a display manager because I start X from `~/.bash_profile` upon login on tty1. If I logout and login again the problem goes away until I restart the system again.
    EDIT: Upgrading to linux 4.0.5-1 did not solve the issue.
    Last edited by FernandoBasso (2015-06-07 11:13:04)

  • Screen flickers in some browsers

    the picture flickers when I scroll in chrome or opera for example. in built-in nokia browser it's okay. nokia x

    Tried using Chrome browser on my X.
    Almost same issue appeared.
    So I think there is some problem with this app, system has to do nothing with this third party application.
    Or, this screen flickering might be due to delayed refresh rate.
    A past Nokia X user, now a X user.

  • Iphone 5 screen Flickers some time while entering app store password

    Hi
      My Iphone 5 screen Flickers some time while entering app store password, not sure if it is BUG of Iphone 5 or I OS6 . Do I need to exchange my device?

    It happened to me as well. Once in App Store and once in Flight+ app. It happens where the keys QWERTY is on the keypad. I assume it is a software bug in the OS. However, I don't eliminate the possibility of a hardware issue with my device since I dropped it on a hard carpet floor from waist height. No appearance damage but not sure about any internal damages. I will update this thread when I get more updates

  • [SOLVED: bug in ati drv] Screen flickering in Arch on reboot/shutdown

    Hi, everyone!
    I have just installed Arch (after N hours -- a little hard after fedora) and most things seem to work fine. However sometimes when I reboot/shutdown the machine, the screen starts flickering, showing horizontal stripes (just like a TV with bad signal).
    The computer is Compaq Presario V2615US (AMD Sempron 3000+, ATI Radeon Xpress 200M, widescreen, laptop). The kernel and X are 2.6.28-ARCH and 1.5.3, respectively. I am using the ati (which in turn invokes radeon) driver in my xorg.conf. The Xorg.0.log shows no errors...
    The problem seems to be correlated with the wireless networking, when I manually connect to a network with iwconfig (because I have never seen it, while using the cable). I had the same (unresolved) issue in Fedora 8 with X 1.3 (basically, this was the reason for me to switch to Arch).
    Have anyone encountered similar problem? I also tired to install the catalyst driver from AUR, but it requires catalyst-utils, which in turn needs Xorg 1.6 wierd...
    Thanx in advance,
    Leonid.
    Last edited by Leonid.I (2009-10-11 21:27:08)

    My screen flickers when I reboot or shutdown from the Desktop.  A pulsating flashing across the top half inch or so of my screen.  If I killall X from the command line and the shutdown or reboot from the login screen, (kde), it doesn't flicker.  After reading your post I tried shutting down eth0, and even removed the module.  No flicker.  So you are right.  Did you find a solution?  I am using intel from testing, but have had the same or similar problem since installing a couple of months ago.

  • IMac 21" late 09: Slow, screen flickering/tearing and odd behavior - the problem that puzzles everyone

    PLEASE HELP!
    My iMac 21" late -09, started acting a bit wierd a year ago. Things got worse rapidly, it got slower, the screen flickers/tears (see link below), short moments of lost internet connection, lost connection whit the keyboard (might be keyboard that is broken), almost overheats when gaming and odd behavior on some webbsites whit galleries and/or videos.
    Let's begin whit the screen: it's not vertikal lines or major distortions, just a subtle horisontal line that "wanders" from bottom to topp and some lagging from time to time. Looks like this: http://cl.ly/3i2W2o3S1D2T
    The wierd thing is that hi-res does not mean more "tearing". Yes the lagg and risk of tearing increases, but the connection seems to be: lots of movement=tearing. So a pixeld 240p video of people dancing can be way worse than a news debbate in1080p!?!
    Lost connection whit internet and keyboard rarely happens and is probably due to something else, but thought that was good to have in mind.
    Odd behavior: galleries ex: when browsing images on Facebook in fullscreen, the image sometimes jumps around in the beginning and when clicking on next the same picture might appear again or just nothing at all. When scrolling down overwiewing a gallery, the updating stops and you can't scroll down further. This problem appers mainly on FB, deviantart also acts a bit wierd but there is often small issues whit image sites. Doesn't help to switch browsers either!
    Videos: Youtube is horrible to use, stops loading, dosen't start loading, erases everything loaded (grey bar disapears and reloads), refuse to switch ressolution and suddenly stops the video like it was done! "ehh.. wasn't this 2min long? Not anymore, now its 34sec!". Mainly a Youtube problem but many similar sites can be a bit problematic to use.
    NO, it's not the HTML-5 problem or any standard flash issue and using a different browser dosen't help!
    Worst is the fact that most of these errors are not constant! One day your watching youtube or mabey a movie in VLC, a bit laggy, but almost no problem. Next day **** brakes lose and after 2hours of struggling you are ready to stabb yourself in the face!
    What i tried: Most easy buggfixes that might cause the above problems, updating most things, Switched from OS X SL to OS X ML, complete reinstall and some things i probably forgot by now. Then went to MacStore for repair, they didn't find anything wrong and said it worked fine after the standard diagnostic/repair program!?! Went home and everything was the same! Went a second time to MacStore, same result.
    So I'v reinstalled a few times and it seems to improve the Mac. But 2-3weeks later every error is back, even if I barely installed or downloaded anything!?!
    Any idea what this could be? Or is the graphic card broken and MacStore has a blind, inbred muppet as a technician?

    No I didn't. The first time i explained the problem thoroughly and thought that they just couldn't miss such a visual error. I was wrong. The second time the technician wasn't there so i showed the above clip to the salesstaff and explained everything onceagain. Later the technician called me and we talked for 10min.
    Btw, the problems always "manifests themselves", just varies between strenght and frequence.
    But all other issues aside, what could cause the tearing of the screen as seen int the above clip?

  • Screen flickering in windows 8 and 8.1

    Recently I've started to have this problem in both windows 8 and 8.1, where the screen flickers and lines and other oddities dance across the screen. It seems to happen much more in windows 8.1 than in windows 8, but it does still happen in windows 8. It seems to have started when I upgraded the OS X side of my laptop to Mavericks. The odd thing is that it doesn't exhibit the problem on the main display or a newly attached external display when at all when I plug the computer into an external display with hdmi. This makes me think that it might be some sort of a driver issue, but I am not really sure. Here is a video showing the problem: https://www.youtube.com/watch?v=6ICiCFfWv8I If anyone has any ideas about how I might be able to fix this issue, or if I need to have the laptop repaired/replaced, that would be extremely helpful!
    Thanks!

    @pwabrahams ,
    Hello and thank you for posting on the HP support forums. If each driver is the same file name and same date but have different file sizes.  What you will want to do is to download each one and save it to an external memory device.
    Once you have the drivers downloaded boot your system into safe mode.
    Windows 8 Safe Mode
    Now in safe mode uninstall the driver for your video.
    When the driver is removed boot back into windows normally and install the driver.
    Try all three drivers.  If all have the same issue you will need to do a repair.  For that you will need to contact HP phone support.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Please let me know how this goes for you.
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Screen flickers and photoshop becomes slow

    Hi,
    I have been using photoshop for quite a while now and have never faced any issues until now. I upgraded from windows 7/64 bit to windows 8.1/64 bit and the problems have started. When I turn on the ruler view my ruler flickers and also the photoshop becomes slow. If I hold the spacebar(hand tool) and want to move to some area it's not smooth. When the ruler view is turned off it's all fine but as a web designer I can't do without the ruler. Earlier I had the whole screen flickering issues but I did some search on the internet and have tuned the drawing board to basic and that has solved the issue but not the ruler flickering issue. BTW I am using Photoshop CC. I am unable to work on it and I need some help please help me guys.
    Thank you
    Here is my system configuration
    Dell Inspiron 15R N5110
    Windows 8.1 x64
    RAM 4gb ddr3
    Intel 3000 Hd
    Nvidia GeForce GT 525M
    HDD 500gb

    Here is my system info and no I cannot disable my onboard intel graphic as there is no option in bios.
    Adobe Photoshop Version: 14.2 (14.2 20131211.r.515 2013/12/11:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2395 MHz
    Built-in memory: 4003 MB
    Free memory: 1819 MB
    Memory available to Photoshop: 3311 MB
    Memory used by Photoshop: 57 %
    Image tile size: 1024K
    Image cache levels: 6
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=768, right=1366
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=1
    gpu[0].OGLVersion="3.0"
    gpu[0].MemoryMB=0
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="GeForce GT 525M/PCIe/SSE2"
    gpu[0].RendererID=0
    gpu[0].Vendor="NVIDIA Corporation"
    gpu[0].VendorID=0
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="?"
    gpu[0].Driver="?"
    gpu[0].DriverDate="?"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.1"
    gpu[0].CUDASupported=1
    gpu[0].CUDAVersion="6.0.1"
    gpu[0].OCLBandwidth=2.48346e+010
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.40 NVIDIA via Cg compiler"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[16384]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\[myUsername]\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      F:\, 100.0G, 72.7G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/10/29-11:47:16   79.548223   79.548223
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/10/25-12:15:59   5.0.24   79.547804
       AdobePDFL.dll   PDFL 2013/10/29-11:47:16   79.508720   79.508720
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPFiles.dll   Adobe XMP Files 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPScript.dll   Adobe XMP Script 2013/10/29-11:47:16   79.154911   79.154911
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/10/29-11:47:16   79.548223   79.548223
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       AMTLib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/10/29-11:47:16   79.548223   79.548223
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/10/29-11:47:16   79.548223   79.548223
       BIBUtils.dll   BIBUtils 2013/10/29-11:47:16   79.548223   79.548223
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/10/29-11:47:16   79.548223   79.548223
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/10/30-13:12:12   79.546835   79.546835
       FileInfo.dll   Adobe XMP FileInfo 2013/10/25-03:51:33   79.154511   79.154511
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2013/10/29-11:47:16   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OMP Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/10/29-11:47:16   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/10/29-11:47:16   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.2.0.36  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/10/30-13:12:12   79.546835   79.546835
       ScriptUIFlex.dll   ScriptUIFlex 2013/10/30-13:12:12   79.546835   79.546835
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.2 (14.2 x001)
       Accented Edges 14.2
       Adaptive Wide Angle 14.2
       Angled Strokes 14.2
       Average 14.2 (14.2 x001)
       Bas Relief 14.2
       BMP 14.2
       Camera Raw 8.0
       Camera Raw Filter 8.0
       Chalk & Charcoal 14.2
       Charcoal 14.2
       Chrome 14.2
       Cineon 14.2 (14.2 x001)
       Clouds 14.2 (14.2 x001)
       Collada 14.2 (14.2 x001)
       Color Halftone 14.2
       Colored Pencil 14.2
       CompuServe GIF 14.2
       Conté Crayon 14.2
       Craquelure 14.2
       Crop and Straighten Photos 14.2 (14.2 x001)
       Crop and Straighten Photos Filter 14.2
       Crosshatch 14.2
       Crystallize 14.2
       Cutout 14.2
       Dark Strokes 14.2
       De-Interlace 14.2
       Dicom 14.2
       Difference Clouds 14.2 (14.2 x001)
       Diffuse Glow 14.2
       Displace 14.2
       Dry Brush 14.2
       Eazel Acquire 14.2 (14.2 x001)
       Embed Watermark 4.0
       Entropy 14.2 (14.2 x001)
       Extrude 14.2
       FastCore Routines 14.2 (14.2 x001)
       Fibers 14.2
       Film Grain 14.2
       Filter Gallery 14.2
       Flash 3D 14.2 (14.2 x001)
       Fresco 14.2
       Glass 14.2
       Glowing Edges 14.2
       Google Earth 4 14.2 (14.2 x001)
       Grain 14.2
       Graphic Pen 14.2
       Halftone Pattern 14.2
       HDRMergeUI 14.2
       IFF Format 14.2
       Ink Outlines 14.2
       JPEG 2000 14.2
       Kurtosis 14.2 (14.2 x001)
       Lens Blur 14.2
       Lens Correction 14.2
       Lens Flare 14.2
       Liquify 14.2
       Matlab Operation 14.2 (14.2 x001)
       Maximum 14.2 (14.2 x001)
       Mean 14.2 (14.2 x001)
       Measurement Core 14.2 (14.2 x001)
       Median 14.2 (14.2 x001)
       Mezzotint 14.2
       Minimum 14.2 (14.2 x001)
       MMXCore Routines 14.2 (14.2 x001)
       Mosaic Tiles 14.2
       Multiprocessor Support 14.2 (14.2 x001)
       Neon Glow 14.2
       Note Paper 14.2
       NTSC Colors 14.2 (14.2 x001)
       Ocean Ripple 14.2
       Oil Paint 14.2
       OpenEXR 14.2
       Paint Daubs 14.2
       Palette Knife 14.2
       Patchwork 14.2
       Paths to Illustrator 14.2
       PCX 14.2 (14.2 x001)
       Photocopy 14.2
       Photoshop 3D Engine 14.2 (14.2 x001)
       Photoshop Touch 14.0
       Picture Package Filter 14.2 (14.2 x001)
       Pinch 14.2
       Pixar 14.2 (14.2 x001)
       Plaster 14.2
       Plastic Wrap 14.2
       PNG 14.2
       Pointillize 14.2
       Polar Coordinates 14.2
       Portable Bit Map 14.2 (14.2 x001)
       Poster Edges 14.2
       Radial Blur 14.2
       Radiance 14.2 (14.2 x001)
       Range 14.2 (14.2 x001)
       Read Watermark 4.0
       Reticulation 14.2
       Ripple 14.2
       Rough Pastels 14.2
       Save for Web 14.2
       ScriptingSupport 14.2
       Shake Reduction 14.2
       Shear 14.2
       Skewness 14.2 (14.2 x001)
       Smart Blur 14.2
       Smudge Stick 14.2
       Solarize 14.2 (14.2 x001)
       Spatter 14.2
       Spherize 14.2
       Sponge 14.2
       Sprayed Strokes 14.2
       Stained Glass 14.2
       Stamp 14.2
       Standard Deviation 14.2 (14.2 x001)
       STL 14.2 (14.2 x001)
       Sumi-e 14.2
       Summation 14.2 (14.2 x001)
       Targa 14.2
       Texturizer 14.2
       Tiles 14.2
       Torn Edges 14.2
       Twirl 14.2
       Underpainting 14.2
       Vanishing Point 14.2
       Variance 14.2 (14.2 x001)
       Variations 14.2 (14.2 x001)
       Water Paper 14.2
       Watercolor 14.2
       Wave 14.2
       Wavefront|OBJ 14.2 (14.2 x001)
       WIA Support 14.2 (14.2 x001)
       Wind 14.2
       Wireless Bitmap 14.2 (14.2 x001)
       ZigZag 14.2
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

  • Unpredictable results in some apps (claws-mail, texmaker)

    Apologies in advance for the long explanation :-)
    A few months ago I was trying out claws-mail. It has a great feature where you can ask it to go through all your folders, and extract unique instances of all email addresses, and put them in your address book. The trouble was, on my machine (Solaris 10, Blade 1500), the results differed every time it was run, and it always missed some addresses. I queried this in their forum, and no-one else reported the same problem. Due to this giving me a lack of confidence with the software, I stopped using it (shame, really).
    I have since reinstalled the OS, and decided to put TeXmaker on it. Only I now have what I think is a similar problem. TeXmaker uses aspell as a spellchecker. It works fine under Windows, but on ths box if I repeatedly check the same document, sometimes it will find a misspelling, sometimes it wont. Aspell works fine if called directly from the command line.
    It may be my brain seeing a coincidence where there isn't one, but as these both appear to be search-and-match operations, I can't help wondering if there is a connection.
    Has anyone else had similar problems?
    Can anyone help me (or at least point me in the right direction) with starting to diagnose the cause of the problem?
    Thanks!

    Try this .Xdefaults which works with awesome/urxvt.
    *utf8: 1
    *faceSize: 10
    *jumpScroll: true
    *multiScroll: true
    *boldMode: false
    *scrollBar: false
    *cutNewline: false
    *scrollTtyOutput: false
    *scrollKey: true
    *cursorBlink: true
    *dynamicColors: true
    *saveLines: 5000
    *geometry: 125x45
    ! URxvt
    URxvt*termName: xterm
    URxvt.font: xft:Bitstream Vera Sans Mono:antialias=true:pixelsize=12
    !urxvt.font: xft:Bitstream Vera Sans Mono-12:antialias=true
    URxvt*transparent: false
    URxvt*tintColor: #666666
    URxvt*shading: 50
    URxvt*scrollBar: false
    URxvt*internalBorder: 5
    URxvt*urgentOnBell: true
    URxvt*scrollTtyKeypress: true
    URxvt*underlineColor: yellow
    URxvt*perl-ext-common: default,matcher
    URxvt*urlLauncher: firefox
    URxvt*matcher.button: 1
    URxvt*matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-]
    ! Colours
    *background: #303030
    *foreground: #f2f2f2
    *cursorColor: #999
    *highlightColor: #333
    *color0: #101010
    *color1: #f13a21
    *color2: #93f91d
    *color3: #ffd00a
    *color4: #404f9e
    *color5: #ec0048
    *color6: #2aa7e7
    *color7: #f2f2f2
    *color8: #1d202f
    *color9: #ff361e
    *color10: #ffc005
    *color11: #93ff00
    *color12: #3071ff
    *color13: #ef0051
    *color14: #4bb8fd
    *color15: #a020f0
    Last edited by r6 (2010-01-02 05:05:11)

  • Severe screen flickering in Warcraft 3

    I installed it, renamed the movies folder as well. However, when I run the game, I get severe screen flickering, to the extent that the game menu is visible once every 4-5 seconds. Any thoughts on how to solve this?
    Since I cannot use the menu because of the flickering, I have to kill the game from terminal. However, upon exiting, my desktop's resolution and colours change, till I reboot. I tried running the game under a desktop emulation in wine, but that doesn't seem to help either. The emulated desktop doesn't flicker, but the game does.
    Last edited by devadittya (2010-02-04 12:37:57)

    Aside from the potential SLI issue, you might want to study your Logitech mouse driver.
    Going back a bit, several versions of the MS InteliPoint mouse driver caused just what you describe. I have not heard of this with Logitech, but did have some other issues with their SetPoint drivers. In my case, I ditched their keyboard, but kept the mouse (love it), and did away with SetPoint, using the generic driver. All functions that I needed were handled, and SetPoint was out of the equation.
    Something else to look at, and good luck,
    Hunt

  • Screen Flickers in Windows (Bootcamp)

    Hello there !
    First of all, sorry for my english, i'm from Romania.
    I need your help :
    I have a 2008 Aluminiu Macbook - not PRO - 2.4Ghz, 4GB DDR3, Nvidia GeForce 9400m
    I recently installed Windows Vista to play some games but after 10 minutes o playing my screen starts to flicker for no reason.
    This happens in CoD MW 2, Team Fortress 2 and NFS Most Wanted.
    My first though was that Vista was the problem so i'ved installed Windows 7 but this didn't solve the problem. Even in W7 my screen flickers.
    When I play games i putt my Macbook on the desk to not overheat so i don't think the heat may be the reason but you never know.
    What's you opinion ? Please help me with some advice. I'm 17 and i'ved just changed the battery and HDD in this Mac, i can't really afford a new one. They are really expensive in Romania.
    Again, sorry for my english !
    Thanks !!

    Actually, I've just noticed that it also flickers if I tap the right spot during the BIOS bootup (gray screen when laptop first turns on). Disabling the SMS in MacOS didn't make a difference, so I'm going to assume it's hardware and get that logic board that's troubling everyone else replaced...
    Thanks for your help...

  • HP Monitor L1710 -- power light flashes green when I turn on PC, screen flickers black w/ no image

    Hello,
    Last night I turned off my PC w/ a HP Monitor L1710, which I did not turn off. When I turned on my PC this morning the screen does not "turn on" -- the green light next to the power button flashes on and off, and the screen flickers between shades of black, like it's trying to turn of. This PC usually is not turned off at night (this is a work PC, and I just started to working at this desk (almost) never turned the PC off at night, so I wonder if it has something to do with that. I've turned the PC on and off multiple times, unplugged the power cable (for the monitor) and cable that runs from the monitor to the PC. I believe the PC is on (cd drive opens and closes, recognizes my phone when I plug it in to charge), so I don't think that is the problem. 
    I see a lot online that it may be stuck in power saving mode. 
    Any thoughts? Any help or ideas would be greatly appreciated
    Tom D. 

    Hello @tom_degennaro,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that your monitor is not coming on when you turn on your PC. I am setting out some steps for you to try for you to try below:
    Step 1. Unplug the power cord from the monitor and the wall outlet
    Step 2. Hold the power button down for one minute
    Step 3. Plug the power cord back into the monitor and then the wall outlet (not a powerbar or surge protector)
    Step 4. Press the Menu button on the front of the monitor
    Step 5. Navigate to the Factory Reset option and select it.
    If the issue still persists after the above steps try the monitor on another computer. If the monitor still does not work at that point then, it appears to be a physical issue and I think it would be best if you contact HP Technical Support for repair options.
    If however the monitor works on another computer you have an issue with the computer it was originally on. If the computer is an HP computer I would be happy to assist you with, but first I would encourage you to post your product number for the computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • 2509M screen flickers for a split second every 8 to 10 seconds

    help. this is annoying. my screen flickers every 8 to 10 second. colorfull static flashes really quickly. help me troubleshoot please. This is awful.

    Hello dustinmulvaney,
    I understand you’re having an issue with you HP monitor flickering off and on. I will do what I can to help resolve this problem for you. Some of the things I’m going to ask you might have already done so please just ignore those and proceed.
    1st- Please check your connections on both ends to make sure they are tight and secure. Also make sure the pins within the cables are not bent or broken.
    2nd- If you can try to attach the monitor to another PC to test. If the issue still exists it’s a monitor issue. There always is a chance the PC is causing this problem.
    3rd- On the bottom right corner of the monitor there are some buttons. Press the menu button then toggle down to factory reset.  (Note factory reset doesn't affect your PC at all just your monitor). Don’t be surprised if the screen flickers and goes off and come back on .
    4th- Click on the link and it will direct you to a page that will allow you to update the drivers for your monitor. Pick the current operating system that your PC is currently using and see if there is a driver available for it.  Monitor Drivers
    Please respond at your earliest convenience.
    Thanks 
    Clicking the White Kudos star on the left is a way to say Thanks!
    Clicking the 'Accept as Solution' button is a way to let others know which steps helped solve the problem!

Maybe you are looking for

  • How to preserve the "return" char in the datafile imported

    Is there any way to preserve the "return" char in the datafile when using SQL*Loader to import data?What I wanted is to keep some format of the original data,the sample datafile as following(with the "|" as the fields-limit) aaaaa|bbbbbb cccccc|jjjjj

  • Median function in BEx query based webi report

    Hi Experts,           I have a requirement to have a median function in a chart in my webi report. I'm using BO 4.0 SP2 Fix pack 2.9 and using IDT connection to connect BEx queries. I have 3 dimension objects in X axis and Median as y axis. When i'm

  • How to find the engine type in EP installation

    Hello, Please let me know how I can find whether EP installation is done on ABAP or J2EE engine.

  • Rules check at Module Booking

    Hi, Sorry that i am putting so many questions at a rapid pace. My client has strange requirements at module booking level. The system shall check the academic overview of previous module if booking is happening at subsequent module. It shall count th

  • How many clients can be connected to an Access Point

    Hi friend, I want to know how many clients can be connected in Cisco AP 1140. Best Regard, Marco.