You are not logged in.

#1 2020-05-26 13:54:18

joetait
Member
Registered: 2020-05-26
Posts: 2

[SOLVED] xinit won't run after adding lines to bashrc

Hi

I am trying to run a minimal Arch system. I am only using a few graphical programs (e.g. vlc, Firefox), and when needed opening them directly using xinit. For example,

xinit firefox $* -- :0 vt$XDG_VTNR

This stopped working when I added the following lines to the end of my bashrc file (full file at bottom of post).

#Personal settings
#Set vim style key bindings
set -o vi
#Make tab complete by cycling through options, not just listing
bind TAB:menu-complete
#Set completion to ignore case
set completion-ignore-case on

After adding these lines to bashrc running the command below fails

xinit $* -- :0 vt$XDG_VTNR

There seems to be an error message, but it runs off the screen, and I can't get it to output to file. I have tried the following, but got nothing in the files

xinit firefox $* -- :0 vt$XDG_VTNR > error.txt
xinit firefox $* -- :0 vt$XDG_VTNR 2> error.txt
xinit firefox $* -- :0 vt$XDG_VTNR 2>&1 | tee error.txt 

If I comment out the commands listed above in the bashrc file, and then enter them directly once logged in, xinit works fine.

Any help with working out why this is happening would be brilliant.

The full bashrc file, in case needed, is below. Also, I would like to add that I realise this isn't an efficient way of running things, but a significant part of the reason for me using Arch like this is to learn more about Linux. If that makes the post inappropriate in anyway for this forum please let me know, and accept my apologies.

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
	# We have color support; assume it's compliant with Ecma-48
	# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
	# a case would tend to support setf rather than setaf.)
	color_prompt=yes
    else
	color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u @ \t \[\033[00m\]:$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

# Add an "alert" alias for long running commands.  Use like so:
#   sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi

#Personal settings
#Set vim style key bindings
set -o vi
#Make tab complete by cycling through options, not just listing
bind TAB:menu-complete
#Set completion to ignore case
set completion-ignore-case on

Last edited by joetait (2020-05-26 21:02:39)

Offline

#2 2020-05-26 14:10:57

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,523
Website

Re: [SOLVED] xinit won't run after adding lines to bashrc

Is this a debian system?  You said it's arch, but that's a debian bashrc?

If this is arch, please post the xorg log.  Note there is no reason to pass the server variables on the xinit command line - they should not help, and could potentially cause trouble.  Also what is the "$*" for?  What parameters are you intending to pass to firefox?  Is that line actually in a script that you haven't told us about (in which case $* may make sense) or is it just typed on the command line (in which case $* makes no sense)?

Why aren't you using an xinitrc?

Last edited by Trilby (2020-05-26 14:13:04)


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#3 2020-05-26 21:01:31

joetait
Member
Registered: 2020-05-26
Posts: 2

Re: [SOLVED] xinit won't run after adding lines to bashrc

Hi Trilby, thank you for your reply.

I've answered the individual points below, but the headline is that removing the $* fixed the problem.

Is this a debian system?  You said it's arch, but that's a debian bashrc?

I copied the file from my Ubuntu set up. I had commented it out and  checked each chunk of code in isolation, to crudely check it worked. I have now commented out the debian related parts till I have checked more thoroughly why they were there in the first place.

If this is arch, please post the xorg log.

Xorg log is below.

[   295.954] (WW) Failed to open protocol names file lib/xorg/protocol.txt

[   295.956]

X.Org X Server 1.20.8

X Protocol Version 11, Revision 0

[   295.962] Build Operating System: Linux Arch Linux

[   295.964] Current Operating System: Linux daisylenovo 5.6.14-arch1-1 #1 SMP PREEMPT Wed, 20 May 2020 20:43:19 +0000 x86_64

[   295.964] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=/dev/sda11

[   295.966] Build Date: 05 May 2020  05:08:17AM

[   295.967]

[   295.968] Current version of pixman: 0.40.0

[   295.972] Before reporting problems, check http://wiki.x.org

to make sure that you have the latest version.

[   295.972] Markers: (--) probed, (**) from config file, (==) default setting,

(++) from command line, (!!) notice, (II) informational,

(WW) warning, (EE) error, (NI) not implemented, (??) unknown.

[   295.979] (==) Log file: "/home/joe/.local/share/xorg/Xorg.0.log", Time: Tue May 26 18:14:51 2020

[   295.980] (==) Using config directory: "/etc/X11/xorg.conf.d"

[   295.982] (==) Using system config directory "/usr/share/X11/xorg.conf.d"

[   295.982] (==) No Layout section.  Using the first Screen section.

[   295.982] (==) No screen section available. Using defaults.

[   295.982] (**) |-->Screen "Default Screen Section" (0)

[   295.982] (**) |   |-->Monitor "<default monitor>"

[   295.982] (==) No monitor specified for screen "Default Screen Section".

Using a default monitor configuration.

[   295.982] (==) Automatically adding devices

[   295.982] (==) Automatically enabling devices

[   295.982] (==) Automatically adding GPU devices

[   295.982] (==) Automatically binding GPU devices

[   295.982] (==) Max clients allowed: 256, resource mask: 0x1fffff

[   295.982] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".

[   295.982] Entry deleted from font path.

[   295.982] (Run 'mkfontdir' on "/usr/share/fonts/misc").

[   295.982] (WW) The directory "/usr/share/fonts/TTF" does not exist.

[   295.982] Entry deleted from font path.

[   295.982] (WW) The directory "/usr/share/fonts/OTF" does not exist.

[   295.982] Entry deleted from font path.

[   295.982] (WW) The directory "/usr/share/fonts/Type1" does not exist.

[   295.982] Entry deleted from font path.

[   295.982] (==) FontPath set to:

/usr/share/fonts/100dpi,

/usr/share/fonts/75dpi

[   295.982] (==) ModulePath set to "/usr/lib/xorg/modules"

[   295.982] (II) The server relies on udev to provide the list of input devices.

If no devices become available, reconfigure udev or disable AutoAddDevices.

[   295.982] (II) Module ABI versions:

[   295.982] X.Org ANSI C Emulation: 0.4

[   295.982] X.Org Video Driver: 24.1

[   295.982] X.Org XInput driver : 24.1

[   295.982] X.Org Server Extension : 10.0

[   295.983] (++) using VT number 1

 

[   295.983] (--) controlling tty is VT number 1, auto-enabling KeepTty

[   295.985] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31

[   295.986] (II) xfree86: Adding drm device (/dev/dri/card0)

[   295.986] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0

[   295.989] (--) PCI:*(0@0:2:0) 8086:0a16:17aa:380c rev 11, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072

[   295.989] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)

