You are not logged in.
Pages: 1
Topic closed
I use the following command to set my screensaver options
xset dpms 30 60 300
After reading the Arch wiki, I found out that this can be made permanent by adding this to the xorg.conf or putting it in ~/.xprofile
Contents of xorg.conf
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder75) Tue Dec 8 21:04:28 PST 2009
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "StandbyTime" "2"
Option "SuspendTime" "3"
Option "OffTime" "5"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "Dell Inspiron 1520 WXGA+ LCD"
VendorName "Dell"
ModelName "Unknown"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "NoLogo" "true"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "Device" "/dev/input/mouse0"
Option "Protocol" "auto-dev"
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.06"
Option "MaxSpeed" "0.12"
Option "AccelFactor" "0.0010"
Option "SHMConfig" "on"
Option "CircularScrolling" "1"
Option "CircScrollTrigger" "0"
EndSection
Section "ServerFlags"
Option "DontZap" "false"
Option "BlankTime" "0.1"
Option "StandbyTime" "0.5"
Option "SuspendTime" "1"
Option "OffTime" "5"
EndSection
Contents of ~/.xprofile
xset dpms 30 60 300
I even added this to crontab
0 * * * * ~/Wallpapers/change-background-folder.py
0 * * * * /usr/bin/xset s 30
0 * * * * /usr/bin/xset dpms 60 120 300
@reboot ID=screensaver AFTER=2m /usr/bin/xset s 30
@reboot ID=monitor AFTER=2m /usr/bin/xset dpms 60 120 300
@reboot ID=vu AFTER=1m vuze
Still after doing all this, when I give xset q after a reboot, I get
[theta@boolean-pc ~]$ xset q
Keyboard Control:
auto repeat: on key click percent: 0 LED mask: 00000000
XKB indicators:
00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
03: Compose: off 04: Kana: off 05: Sleep: off
06: Suspend: off 07: Mute: off 08: Misc: off
09: Mail: off 10: Charging: off 11: Shift Lock: off
12: Group 2: off 13: Mouse Keys: off
auto repeat delay: 500 repeat rate: 30
auto repeating keys: 00ffffffdffffbbf
fadfffefffedffff
9fffffffffffffff
fff7ffffffffffff
bell percent: 50 bell pitch: 400 bell duration: 100
Pointer Control:
acceleration: 3/1 threshold: 4
Screen Saver:
prefer blanking: yes allow exposures: yes
timeout: 600 cycle: 600
Colors:
default colormap: 0x20 BlackPixel: 0 WhitePixel: 16777215
Font Path:
/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/,built-ins
DPMS (Energy Star):
Standby: 0 Suspend: 0 Off: 0
DPMS is Enabled
Monitor is On
Font cache:
Server does not have the FontCache Extension
The parameters are still all 0.
Please suggest a solution.
Apoorv
Last edited by theta (2011-08-02 15:56:06)
Offline
I keep my settings in ~.xinitrc.
Offline
I put the line
xset dpms 30 60 300
in my ~/.xinitrc but that also didn't work. Do I need to use some different syntax?
Offline
What happens if you just type it in?
Before
DPMS (Energy Star):
Standby: 1200 Suspend: 1800 Off: 2400
DPMS is Disabled
After
xset dpms 30 60 300
[karol@black ~]$ xset q | grep -A1 -i dpms
DPMS (Energy Star):
Standby: 30 Suspend: 60 Off: 300
DPMS is Enabled
Monitor is On
Edit: And the settings work - my screen turned black as expected after a period of inactivity.
Last edited by karol (2010-09-05 15:48:57)
Offline
Before:
[theta@boolean-pc ~]$ xset q | grep -A1 -i dpms
DPMS (Energy Star):
Standby: 0 Suspend: 0 Off: 0
DPMS is Enabled
Monitor is On
After:
[theta@boolean-pc ~]$ xset q | grep -A1 -i dpms
DPMS (Energy Star):
Standby: 30 Suspend: 60 Off: 300
DPMS is Enabled
Monitor is On
Just typing it in works. But all I want is that this should happen automatically at bootup. The arch wiki state to include these options in the ServerLayout section of xorg.conf, but that didn't work either.
Regards,
Apoorv
Offline
This seems to be some sort of a timing problem. I remember similar issues for quite some time. The system obviously tries to start xset from .xinitrc before the X server is fully up which apparently causes the settings being overwritten in some final X xerver startup steps.
I wasn't able to solve this in .xinitrc, so I finally put the xset commands into my openbox autostart.sh file which is guaranteed to start after the X server has settled. Now everything works.
To know or not to know ...
... the questions remain forever.
Offline
Just to be sure, are you adding the "xset" line _before_ the last "exec" line in your .xinitrc?
Offline
Yes, it is the last line in .xinitrc
I tried running the command in the gnome startup manager, but still couldn't get it to work. Looks like gnome is overwriting the settings. Any way to make this not happen?
Regards,
Apoorv
Offline
Yes, it is the last line in .xinitrc
xset is the last line?
xset
...
exec
Try running it like that (but of course set some options) - first set all the xset options, other settings, then start your WM.
When you still can't get it to run, post your .xinitrc.
Offline
If you have set up your .xinitrc the way karol suggests and it still doesn't work, you could delay it kicking in until X has finished loading
(sleep 15s && xset dpms 30 60 300) &
exec yourwm
That may get around the problem bernarcher describes...
Offline
I tried it as karol said, but nothing different happened. When I put in the sleep command as given below, gdm didn't start at all. The screen got stuck at the booting procedure, where if I pressed <Enter> it took me to CLI login. (I suppose tty1)
Here's my ~./xinitrc:
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice
(sleep 15s && xset dpms 30 60 300) &
exec gnome-session
Apoorv
Offline
What if you put them in your rc.local?
Offline
Another option instead of using xset is to set the appropriate options in your xorg.conf. Searching for dpms in man xorg.conf will turn up all the information you need.
Offline
I think the solution to this is somewhere within the gnome-settings daemon. I recently switched from gnome to openbox and the simplest procedure, ie, putting the dpms options in xorg.conf worked.
I am not 100% cerrtain but I think it has got something to do with gnome overwriting these settings on startup.
Offline
If you have set up your .xinitrc the way karol suggests and it still doesn't work, you could delay it kicking in until X has finished loading
(sleep 15s && xset dpms 30 60 300) & exec yourwm
That may get around the problem bernarcher describes...
Thank you! This works very well for me.
It's the only way I can get it to work.
For the records, so the smart people can find the problem, here is my xorg.conf:
Section "ServerLayout"
Identifier "ServerLayout0"
Screen 0 "BenQ" 0 0
#Option "BlankTime" "0"
Option "StandbyTime" "10"
Option "SuspendTime" "20"
Option "OffTime" "30"
EndSection
Section "Screen"
Identifier "BenQ"
Device "Intel4000"
Monitor "HDMI2"
DefaultDepth 24
SubSection "Display"
#Depth "24"
EndSubSection
EndSection
Section "Monitor"
Identifier "HDMI2"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "Intel4000"
Driver "intel"
BusID "PCI:0:2:0"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
# Read and parsed by systemd-localed. It's probably wise not to edit this manually too freely.
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "se"
EndSection
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Xorg seems to not care about my settings in xorg.conf and sets DPMS values to "0":
$ xset -q
Keyboard Control:
auto repeat: on key click percent: 0 LED mask: 00000002
XKB indicators:
00: Caps Lock: off 01: Num Lock: on 02: Scroll Lock: off
03: Compose: off 04: Kana: off 05: Sleep: off
06: Suspend: off 07: Mute: off 08: Misc: off
09: Mail: off 10: Charging: off 11: Shift Lock: off
12: Group 2: off 13: Mouse Keys: off
auto repeat delay: 500 repeat rate: 33
auto repeating keys: 00ffffffdffffbbf
fadfffefffedffff
9fffffffffffffff
fff7ffffffffffff
bell percent: 50 bell pitch: 400 bell duration: 100
Pointer Control:
acceleration: 2/1 threshold: 4
Screen Saver:
prefer blanking: yes allow exposures: yes
timeout: 0 cycle: 0
Colors:
default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff
Font Path:
/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,built-ins
DPMS (Energy Star):
Standby: 0 Suspend: 0 Off: 0
DPMS is Enabled
Monitor is On
And the xorg log:
[ 17738.153]
X.Org X Server 1.15.1
Release Date: 2014-04-13
[ 17738.194] X Protocol Version 11, Revision 0
[ 17738.208] Build Operating System: Linux 3.14.0-4-ARCH x86_64
[ 17738.223] Current Operating System: Linux arch6 3.14.1-1-ARCH #1 SMP PREEMPT Mon Apr 14 20:40:47 CEST 2014 x86_64
[ 17738.223] Kernel command line: console=tty0 xen-pciback.hide=(01:00.0)(01:00.1)(03:00.0)(02:00.0)(00:14.0)(00:1d.0) root=/dev/VG/Aroot rw
[ 17738.254] Build Date: 14 April 2014 08:39:09AM
[ 17738.269]
[ 17738.285] Current version of pixman: 0.32.4
[ 17738.314] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 17738.314] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 17738.375] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 29 22:10:19 2014
[ 17738.390] (==) Using config file: "/etc/X11/xorg.conf"
[ 17738.406] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 17738.406] (==) ServerLayout "ServerLayout0"
[ 17738.406] (**) |-->Screen "BenQ" (0)
[ 17738.406] (**) | |-->Monitor "HDMI2"
[ 17738.406] (**) | |-->Device "Intel4000"
[ 17738.406] (**) Option "StandbyTime" "10"
[ 17738.406] (**) Option "SuspendTime" "20"
[ 17738.406] (**) Option "OffTime" "30"
[ 17738.406] (==) Automatically adding devices
[ 17738.406] (==) Automatically enabling devices
[ 17738.406] (==) Automatically adding GPU devices
[ 17738.406] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[ 17738.406] Entry deleted from font path.
[ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[ 17738.406] Entry deleted from font path.
[ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[ 17738.406] Entry deleted from font path.
[ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[ 17738.406] (==) FontPath set to:
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/Type1/
[ 17738.406] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 17738.406] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 17738.406] (II) Loader magic: 0x804c80
[ 17738.406] (II) Module ABI versions:
[ 17738.406] X.Org ANSI C Emulation: 0.4
[ 17738.406] X.Org Video Driver: 15.0
[ 17738.406] X.Org XInput driver : 20.0
[ 17738.406] X.Org Server Extension : 8.0
[ 17738.406] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 17738.408] (--) PCI:*(0:0:2:0) 8086:0162:1458:d000 rev 9, Mem @ 0xf4400000/4194304, 0xc0000000/268435456, I/O @ 0x0000f000/64
[ 17738.408] (--) PCI: (0:1:0:0) 1002:67b1:1002:0b00 rev 0, Mem @ 0xd0000000/268435456, 0xe0000000/8388608, 0xf4b00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[ 17738.408] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 17738.424] Initializing built-in extension Generic Event Extension
[ 17738.439] Initializing built-in extension SHAPE
[ 17738.454] Initializing built-in extension MIT-SHM
[ 17738.468] Initializing built-in extension XInputExtension
[ 17738.482] Initializing built-in extension XTEST
[ 17738.495] Initializing built-in extension BIG-REQUESTS
[ 17738.509] Initializing built-in extension SYNC
[ 17738.523] Initializing built-in extension XKEYBOARD
[ 17738.536] Initializing built-in extension XC-MISC
[ 17738.548] Initializing built-in extension SECURITY
[ 17738.561] Initializing built-in extension XINERAMA
[ 17738.573] Initializing built-in extension XFIXES
[ 17738.585] Initializing built-in extension RENDER
[ 17738.597] Initializing built-in extension RANDR
[ 17738.608] Initializing built-in extension COMPOSITE
[ 17738.620] Initializing built-in extension DAMAGE
[ 17738.631] Initializing built-in extension MIT-SCREEN-SAVER
[ 17738.643] Initializing built-in extension DOUBLE-BUFFER
[ 17738.654] Initializing built-in extension RECORD
[ 17738.665] Initializing built-in extension DPMS
[ 17738.677] Initializing built-in extension Present
[ 17738.688] Initializing built-in extension DRI3
[ 17738.700] Initializing built-in extension X-Resource
[ 17738.711] Initializing built-in extension XVideo
[ 17738.722] Initializing built-in extension XVideo-MotionCompensation
[ 17738.734] Initializing built-in extension XFree86-VidModeExtension
[ 17738.746] Initializing built-in extension XFree86-DGA
[ 17738.757] Initializing built-in extension XFree86-DRI
[ 17738.769] Initializing built-in extension DRI2
[ 17738.769] (II) "glx" will be loaded by default.
[ 17738.769] (II) LoadModule: "dri2"
[ 17738.769] (II) Module "dri2" already built-in
[ 17738.769] (II) LoadModule: "glamoregl"
[ 17738.769] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 17738.770] (II) Module glamoregl: vendor="X.Org Foundation"
[ 17738.770] compiled for 1.15.0, module version = 0.6.0
[ 17738.770] ABI class: X.Org ANSI C Emulation, version 0.4
[ 17738.770] (II) LoadModule: "glx"
[ 17738.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 17738.770] (II) Module glx: vendor="X.Org Foundation"
[ 17738.770] compiled for 1.15.1, module version = 1.0.0
[ 17738.771] ABI class: X.Org Server Extension, version 8.0
[ 17738.771] (==) AIGLX enabled
[ 17738.782] Loading extension GLX
[ 17738.782] (II) LoadModule: "intel"
[ 17738.782] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 17738.782] (II) Module intel: vendor="X.Org Foundation"
[ 17738.783] compiled for 1.15.0, module version = 2.99.911
[ 17738.783] Module class: X.Org Video Driver
[ 17738.783] ABI class: X.Org Video Driver, version 15.0
[ 17738.783] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[ 17738.783] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
[ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
[ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
[ 17738.783] (++) using VT number 1
[ 17738.783] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
[ 17738.783] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
[ 17738.783] (**) intel(0): Depth 24, (--) framebuffer bpp 32
[ 17738.783] (==) intel(0): RGB weight 888
[ 17738.783] (==) intel(0): Default visual is TrueColor
[ 17738.783] (**) intel(0): Option "AccelMethod" "sna"
[ 17738.783] (**) intel(0): Option "TearFree" "true"
[ 17738.783] (**) intel(0): Framebuffer tiled
[ 17738.784] (**) intel(0): Pixmaps tiled
[ 17738.784] (**) intel(0): "Tear free" enabled
[ 17738.784] (**) intel(0): Forcing per-crtc-pixmaps? no
[ 17738.784] (II) intel(0): Output VGA1 using monitor section HDMI2
[ 17738.784] (II) intel(0): Output HDMI1 has no monitor section
[ 17738.784] (II) intel(0): Output DP1 has no monitor section
[ 17738.784] (II) intel(0): Output HDMI2 using monitor section HDMI2
[ 17738.784] (II) intel(0): Output DP2 has no monitor section
[ 17738.784] (II) intel(0): Output VIRTUAL1 has no monitor section
[ 17738.784] (--) intel(0): Output HDMI2 using initial mode 1920x1080 on pipe 0
[ 17738.784] (==) intel(0): DPI set to (96, 96)
[ 17738.784] (II) Loading sub module "dri2"
[ 17738.784] (II) LoadModule: "dri2"
[ 17738.784] (II) Module "dri2" already built-in
[ 17738.784] (==) Depth 24 pixmap format is 32 bpp
[ 17738.784] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
[ 17738.784] (==) intel(0): Backing store enabled
[ 17738.784] (==) intel(0): Silken mouse enabled
[ 17738.784] (II) intel(0): HW Cursor enabled
[ 17738.784] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 17738.784] (**) intel(0): DPMS enabled
[ 17738.784] (II) intel(0): [DRI2] Setup complete
[ 17738.784] (II) intel(0): [DRI2] DRI driver: i965
[ 17738.784] (II) intel(0): [DRI2] VDPAU driver: i965
[ 17738.784] (II) intel(0): direct rendering: DRI2 Enabled
[ 17738.784] (==) intel(0): hotplug detection: "enabled"
[ 17738.784] (--) RandR disabled
[ 17738.789] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context
[ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_profile
[ 17738.789] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[ 17738.789] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 17738.789] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 17738.789] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[ 17738.789] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[ 17738.789] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[ 17738.789] (II) AIGLX: Loaded and initialized i965
[ 17738.789] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 17738.791] (II) intel(0): switch to mode 1920x1080@60.0 on HDMI2 using pipe 0, position (0, 0), rotation normal, reflection none
[ 17738.801] (II) intel(0): Setting screen physical size to 508 x 285
[ 17738.839] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 17738.839] (**) Power Button: Applying InputClass "system-keyboard"
[ 17738.839] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 17738.839] (II) LoadModule: "evdev"
[ 17738.839] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 17738.840] (II) Module evdev: vendor="X.Org Foundation"
[ 17738.840] compiled for 1.15.0, module version = 2.8.2
[ 17738.840] Module class: X.Org XInput Driver
[ 17738.840] ABI class: X.Org XInput driver, version 20.0
[ 17738.840] (II) Using input driver 'evdev' for 'Power Button'
[ 17738.840] (**) Power Button: always reports core events
[ 17738.840] (**) evdev: Power Button: Device: "/dev/input/event1"
[ 17738.840] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 17738.840] (--) evdev: Power Button: Found keys
[ 17738.840] (II) evdev: Power Button: Configuring as keyboard
[ 17738.840] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 17738.840] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 17738.840] (**) Option "xkb_rules" "evdev"
[ 17738.840] (**) Option "xkb_model" "pc104"
[ 17738.840] (**) Option "xkb_layout" "se"
[ 17738.870] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
[ 17738.870] (**) Video Bus: Applying InputClass "system-keyboard"
[ 17738.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 17738.870] (II) Using input driver 'evdev' for 'Video Bus'
[ 17738.870] (**) Video Bus: always reports core events
[ 17738.870] (**) evdev: Video Bus: Device: "/dev/input/event2"
[ 17738.871] (--) evdev: Video Bus: Vendor 0 Product 0x6
[ 17738.871] (--) evdev: Video Bus: Found keys
[ 17738.871] (II) evdev: Video Bus: Configuring as keyboard
[ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2/event2"
[ 17738.871] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[ 17738.871] (**) Option "xkb_rules" "evdev"
[ 17738.871] (**) Option "xkb_model" "pc104"
[ 17738.871] (**) Option "xkb_layout" "se"
[ 17738.871] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 17738.871] (**) Power Button: Applying InputClass "system-keyboard"
[ 17738.871] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 17738.871] (II) Using input driver 'evdev' for 'Power Button'
[ 17738.871] (**) Power Button: always reports core events
[ 17738.871] (**) evdev: Power Button: Device: "/dev/input/event0"
[ 17738.871] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 17738.871] (--) evdev: Power Button: Found keys
[ 17738.871] (II) evdev: Power Button: Configuring as keyboard
[ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[ 17738.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[ 17738.871] (**) Option "xkb_rules" "evdev"
[ 17738.871] (**) Option "xkb_model" "pc104"
[ 17738.871] (**) Option "xkb_layout" "se"
[ 17738.871] (II) config/udev: Adding drm device (/dev/dri/card0)
[ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event3)
[ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
[ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
[ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
[ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
[ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event3"
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
[ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:045E:0750.0001/input/input5/event3"
[ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 9)
[ 17738.872] (**) Option "xkb_rules" "evdev"
[ 17738.872] (**) Option "xkb_model" "pc104"
[ 17738.872] (**) Option "xkb_layout" "se"
[ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event4)
[ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
[ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
[ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
[ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
[ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event4"
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Using mtdev for this device
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found 1 mouse buttons
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found scroll wheel(s)
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found relative axes
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute axes
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute multitouch axes
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found x and y absolute axes
[ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Forcing relative x/y axes to exist.
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as mouse
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Adding scrollwheel support
[ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: YAxisMapping: buttons 4 and 5
[ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.1/0003:045E:0750.0002/input/input6/event4"
[ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 10)
[ 17738.872] (**) Option "xkb_rules" "evdev"
[ 17738.872] (**) Option "xkb_model" "pc104"
[ 17738.872] (**) Option "xkb_layout" "se"
[ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: initialized for relative axes.
[ 17738.873] (WW) evdev: Microsoft Wired Keyboard 600: ignoring absolute axes.
[ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) keeping acceleration scheme 1
[ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration profile 0
[ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration factor: 2.000
[ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration threshold: 4
[ 17738.873] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/js0)
[ 17738.873] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
[ 17738.873] (II) No input driver specified, ignoring this device.
[ 17738.873] (II) This device may have been added with another device file.
[ 17738.873] (II) config/udev: Adding input device A..... G3 (/dev/input/event5)
[ 17738.873] (**) A..... G3: Applying InputClass "evdev pointer catchall"
[ 17738.873] (II) Using input driver 'evdev' for 'A..... G3'
[ 17738.873] (**) A..... G3: always reports core events
[ 17738.873] (**) evdev: A..... G3: Device: "/dev/input/event5"
[ 17738.873] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
[ 17738.873] (--) evdev: A..... G3: Found 12 mouse buttons
[ 17738.873] (--) evdev: A..... G3: Found scroll wheel(s)
[ 17738.873] (--) evdev: A..... G3: Found relative axes
[ 17738.873] (--) evdev: A..... G3: Found x and y relative axes
[ 17738.873] (II) evdev: A..... G3: Configuring as mouse
[ 17738.873] (II) evdev: A..... G3: Adding scrollwheel support
[ 17738.873] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
[ 17738.873] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 17738.873] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/0003:E0FF:0002.0003/input/input7/event5"
[ 17738.873] (II) XINPUT: Adding extended input device "A..... G3" (type: MOUSE, id 11)
[ 17738.873] (II) evdev: A..... G3: initialized for relative axes.
[ 17738.873] (**) A..... G3: (accel) keeping acceleration scheme 1
[ 17738.873] (**) A..... G3: (accel) acceleration profile 0
[ 17738.873] (**) A..... G3: (accel) acceleration factor: 2.000
[ 17738.873] (**) A..... G3: (accel) acceleration threshold: 4
[ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/mouse0)
[ 17738.874] (II) No input driver specified, ignoring this device.
[ 17738.874] (II) This device may have been added with another device file.
[ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/event6)
[ 17738.874] (**) A..... G3: Applying InputClass "system-keyboard"
[ 17738.874] (**) A..... G3: Applying InputClass "evdev keyboard catchall"
[ 17738.874] (II) Using input driver 'evdev' for 'A..... G3'
[ 17738.874] (**) A..... G3: always reports core events
[ 17738.874] (**) evdev: A..... G3: Device: "/dev/input/event6"
[ 17738.874] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
[ 17738.874] (--) evdev: A..... G3: Found 1 mouse buttons
[ 17738.874] (--) evdev: A..... G3: Found scroll wheel(s)
[ 17738.874] (--) evdev: A..... G3: Found relative axes
[ 17738.874] (II) evdev: A..... G3: Forcing relative x/y axes to exist.
[ 17738.874] (--) evdev: A..... G3: Found absolute axes
[ 17738.874] (II) evdev: A..... G3: Forcing absolute x/y axes to exist.
[ 17738.874] (--) evdev: A..... G3: Found keys
[ 17738.874] (II) evdev: A..... G3: Configuring as mouse
[ 17738.874] (II) evdev: A..... G3: Configuring as keyboard
[ 17738.874] (II) evdev: A..... G3: Adding scrollwheel support
[ 17738.874] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
[ 17738.874] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 17738.874] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1/0003:E0FF:0002.0004/input/input8/event6"
[ 17738.874] (II) XINPUT: Adding extended input device "A..... G3" (type: KEYBOARD, id 12)
[ 17738.874] (**) Option "xkb_rules" "evdev"
[ 17738.874] (**) Option "xkb_model" "pc104"
[ 17738.874] (**) Option "xkb_layout" "se"
[ 17738.874] (II) evdev: A..... G3: initialized for relative axes.
[ 17738.874] (WW) evdev: A..... G3: ignoring absolute axes.
[ 17738.874] (**) A..... G3: (accel) keeping acceleration scheme 1
[ 17738.874] (**) A..... G3: (accel) acceleration profile 0
[ 17738.874] (**) A..... G3: (accel) acceleration factor: 2.000
[ 17738.874] (**) A..... G3: (accel) acceleration threshold: 4
[ 17738.874] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event13)
[ 17738.874] (II) No input driver specified, ignoring this device.
[ 17738.874] (II) This device may have been added with another device file.
[ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
[ 17738.875] (II) No input driver specified, ignoring this device.
[ 17738.875] (II) This device may have been added with another device file.
[ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event11)
[ 17738.875] (II) No input driver specified, ignoring this device.
[ 17738.875] (II) This device may have been added with another device file.
[ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event10)
[ 17738.875] (II) No input driver specified, ignoring this device.
[ 17738.875] (II) This device may have been added with another device file.
[ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
[ 17738.875] (II) No input driver specified, ignoring this device.
[ 17738.875] (II) This device may have been added with another device file.
[ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event8)
[ 17738.875] (II) No input driver specified, ignoring this device.
[ 17738.875] (II) This device may have been added with another device file.
[ 17738.875] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
[ 17738.876] (II) No input driver specified, ignoring this device.
[ 17738.876] (II) This device may have been added with another device file.
[ 17738.876] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event14)
[ 17738.876] (II) No input driver specified, ignoring this device.
[ 17738.876] (II) This device may have been added with another device file.
[ 17738.876] (II) config/udev: Adding input device PC Speaker (/dev/input/event15)
[ 17738.876] (II) No input driver specified, ignoring this device.
[ 17738.876] (II) This device may have been added with another device file.
[ 17739.315] (II) intel(0): EDID vendor "BNQ", prod id 32517
[ 17739.315] (II) intel(0): Using EDID range info for horizontal sync
[ 17739.315] (II) intel(0): Using EDID range info for vertical refresh
[ 17739.315] (II) intel(0): Printing DDC gathered Modelines:
[ 17739.315] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[ 17739.315] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[ 17739.315] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
[ 17739.315] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
[ 17739.315] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 17739.315] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 17739.315] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 17739.315] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 17739.315] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
[ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 17739.315] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
[ 17739.316] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 17739.316] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 17739.316] (II) intel(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 -hsync +vsync (50.9 kHz e)
[ 17739.316] (II) intel(0): Modeline "640x480"x120.0 52.41 640 680 744 848 480 481 484 515 -hsync +vsync (61.8 kHz e)
[ 17739.316] (II) intel(0): Modeline "800x600"x100.0 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync (63.6 kHz e)
[ 17739.316] (II) intel(0): Modeline "800x600"x0.0 73.25 800 848 880 960 600 603 607 636 +hsync -vsync (76.3 kHz e)
[ 17739.316] (II) intel(0): Modeline "1024x768"x100.0 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync (81.4 kHz e)
[ 17739.316] (II) intel(0): Modeline "1024x768"x0.0 115.50 1024 1072 1104 1184 768 771 775 813 +hsync -vsync (97.6 kHz e)
[ 17739.316] (II) intel(0): Modeline "1440x900"x0.0 182.75 1440 1488 1520 1600 900 903 909 953 +hsync -vsync (114.2 kHz e)
[ 17739.316] (II) intel(0): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)
[ 17739.316] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
[ 17739.316] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
[ 17739.316] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
[ 17739.316] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[ 17739.316] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[ 17739.316] (II) intel(0): Modeline "1440x240"x0.0 27.00 1440 1478 1602 1716 240 244 247 262 -hsync -vsync (15.7 kHz e)
[ 17739.316] (II) intel(0): Modeline "1440x288"x0.0 27.00 1440 1464 1590 1728 288 290 293 312 -hsync -vsync (15.6 kHz e)
[ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
[ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
It would be nice to find out why the settings was being set to "0".
Last edited by Sne (2014-04-29 20:40:50)
Offline
Sne, this thread was last posted in 3 years ago. Please do not necrobump threads as Archlinux changes quite frequently due to its rolling release nature.
If you have similar issues, please start a new thread and link to this one if you think it's relevant
Closing...
There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !
Offline
Pages: 1
Topic closed