[   295.989] (II) LoadModule: "glx"

[   295.989] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so

[   295.991] (II) Module glx: vendor="X.Org Foundation"

[   295.991] compiled for 1.20.8, module version = 1.0.0

[   295.991] ABI class: X.Org Server Extension, version 10.0

[   295.991] (==) Matched intel as autoconfigured driver 0

[   295.991] (==) Matched modesetting as autoconfigured driver 1

[   295.991] (==) Matched fbdev as autoconfigured driver 2

[   295.991] (==) Matched vesa as autoconfigured driver 3

[   295.991] (==) Assigned the driver to the xf86ConfigLayout

[   295.991] (II) LoadModule: "intel"

[   295.991] (WW) Warning, couldn't open module intel

[   295.991] (EE) Failed to load module "intel" (module does not exist, 0)

[   295.991] (II) LoadModule: "modesetting"

[   295.991] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so

[   295.992] (II) Module modesetting: vendor="X.Org Foundation"

[   295.992] compiled for 1.20.8, module version = 1.20.8

[   295.992] Module class: X.Org Video Driver

[   295.992] ABI class: X.Org Video Driver, version 24.1

[   295.992] (II) LoadModule: "fbdev"

[   295.992] (WW) Warning, couldn't open module fbdev

[   295.992] (EE) Failed to load module "fbdev" (module does not exist, 0)

[   295.992] (II) LoadModule: "vesa"

[   295.992] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so

[   295.992] (II) Module vesa: vendor="X.Org Foundation"

[   295.992] compiled for 1.20.8, module version = 2.4.0

[   295.992] Module class: X.Org Video Driver

[   295.992] ABI class: X.Org Video Driver, version 24.1

[   295.992] (II) modesetting: Driver for Modesetting Kernel Drivers: kms

[   295.992] (II) VESA: driver for VESA chipsets: vesa

[   295.992] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)

[   295.992] (II) modeset(0): using drv /dev/dri/card0

[   295.992] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support

[   295.992] (II) modeset(0): Creating default Display subsection in Screen section

"Default Screen Section" for depth/fbbpp 24/32

[   295.992] (==) modeset(0): Depth 24, (==) framebuffer bpp 32

[   295.992] (==) modeset(0): RGB weight 888

[   295.992] (==) modeset(0): Default visual is TrueColor

[   295.992] (II) Loading sub module "glamoregl"

[   295.992] (II) LoadModule: "glamoregl"

[   295.992] (II) Loading /usr/lib/xorg/modules/libglamoregl.so

[   295.997] (II) Module glamoregl: vendor="X.Org Foundation"

[   295.997] compiled for 1.20.8, module version = 1.0.1

[   295.997] ABI class: X.Org ANSI C Emulation, version 0.4

[   296.020] (II) modeset(0): glamor X acceleration enabled on Mesa DRI Intel(R) HD Graphics 4400 (HSW GT2)

[   296.020] (II) modeset(0): glamor initialized

[   296.021] (II) modeset(0): Output eDP-1 has no monitor section

[   296.022] (II) modeset(0): Output HDMI-1 has no monitor section

[   296.022] (II) modeset(0): Output DP-1 has no monitor section

[   296.024] (II) modeset(0): Output HDMI-2 has no monitor section

[   296.025] (II) modeset(0): EDID for output eDP-1

[   296.025] (II) modeset(0): Manufacturer: LGD  Model: 4ee  Serial#: 0

[   296.025] (II) modeset(0): Year: 2015  Week: 0

[   296.025] (II) modeset(0): EDID Version: 1.4

[   296.025] (II) modeset(0): Digital Display Input

[   296.025] (II) modeset(0): 6 bits per channel

[   296.025] (II) modeset(0): Digital interface is DisplayPort

[   296.025] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19

[   296.025] (II) modeset(0): Gamma: 2.20

[   296.025] (II) modeset(0): DPMS capabilities: StandBy Suspend Off

[   296.025] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4

[   296.025] (II) modeset(0): First detailed timing is preferred mode

[   296.025] (II) modeset(0): Preferred mode is native pixel format and refresh rate

[   296.025] (II) modeset(0): redX: 0.567 redY: 0.344   greenX: 0.332 greenY: 0.561

[   296.025] (II) modeset(0): blueX: 0.159 blueY: 0.119   whiteX: 0.313 whiteY: 0.329

[   296.025] (II) modeset(0): Manufacturer's mask: 0

[   296.025] (II) modeset(0): Supported detailed timing:

[   296.025] (II) modeset(0): clock: 76.3 MHz   Image Size:  344 x 194 mm

[   296.025] (II) modeset(0): h_active: 1366  h_sync: 1414  h_sync_end 1446 h_blank_end 1610 h_border: 0

[   296.025] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 776 v_blanking: 790 v_border: 0

[   296.025] (II) modeset(0):  LG Display

[   296.025] (II) modeset(0):  LP156WHB-TPGD

[   296.025] (II) modeset(0): EDID (in hex):

[   296.025] (II) modeset(0): 00ffffffffffff0030e4ee0400000000

[   296.025] (II) modeset(0): 0019010495221378ea42e59158558f28

[   296.025] (II) modeset(0): 1e505400000001010101010101010101

[   296.025] (II) modeset(0): 010101010101d01d56f4500016303020

[   296.025] (II) modeset(0): 350058c2100000190000000000000000

[   296.025] (II) modeset(0): 00000000000000000000000000fe004c

[   296.025] (II) modeset(0): 4720446973706c61790a2020000000fe

[   296.025] (II) modeset(0): 004c503135365748422d5450474400ef

[   296.025] (II) modeset(0): Printing probed modes for output eDP-1

[   296.025] (II) modeset(0): Modeline "1366x768"x60.0   76.32  1366 1414 1446 1610  768 771 776 790 -hsync -vsync (47.4 kHz eP)

[   296.025] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)

[   296.025] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)

[   296.025] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)

[   296.025] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)

[   296.025] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)

[   296.025] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)

[   296.025] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)

[   296.025] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)

[   296.025] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)

[   296.025] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)

[   296.025] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)

[   296.025] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)

[   296.025] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)

[   296.025] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)

[   296.025] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)

[   296.025] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)

[   296.025] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)

[   296.025] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)

[   296.025] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)

[   296.025] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)

[   296.025] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)

[   296.025] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)

[   296.025] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)

[   296.025] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)

[   296.025] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)

[   296.025] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)

[   296.025] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)

[   296.025] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)

[   296.025] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)

[   296.025] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)

[   296.025] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)

[   296.025] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)

[   296.025] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)

[   296.026] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)

[   296.026] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)

[   296.026] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)

[   296.026] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)

[   296.026] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)

[   296.026] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)

[   296.026] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)

[   296.026] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)

[   296.026] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)

[   296.026] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)

[   296.026] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)

[   296.026] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)

[   296.026] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)

[   296.026] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)

[   296.026] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)

[   296.026] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)

[   296.026] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)

[   296.026] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)

[   296.026] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)

[   296.026] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)

[   296.026] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)

[   296.026] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)

[   296.026] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)

[   296.026] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)

[   296.026] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)

[   296.027] (II) modeset(0): EDID for output HDMI-1

[   296.027] (II) modeset(0): EDID for output DP-1

[   296.028] (II) modeset(0): EDID for output HDMI-2

[   296.029] (II) modeset(0): Output eDP-1 connected

[   296.029] (II) modeset(0): Output HDMI-1 disconnected

[   296.029] (II) modeset(0): Output DP-1 disconnected

[   296.029] (II) modeset(0): Output HDMI-2 disconnected

[   296.029] (II) modeset(0): Using exact sizes for initial modes

[   296.029] (II) modeset(0): Output eDP-1 using initial mode 1366x768 +0+0

[   296.029] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)

[   296.029] (==) modeset(0): DPI set to (96, 96)

[   296.029] (II) Loading sub module "fb"

[   296.029] (II) LoadModule: "fb"

[   296.029] (II) Loading /usr/lib/xorg/modules/libfb.so

[   296.029] (II) Module fb: vendor="X.Org Foundation"

[   296.029] compiled for 1.20.8, module version = 1.0.0

[   296.029] ABI class: X.Org ANSI C Emulation, version 0.4

[   296.029] (II) UnloadModule: "vesa"

[   296.029] (II) Unloading vesa

[   296.038] (==) modeset(0): Backing store enabled

[   296.038] (==) modeset(0): Silken mouse disabled

[   296.113] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.

[   296.113] (==) modeset(0): DPMS enabled

[   296.113] (II) modeset(0): [DRI2] Setup complete

[   296.113] (II) modeset(0): [DRI2]   DRI driver: i965

[   296.113] (II) modeset(0): [DRI2]   VDPAU driver: va_gl

[   296.113] (II) Initializing extension Generic Event Extension

[   296.113] (II) Initializing extension SHAPE

[   296.113] (II) Initializing extension MIT-SHM

[   296.113] (II) Initializing extension XInputExtension

[   296.113] (II) Initializing extension XTEST

[   296.113] (II) Initializing extension BIG-REQUESTS

[   296.113] (II) Initializing extension SYNC

[   296.113] (II) Initializing extension XKEYBOARD

[   296.113] (II) Initializing extension XC-MISC

[   296.113] (II) Initializing extension SECURITY

[   296.113] (II) Initializing extension XFIXES

[   296.113] (II) Initializing extension RENDER

[   296.113] (II) Initializing extension RANDR

[   296.113] (II) Initializing extension COMPOSITE

[   296.113] (II) Initializing extension DAMAGE

[   296.113] (II) Initializing extension MIT-SCREEN-SAVER

[   296.113] (II) Initializing extension DOUBLE-BUFFER

[   296.113] (II) Initializing extension RECORD

[   296.113] (II) Initializing extension DPMS

[   296.113] (II) Initializing extension Present

[   296.113] (II) Initializing extension DRI3

[   296.113] (II) Initializing extension X-Resource

[   296.113] (II) Initializing extension XVideo

[   296.113] (II) Initializing extension XVideo-MotionCompensation

[   296.113] (II) Initializing extension GLX

[   296.126] (II) AIGLX: Loaded and initialized i965

[   296.126] (II) GLX: Initialized DRI2 GL provider for screen 0

[   296.126] (II) Initializing extension XFree86-VidModeExtension

[   296.127] (II) Initializing extension XFree86-DGA

[   296.127] (II) Initializing extension XFree86-DRI

[   296.127] (II) Initializing extension DRI2

[   296.129] (II) modeset(0): Damage tracking initialized

[   296.129] (II) modeset(0): Setting screen physical size to 361 x 203

[   296.224] (II) config/udev: Adding input device Power Button (/dev/input/event2)

[   296.224] (**) Power Button: Applying InputClass "libinput keyboard catchall"

[   296.224] (**) Power Button: Applying InputClass "system-keyboard"

[   296.224] (II) LoadModule: "libinput"

[   296.224] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so

[   296.226] (II) Module libinput: vendor="X.Org Foundation"

[   296.226] compiled for 1.20.8, module version = 0.30.0

[   296.226] Module class: X.Org XInput Driver

[   296.226] ABI class: X.Org XInput driver, version 24.1

[   296.226] (II) Using input driver 'libinput' for 'Power Button'

[   296.227] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 15 paused 0

[   296.227] (**) Power Button: always reports core events

[   296.227] (**) Option "Device" "/dev/input/event2"

[   296.227] (**) Option "_source" "server/udev"

[   296.229] (II) event2  - Power Button: is tagged by udev as: Keyboard

[   296.229] (II) event2  - Power Button: device is a keyboard

[   296.229] (II) event2  - Power Button: device removed

[   296.229] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"

[   296.229] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)

[   296.229] (**) Option "xkb_model" "pc105"

[   296.229] (**) Option "xkb_layout" "gb"

[   296.229] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"

[   296.256] (II) event2  - Power Button: is tagged by udev as: Keyboard

[   296.256] (II) event2  - Power Button: device is a keyboard

[   296.257] (II) config/udev: Adding input device Video Bus (/dev/input/event10)

[   296.257] (**) Video Bus: Applying InputClass "libinput keyboard catchall"

[   296.257] (**) Video Bus: Applying InputClass "system-keyboard"

[   296.257] (II) Using input driver 'libinput' for 'Video Bus'

[   296.258] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 18 paused 0

[   296.258] (**) Video Bus: always reports core events

[   296.258] (**) Option "Device" "/dev/input/event10"

[   296.258] (**) Option "_source" "server/udev"

[   296.259] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[   296.259] (II) event10 - Video Bus: device is a keyboard

[   296.259] (II) event10 - Video Bus: device removed

[   296.259] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11/event10"

[   296.259] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)

[   296.259] (**) Option "xkb_model" "pc105"

[   296.259] (**) Option "xkb_layout" "gb"

[   296.259] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"

[   296.261] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[   296.261] (II) event10 - Video Bus: device is a keyboard

[   296.262] (II) config/udev: Adding input device Power Button (/dev/input/event1)

[   296.262] (**) Power Button: Applying InputClass "libinput keyboard catchall"

[   296.262] (**) Power Button: Applying InputClass "system-keyboard"

[   296.262] (II) Using input driver 'libinput' for 'Power Button'

[   296.263] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 19 paused 0

[   296.263] (**) Power Button: always reports core events

[   296.263] (**) Option "Device" "/dev/input/event1"

[   296.263] (**) Option "_source" "server/udev"

[   296.264] (II) event1  - Power Button: is tagged by udev as: Keyboard

[   296.264] (II) event1  - Power Button: device is a keyboard

[   296.264] (II) event1  - Power Button: device removed

[   296.264] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"

[   296.264] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)

[   296.264] (**) Option "xkb_model" "pc105"

[   296.264] (**) Option "xkb_layout" "gb"

[   296.264] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"

[   296.266] (II) event1  - Power Button: is tagged by udev as: Keyboard

[   296.266] (II) event1  - Power Button: device is a keyboard

[   296.267] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)

[   296.267] (II) No input driver specified, ignoring this device.

[   296.267] (II) This device may have been added with another device file.

[   296.268] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event11)

[   296.268] (II) No input driver specified, ignoring this device.

[   296.268] (II) This device may have been added with another device file.

[   296.268] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event12)

[   296.268] (II) No input driver specified, ignoring this device.

[   296.268] (II) This device may have been added with another device file.

[   296.269] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event13)

[   296.269] (II) No input driver specified, ignoring this device.

[   296.269] (II) This device may have been added with another device file.

[   296.269] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=9 (/dev/input/event14)

[   296.269] (II) No input driver specified, ignoring this device.

[   296.269] (II) This device may have been added with another device file.

[   296.270] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=10 (/dev/input/event15)

[   296.270] (II) No input driver specified, ignoring this device.

[   296.270] (II) This device may have been added with another device file.

[   296.271] (II) config/udev: Adding input device Lenovo EasyCamera: Lenovo EasyC (/dev/input/event7)

[   296.271] (**) Lenovo EasyCamera: Lenovo EasyC: Applying InputClass "libinput keyboard catchall"

[   296.271] (**) Lenovo EasyCamera: Lenovo EasyC: Applying InputClass "system-keyboard"

[   296.271] (II) Using input driver 'libinput' for 'Lenovo EasyCamera: Lenovo EasyC'

[   296.272] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 20 paused 0

[   296.272] (**) Lenovo EasyCamera: Lenovo EasyC: always reports core events

[   296.272] (**) Option "Device" "/dev/input/event7"

[   296.272] (**) Option "_source" "server/udev"

[   296.273] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[   296.274] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[   296.274] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[   296.274] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6:1.0/input/input8/event7"

[   296.274] (II) XINPUT: Adding extended input device "Lenovo EasyCamera: Lenovo EasyC" (type: KEYBOARD, id 9)

[   296.274] (**) Option "xkb_model" "pc105"

[   296.274] (**) Option "xkb_layout" "gb"

[   296.274] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"

[   296.276] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[   296.276] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[   296.277] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event9)

[   296.277] (II) No input driver specified, ignoring this device.

[   296.277] (II) This device may have been added with another device file.

[   296.277] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event8)

[   296.277] (II) No input driver specified, ignoring this device.

[   296.277] (II) This device may have been added with another device file.

[   296.278] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event5)

[   296.278] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"

[   296.278] (**) Ideapad extra buttons: Applying InputClass "system-keyboard"

[   296.278] (II) Using input driver 'libinput' for 'Ideapad extra buttons'

[   296.279] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0

[   296.279] (**) Ideapad extra buttons: always reports core events

[   296.279] (**) Option "Device" "/dev/input/event5"

[   296.279] (**) Option "_source" "server/udev"

[   296.280] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[   296.280] (II) event5  - Ideapad extra buttons: device is a keyboard

[   296.280] (II) event5  - Ideapad extra buttons: device removed

[   296.280] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input6/event5"

[   296.280] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 10)

[   296.280] (**) Option "xkb_model" "pc105"

[   296.280] (**) Option "xkb_layout" "gb"

[   296.280] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"

[   296.282] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[   296.282] (II) event5  - Ideapad extra buttons: device is a keyboard

[   296.283] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)

[   296.283] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"

[   296.283] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"

[   296.283] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'

[   296.283] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 22 paused 0

[   296.283] (**) AT Translated Set 2 keyboard: always reports core events

[   296.283] (**) Option "Device" "/dev/input/event3"

[   296.283] (**) Option "_source" "server/udev"

[   296.285] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[   296.285] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[   296.285] (II) event3  - AT Translated Set 2 keyboard: device removed

[   296.285] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"

[   296.286] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)

[   296.286] (**) Option "xkb_model" "pc105"

[   296.286] (**) Option "xkb_layout" "gb"

[   296.286] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"

[   296.287] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[   296.287] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[   296.288] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)

[   296.288] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"

[   296.288] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'

[   296.289] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 23 paused 0

[   296.289] (**) SynPS/2 Synaptics TouchPad: always reports core events

[   296.289] (**) Option "Device" "/dev/input/event6"

[   296.289] (**) Option "_source" "server/udev"

[   296.290] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[   296.292] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[   296.292] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[   296.292] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event6"

[   296.292] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)

[   296.293] (**) Option "AccelerationScheme" "none"

[   296.293] (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0

[   296.293] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000

[   296.293] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4

[   296.294] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[   296.295] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[   296.296] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)

[   296.296] (II) No input driver specified, ignoring this device.

[   296.296] (II) This device may have been added with another device file.

[   296.297] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)

[   296.297] (II) No input driver specified, ignoring this device.

[   296.297] (II) This device may have been added with another device file.

[   349.625] (**) Option "fd" "15"

[   349.625] (II) event2  - Power Button: device removed

[   349.625] (**) Option "fd" "18"

[   349.625] (II) event10 - Video Bus: device removed

[   349.626] (**) Option "fd" "19"

[   349.626] (II) event1  - Power Button: device removed

[   349.626] (**) Option "fd" "20"

[   349.626] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[   349.626] (**) Option "fd" "21"

[   349.626] (II) event5  - Ideapad extra buttons: device removed

[   349.626] (**) Option "fd" "22"

[   349.626] (II) event3  - AT Translated Set 2 keyboard: device removed

[   349.627] (**) Option "fd" "23"

[   349.627] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[   349.627] (II) AIGLX: Suspending AIGLX clients for VT switch

[   349.680] (II) systemd-logind: got pause for 13:70

[   349.680] (II) systemd-logind: got pause for 13:66

[   349.680] (II) systemd-logind: got pause for 13:71

[   349.680] (II) systemd-logind: got pause for 13:65

[   349.680] (II) systemd-logind: got pause for 13:69

[   349.680] (II) systemd-logind: got pause for 13:74

[   349.680] (II) systemd-logind: got pause for 13:67

[   349.680] (II) systemd-logind: got pause for 226:0

[   355.482] (II) systemd-logind: got resume for 13:70

[   355.509] (II) systemd-logind: got resume for 13:66

[   355.536] (II) systemd-logind: got resume for 13:71

[   355.562] (II) systemd-logind: got resume for 13:65

[   355.589] (II) systemd-logind: got resume for 13:69

[   355.609] (II) systemd-logind: got resume for 13:74

[   355.637] (II) systemd-logind: got resume for 13:67

[   355.637] (II) systemd-logind: got resume for 226:0

[   355.637] (II) AIGLX: Resuming AIGLX clients after VT switch

[   355.693] (II) modeset(0): EDID vendor "LGD", prod id 1262

[   355.693] (II) modeset(0): Printing DDC gathered Modelines:

[   355.693] (II) modeset(0): Modeline "1366x768"x0.0   76.32  1366 1414 1446 1610  768 771 776 790 -hsync -vsync (47.4 kHz eP)

[   355.726] (II) event2  - Power Button: is tagged by udev as: Keyboard

[   355.726] (II) event2  - Power Button: device is a keyboard

[   355.728] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[   355.728] (II) event10 - Video Bus: device is a keyboard

[   355.730] (II) event1  - Power Button: is tagged by udev as: Keyboard

[   355.730] (II) event1  - Power Button: device is a keyboard

[   355.732] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[   355.732] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[   355.733] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[   355.733] (II) event5  - Ideapad extra buttons: device is a keyboard

[   355.735] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[   355.735] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[   355.737] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[   355.738] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[   512.530] (**) Option "fd" "19"

[   512.530] (II) event2  - Power Button: device removed

[   512.530] (**) Option "fd" "23"

[   512.530] (II) event10 - Video Bus: device removed

[   512.531] (**) Option "fd" "21"

[   512.531] (II) event1  - Power Button: device removed

[   512.531] (**) Option "fd" "20"

[   512.531] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[   512.531] (**) Option "fd" "22"

[   512.531] (II) event5  - Ideapad extra buttons: device removed

[   512.532] (**) Option "fd" "33"

[   512.532] (II) event3  - AT Translated Set 2 keyboard: device removed

[   512.533] (**) Option "fd" "18"

[   512.533] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[   512.533] (II) AIGLX: Suspending AIGLX clients for VT switch

[   512.585] (II) systemd-logind: got pause for 13:70

[   512.585] (II) systemd-logind: got pause for 13:66

[   512.585] (II) systemd-logind: got pause for 13:71

[   512.585] (II) systemd-logind: got pause for 13:65

[   512.585] (II) systemd-logind: got pause for 13:69

[   512.585] (II) systemd-logind: got pause for 13:74

[   512.585] (II) systemd-logind: got pause for 13:67

[   512.585] (II) systemd-logind: got pause for 226:0

[   519.572] (II) systemd-logind: got resume for 13:70

[   519.596] (II) systemd-logind: got resume for 13:66

[   519.626] (II) systemd-logind: got resume for 13:71

[   519.649] (II) systemd-logind: got resume for 13:65

[   519.682] (II) systemd-logind: got resume for 13:69

[   519.709] (II) systemd-logind: got resume for 13:74

[   519.736] (II) systemd-logind: got resume for 13:67

[   519.736] (II) systemd-logind: got resume for 226:0

[   519.736] (II) AIGLX: Resuming AIGLX clients after VT switch

[   519.797] (II) modeset(0): EDID vendor "LGD", prod id 1262

[   519.797] (II) modeset(0): Printing DDC gathered Modelines:

[   519.797] (II) modeset(0): Modeline "1366x768"x0.0   76.32  1366 1414 1446 1610  768 771 776 790 -hsync -vsync (47.4 kHz eP)

[   519.831] (II) event2  - Power Button: is tagged by udev as: Keyboard

[   519.831] (II) event2  - Power Button: device is a keyboard

[   519.834] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[   519.834] (II) event10 - Video Bus: device is a keyboard

[   519.837] (II) event1  - Power Button: is tagged by udev as: Keyboard

[   519.837] (II) event1  - Power Button: device is a keyboard

[   519.840] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[   519.841] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[   519.842] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[   519.842] (II) event5  - Ideapad extra buttons: device is a keyboard

[   519.844] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[   519.844] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[   519.846] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[   519.847] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[   776.694] (**) Option "fd" "20"

[   776.694] (II) event2  - Power Button: device removed

[   776.694] (**) Option "fd" "33"

[   776.694] (II) event10 - Video Bus: device removed

[   776.695] (**) Option "fd" "22"

[   776.695] (II) event1  - Power Button: device removed

[   776.695] (**) Option "fd" "21"

[   776.695] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[   776.696] (**) Option "fd" "23"

[   776.696] (II) event5  - Ideapad extra buttons: device removed

[   776.696] (**) Option "fd" "42"

[   776.696] (II) event3  - AT Translated Set 2 keyboard: device removed

[   776.697] (**) Option "fd" "19"

[   776.697] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[   776.697] (II) AIGLX: Suspending AIGLX clients for VT switch

[   776.750] (II) systemd-logind: got pause for 13:70

[   776.750] (II) systemd-logind: got pause for 13:66

[   776.750] (II) systemd-logind: got pause for 13:71

[   776.750] (II) systemd-logind: got pause for 13:65

[   776.750] (II) systemd-logind: got pause for 13:69

[   776.750] (II) systemd-logind: got pause for 13:74

[   776.750] (II) systemd-logind: got pause for 13:67

[   776.750] (II) systemd-logind: got pause for 226:0

[   779.972] (II) systemd-logind: got resume for 13:70

[   779.989] (II) systemd-logind: got resume for 13:66

[   780.009] (II) systemd-logind: got resume for 13:71

[   780.036] (II) systemd-logind: got resume for 13:65

[   780.071] (II) systemd-logind: got resume for 13:69

[   780.088] (II) systemd-logind: got resume for 13:74

[   780.122] (II) systemd-logind: got resume for 13:67

[   780.123] (II) systemd-logind: got resume for 226:0

[   780.123] (II) AIGLX: Resuming AIGLX clients after VT switch

[   780.178] (II) modeset(0): EDID vendor "LGD", prod id 1262

[   780.178] (II) modeset(0): Printing DDC gathered Modelines:

[   780.178] (II) modeset(0): Modeline "1366x768"x0.0   76.32  1366 1414 1446 1610  768 771 776 790 -hsync -vsync (47.4 kHz eP)

[   780.211] (II) event2  - Power Button: is tagged by udev as: Keyboard

[   780.211] (II) event2  - Power Button: device is a keyboard

[   780.214] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[   780.214] (II) event10 - Video Bus: device is a keyboard

[   780.216] (II) event1  - Power Button: is tagged by udev as: Keyboard

[   780.216] (II) event1  - Power Button: device is a keyboard

[   780.218] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[   780.218] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[   780.220] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[   780.220] (II) event5  - Ideapad extra buttons: device is a keyboard

[   780.222] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[   780.222] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[   780.225] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[   780.227] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[   799.975] (**) Option "fd" "20"

[   799.975] (II) event2  - Power Button: device removed

[   799.976] (**) Option "fd" "33"

[   799.976] (II) event10 - Video Bus: device removed

[   799.976] (**) Option "fd" "22"

[   799.976] (II) event1  - Power Button: device removed

[   799.976] (**) Option "fd" "21"

[   799.976] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[   799.976] (**) Option "fd" "23"

[   799.977] (II) event5  - Ideapad extra buttons: device removed

[   799.977] (**) Option "fd" "42"

[   799.977] (II) event3  - AT Translated Set 2 keyboard: device removed

[   799.977] (**) Option "fd" "19"

[   799.977] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[   799.977] (II) AIGLX: Suspending AIGLX clients for VT switch

[   800.032] (II) systemd-logind: got pause for 13:70

[   800.033] (II) systemd-logind: got pause for 13:66

[   800.033] (II) systemd-logind: got pause for 13:71

[   800.033] (II) systemd-logind: got pause for 13:65

[   800.033] (II) systemd-logind: got pause for 13:69

[   800.033] (II) systemd-logind: got pause for 13:74

[   800.033] (II) systemd-logind: got pause for 13:67

[   800.033] (II) systemd-logind: got pause for 226:0

[   809.242] (II) systemd-logind: got resume for 13:70

[   809.276] (II) systemd-logind: got resume for 13:66

[   809.292] (II) systemd-logind: got resume for 13:71

[   809.312] (II) systemd-logind: got resume for 13:65

[   809.329] (II) systemd-logind: got resume for 13:69

[   809.349] (II) systemd-logind: got resume for 13:74

[   809.369] (II) systemd-logind: got resume for 13:67

[   809.369] (II) systemd-logind: got resume for 226:0

[   809.369] (II) AIGLX: Resuming AIGLX clients after VT switch

[   809.426] (II) modeset(0): EDID vendor "LGD", prod id 1262

[   809.426] (II) modeset(0): Printing DDC gathered Modelines:

[   809.426] (II) modeset(0): Modeline "1366x768"x0.0   76.32  1366 1414 1446 1610  768 771 776 790 -hsync -vsync (47.4 kHz eP)

[   809.459] (II) event2  - Power Button: is tagged by udev as: Keyboard

[   809.459] (II) event2  - Power Button: device is a keyboard

[   809.462] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[   809.462] (II) event10 - Video Bus: device is a keyboard

[   809.464] (II) event1  - Power Button: is tagged by udev as: Keyboard

[   809.464] (II) event1  - Power Button: device is a keyboard

[   809.467] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[   809.467] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[   809.469] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[   809.469] (II) event5  - Ideapad extra buttons: device is a keyboard

[   809.471] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[   809.471] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[   809.473] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[   809.474] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[   812.141] (**) Option "fd" "21"

[   812.141] (II) event2  - Power Button: device removed

[   812.142] (**) Option "fd" "42"

[   812.142] (II) event10 - Video Bus: device removed

[   812.142] (**) Option "fd" "23"

[   812.142] (II) event1  - Power Button: device removed

[   812.143] (**) Option "fd" "22"

[   812.143] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[   812.143] (**) Option "fd" "33"

[   812.143] (II) event5  - Ideapad extra buttons: device removed

[   812.144] (**) Option "fd" "46"

[   812.144] (II) event3  - AT Translated Set 2 keyboard: device removed

[   812.144] (**) Option "fd" "20"

[   812.144] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[   812.145] (II) AIGLX: Suspending AIGLX clients for VT switch

[   812.196] (II) systemd-logind: got pause for 13:70

[   812.196] (II) systemd-logind: got pause for 13:66

[   812.196] (II) systemd-logind: got pause for 13:71

[   812.196] (II) systemd-logind: got pause for 13:65

[   812.196] (II) systemd-logind: got pause for 13:69

[   812.196] (II) systemd-logind: got pause for 13:74

[   812.196] (II) systemd-logind: got pause for 13:67

[   812.196] (II) systemd-logind: got pause for 226:0

[  1060.134] (II) systemd-logind: got resume for 13:70

[  1060.149] (II) systemd-logind: got resume for 13:66

[  1060.176] (II) systemd-logind: got resume for 13:71

[  1060.202] (II) systemd-logind: got resume for 13:65

[  1060.229] (II) systemd-logind: got resume for 13:69

[  1060.269] (II) systemd-logind: got resume for 13:74

[  1060.296] (II) systemd-logind: got resume for 13:67

[  1060.296] (II) systemd-logind: got resume for 226:0

[  1060.296] (II) AIGLX: Resuming AIGLX clients after VT switch

[  1060.358] (II) modeset(0): EDID vendor "LGD", prod id 1262

[  1060.358] (II) modeset(0): Printing DDC gathered Modelines:

[  1060.358] (II) modeset(0): Modeline "1366x768"x0.0   76.32  1366 1414 1446 1610  768 771 776 790 -hsync -vsync (47.4 kHz eP)

[  1060.392] (II) event2  - Power Button: is tagged by udev as: Keyboard

[  1060.392] (II) event2  - Power Button: device is a keyboard

[  1060.395] (II) event10 - Video Bus: is tagged by udev as: Keyboard

[  1060.395] (II) event10 - Video Bus: device is a keyboard

[  1060.398] (II) event1  - Power Button: is tagged by udev as: Keyboard

[  1060.398] (II) event1  - Power Button: device is a keyboard

[  1060.401] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard

[  1060.402] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard

[  1060.403] (II) event5  - Ideapad extra buttons: is tagged by udev as: Keyboard

[  1060.403] (II) event5  - Ideapad extra buttons: device is a keyboard

[  1060.405] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard

[  1060.405] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

[  1060.407] (II) event6  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad

[  1060.408] (II) event6  - SynPS/2 Synaptics TouchPad: device is a touchpad

[  2012.904] (**) Option "fd" "21"

[  2012.904] (II) event2  - Power Button: device removed

[  2012.904] (**) Option "fd" "42"

[  2012.904] (II) event10 - Video Bus: device removed

[  2012.905] (**) Option "fd" "23"

[  2012.905] (II) event1  - Power Button: device removed

[  2012.906] (**) Option "fd" "22"

[  2012.906] (II) event7  - Lenovo EasyCamera: Lenovo EasyC: device removed

[  2012.906] (**) Option "fd" "33"

[  2012.906] (II) event5  - Ideapad extra buttons: device removed

[  2012.907] (**) Option "fd" "48"

[  2012.907] (II) event3  - AT Translated Set 2 keyboard: device removed

[  2012.908] (**) Option "fd" "20"

[  2012.908] (II) event6  - SynPS/2 Synaptics TouchPad: device removed

[  2012.908] (II) AIGLX: Suspending AIGLX clients for VT switch

[  2012.960] (II) systemd-logind: got pause for 13:70

[  2012.960] (II) systemd-logind: got pause for 13:66

[  2012.960] (II) systemd-logind: got pause for 13:71

[  2012.960] (II) systemd-logind: got pause for 13:65

[  2012.960] (II) systemd-logind: got pause for 13:69

[  2012.960] (II) systemd-logind: got pause for 13:74

[  2012.960] (II) systemd-logind: got pause for 13:67

[  2012.960] (II) systemd-logind: got pause for 226:0

Note there is no reason to pass the server variables on the xinit command line - they should not help, and could potentially cause trouble.

I was passing the variables directly to keep things very, very minimal. My plan was to make aliases to open firefox, VLC and maybe a PDF viewer in one directly in their own Xsession. I am sure this is far from the best way, and I am more than open to other suggestions, but I'm happy to play around with different things as I learn, and I felt that was too open a question for this forum.

Also what is the "$*" for?

The $* was left from me searching and playing around with getting it to work, so there is no good reason. Once removed I could run the command below fine.

xinit -- :0 vt$XDG_VTNR

Why aren't you using an xinitrc?

My understanding is that this would start an X session when I login. I don't think that is what I want; as mentioned above, I was only intending on starting X for a very limited number of specific functions. I'm still playing with a lot of things, so I'm sure this may change.

Offline

#4 2020-05-26 21:56:02

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,523
Website

Re: [SOLVED] xinit won't run after adding lines to bashrc

joetait wrote:

My understanding is that [xinitrc] would start an X session when I login.

No, it will not.

https://wiki.archlinux.org/index.php/Xinit


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

Board footer

Powered by FluxBB