You are not logged in.

#1 2017-04-28 11:02:00

nicholat
Member
Registered: 2015-08-05
Posts: 35

Line under text while typing, words removed on special chars

This problem started happening the moment I switched from Cinnamon to XFCE; I'm pretty happy with the choice in general, since it seemed like Cinnamon was broken in several ways, but this problem is extremely annoying.

Often, seemingly at random, although I suspect it's some strange combination of keys causing it, a line starts appearing under all text as I type it, no matter which application. The line disappears after pressing space between words, but if I type in a special character like 'æ', 'ø', or 'å' while typing a word while this phenomenon occurs, the word is immediately cleared and replaced with this character, and if I keep typing, the rest of the word reappears *after* the character. Have searched the forums thoroughly, as well as googled it a lot, but haven't been able to find anything about what's causing it.

Offline

#2 2017-04-28 15:38:14

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

no matter which application

Including eg. xterm? Or is it rather a gtk phenomenon?

Offline

#3 2017-04-28 18:37:23

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Actually, just now I noticed that it's not always consistent across applications. It's currently active in Chromium, but not in Sublime Text. Therefore, it would be hard to tell without switching to xterm and using it until it eventually would happen, but I would definitely make the assumption that it's gtk-related and wouldn't appear in xterm.

Offline

#4 2017-04-28 20:02:20

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

Does it happen if you press
ctrl+shift+u?

What happens if you press
ctrl+shift+u, then 263a, then release ctrl+shift?

Offline

#5 2017-04-28 20:11:36

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Nope, ctrl+shift+u gives me: U+

Same when I type 263a afterwards while still holding ctrl and shift if that's what you meant, it doesn't register those at all.

Offline

#6 2017-04-28 20:25:21

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

"U+" including the plus?
Did you type a "+" at any time? (The question mark was also not meant to imply a key press ;-)

Are you using xf86-input-libinput?
Does it also happen with xf86-input-evdev?

Offline

#7 2017-04-28 21:49:13

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Yeah, ctrl+shift+u gives the string "U+", didn't type any "+", and didn't hit the question mark, understood as much, heh.

Not sure which one I'm using tbh, how do I find out?

Offline

#8 2017-04-28 23:39:32

Ropid
Member
Registered: 2015-03-09
Posts: 1,069

Re: Line under text while typing, words removed on special chars

nicholat wrote:

Yeah, ctrl+shift+u gives the string "U+", didn't type any "+", and didn't hit the question mark, understood as much, heh.

Not sure which one I'm using tbh, how do I find out?

Try

grep "Using input driver" /var/log/Xorg.0.log

and look for a name that sounds like the keyboard.

About how to switch between libinput and evdev, for me here I have a file named "/etc/X11/xorg.conf.d/00-keyboard.conf" that was created by systemd's "localectl" command. I would go in there and add a line:

Driver "evdev"

If you have to write a file like that yourself, this here should work:

Section "InputClass"
        Identifier "my keyboard"
        MatchIsKeyboard "on"
        Driver "evdev"
EndSection

You'd save this as any name you like in /etc/X11/xorg.conf.d/.

Last edited by Ropid (2017-04-28 23:39:48)

Offline

#9 2017-04-28 23:47:48

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Alright, done; and now?

Offline

#10 2017-04-29 06:15:06

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

If you also have the package installed, the xorg log should now say you're using evdev as keyboard driver - and could check whether the weird behavior remains.

ctrl+shif+u is the shortcut to enter utf8 codepoints - 263a is a smiley smile

The "normal" behavior is to get an underlined u263a (notice it's not even upcase) which turns into a ☺ when you release the ctrl+shift modifiers, what sounded quite like what you experience.

Can you please post an (inconclusive) list of applications where you actually saw this issue and another one where you perceive the "U+" output?

Offline

#11 2017-04-29 09:09:49

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

The xorg log says it's still using 'libinput' as the driver.

Thus far I've had the issue in Chromium, Sublime Text, and HexChat; it's currently active in Chromium.

Edit: And now something strange happened; right after I posted this post, the keyboard stopped working in Chromium, but not in other applications, and after about 15 seconds I could type in Chromium again, and now the issue is gone (temporarily).

Last edited by nicholat (2017-04-29 09:12:22)

Offline

#12 2017-04-29 14:21:41

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

pacman -Qi xf86-input-evdev

If that says "not found", install the package. Otherwise paste the contents of a possible /etc/X11/xorg.conf and every file in /etc/X11/xorg.conf.d

Offline

#13 2017-05-02 00:00:22

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

It's installed, just didn't switch until I rebooted; the problem still persists.

/etc/X11/xorg.conf doesn't exist, and the only file in /etc/X11/xorg.conf.d is 00-keyboard.conf, whose content is:

# Read and parsed by systemd-localed. It's probably wise not to edit this file
# manually too freely.
Section "InputClass"
        Identifier "Logitech K360"
        MatchIsKeyboard "on"
        Option "XkbLayout" "no"
	Driver "evdev"

Offline

#14 2017-05-02 06:50:25

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

Unless the paste is broken, that file is malformed.
There's no trailing "EndSection" line.

You might find to also require

    Option              "XkbModel" "evdev"
    Option              "XkbRules" "xorg"
    Option              "XkbKeycodes" "evdev"

for proper input behavior.

Either way, the weird input handling doesn't stem from that.
Do you have Fcitx, SCIM, UIM or IBus installed?

Offline

#15 2017-05-02 12:51:12

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Yeah, now that you mention it, I installed UIM once to try to get Japanese input working, that might be it; never got it working in any case. Don't have any of the others installed.

Last edited by nicholat (2017-05-02 12:52:34)

Offline

#16 2017-05-03 21:57:18

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

I uninstalled UIM yesterday, as I assumed that was the problem, but just now the problem reappeared, so it seems it wasn't that after all.

Offline

#17 2017-05-04 05:55:41

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

Did it at least have impact on the input of unicode points, ie "Ctrl+Shift+u,<hex value>" resulting in an underlined u263a string that turns into a ☺ on modifier release?

Offline

#18 2017-05-04 09:07:53

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Nope, still yields the string "U+". Seems like the system isn't detecting the receiver for my wireless Logitech keyboard anymore either, is that related to the changes I've made so far?

Edit: Got the receiver working again by rebooting, but still wondering what caused it to stop getting detected, might be completely unrelated though.

Last edited by nicholat (2017-05-04 09:15:07)

Offline

#19 2017-05-04 13:54:26

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

can you please dump a complete "ps fax" output? (you may redact commands that hint filenames or so, but please ensure it's a complete tree of all commands with all parameters)

Offline

#20 2017-05-05 17:31:42

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Here is the full output:

  PID TTY      STAT   TIME COMMAND
    2 ?        S      0:00 [kthreadd]
    4 ?        S<     0:00  \_ [kworker/0:0H]
    6 ?        S      0:01  \_ [ksoftirqd/0]
    7 ?        S      3:00  \_ [rcu_preempt]
    8 ?        S      0:00  \_ [rcu_sched]
    9 ?        S      0:00  \_ [rcu_bh]
   10 ?        S      0:00  \_ [migration/0]
   11 ?        S<     0:00  \_ [lru-add-drain]
   12 ?        S      0:00  \_ [watchdog/0]
   13 ?        S      0:00  \_ [cpuhp/0]
   14 ?        S      0:00  \_ [cpuhp/1]
   15 ?        S      0:00  \_ [watchdog/1]
   16 ?        S      0:00  \_ [migration/1]
   17 ?        S      0:00  \_ [ksoftirqd/1]
   19 ?        S<     0:00  \_ [kworker/1:0H]
   20 ?        S      0:00  \_ [cpuhp/2]
   21 ?        S      0:00  \_ [watchdog/2]
   22 ?        S      0:00  \_ [migration/2]
   23 ?        S      0:00  \_ [ksoftirqd/2]
   25 ?        S<     0:00  \_ [kworker/2:0H]
   26 ?        S      0:00  \_ [cpuhp/3]
   27 ?        S      0:00  \_ [watchdog/3]
   28 ?        S      0:00  \_ [migration/3]
   29 ?        S      0:00  \_ [ksoftirqd/3]
   31 ?        S<     0:00  \_ [kworker/3:0H]
   32 ?        S      0:00  \_ [kdevtmpfs]
   33 ?        S<     0:00  \_ [netns]
   34 ?        S      0:00  \_ [khungtaskd]
   35 ?        S      0:00  \_ [oom_reaper]
   36 ?        S<     0:00  \_ [writeback]
   37 ?        S      0:00  \_ [kcompactd0]
   38 ?        SN     0:00  \_ [ksmd]
   39 ?        SN     0:17  \_ [khugepaged]
   40 ?        S<     0:00  \_ [crypto]
   41 ?        S<     0:00  \_ [kintegrityd]
   42 ?        S<     0:00  \_ [bioset]
   43 ?        S<     0:00  \_ [kblockd]
   48 ?        S<     0:00  \_ [devfreq_wq]
   49 ?        S<     0:00  \_ [watchdogd]
   51 ?        S      0:19  \_ [kswapd0]
   52 ?        S<     0:00  \_ [vmstat]
   53 ?        S<     0:00  \_ [bioset]
   66 ?        S<     0:00  \_ [kthrotld]
   67 ?        S<     0:00  \_ [ipv6_addrconf]
  106 ?        S<     0:00  \_ [ata_sff]
  108 ?        S      0:00  \_ [scsi_eh_0]
  109 ?        S<     0:00  \_ [scsi_tmf_0]
  110 ?        S      0:00  \_ [scsi_eh_1]
  111 ?        S<     0:00  \_ [scsi_tmf_1]
  112 ?        S      0:00  \_ [scsi_eh_2]
  113 ?        S<     0:00  \_ [scsi_tmf_2]
  114 ?        S      0:00  \_ [scsi_eh_3]
  115 ?        S<     0:00  \_ [scsi_tmf_3]
  116 ?        S      0:00  \_ [scsi_eh_4]
  117 ?        S<     0:00  \_ [scsi_tmf_4]
  118 ?        S      0:00  \_ [scsi_eh_5]
  119 ?        S<     0:00  \_ [scsi_tmf_5]
  130 ?        S<     0:00  \_ [bioset]
  131 ?        S<     0:00  \_ [bioset]
  132 ?        S<     0:00  \_ [bioset]
  139 ?        S<     0:01  \_ [kworker/3:1H]
  140 ?        S<     0:00  \_ [kworker/1:1H]
  141 ?        S<     0:02  \_ [kworker/0:1H]
  142 ?        S<     0:02  \_ [kworker/2:1H]
  161 ?        S      0:11  \_ [jbd2/sda2-8]
  162 ?        S<     0:00  \_ [ext4-rsv-conver]
  200 ?        S<     0:00  \_ [iprt-VBoxWQueue]
  202 ?        S      0:00  \_ [iprt-VBoxTscThr]
  271 ?        S<     0:00  \_ [edac-poller]
  272 ?        S<     0:00  \_ [acpi_thermal_pm]
  273 ?        S<     0:00  \_ [kmemstick]
  274 ?        S      0:00  \_ [irq/27-mei_me]
  333 ?        S<     0:00  \_ [cfg80211]
  347 ?        S      3:55  \_ [irq/30-iwlwifi]
  376 ?        S<     0:04  \_ [kworker/u9:0]
  384 ?        S<     0:00  \_ [kworker/u9:1]
  387 ?        S      0:00  \_ [i915/signal:0]
  389 ?        S      0:00  \_ [i915/signal:1]
  390 ?        S      0:00  \_ [i915/signal:2]
  391 ?        S      0:00  \_ [i915/signal:4]
  392 ?        S<     0:00  \_ [hci0]
  393 ?        S<     0:00  \_ [hci0]
 1159 ?        S<     0:00  \_ [bioset]
 1161 ?        S<     0:00  \_ [bioset]
 1162 ?        S<     0:00  \_ [bioset]
 1164 ?        S<     0:00  \_ [bioset]
 1166 ?        S<     0:00  \_ [bioset]
 1167 ?        S<     0:00  \_ [bioset]
 1168 ?        S<     0:00  \_ [bioset]
 1171 ?        S<     0:00  \_ [bioset]
 1174 ?        S<     0:00  \_ [loop0]
 1179 ?        S<     0:00  \_ [loop1]
 1181 ?        S<     0:00  \_ [kdmflush]
 1184 ?        S<     0:00  \_ [dm_bufio_cache]
 1189 ?        S<     0:00  \_ [bioset]
 1190 ?        S<     0:00  \_ [kcopyd]
 1191 ?        S<     0:00  \_ [bioset]
 1192 ?        S<     0:00  \_ [dm-thin]
 1193 ?        S<     0:00  \_ [bioset]
 1484 ?        S<     0:00  \_ [krfcommd]
13146 ?        S      0:00  \_ [kworker/1:0]
13998 ?        S      0:01  \_ [kworker/0:0]
15376 ?        S      0:05  \_ [kworker/u8:4]
15958 ?        S      0:07  \_ [kworker/2:1]
17537 ?        S      0:01  \_ [kworker/1:2]
18946 ?        S      0:02  \_ [kworker/u8:0]
18977 ?        S      0:00  \_ [kworker/3:2]
20343 ?        S      0:00  \_ [kworker/2:0]
20610 ?        S      0:00  \_ [kworker/3:1]
20618 ?        S      0:00  \_ [kworker/0:2]
21088 ?        S      0:00  \_ [kworker/u8:1]
21170 ?        S      0:00  \_ [kworker/u8:2]
21235 ?        S      0:00  \_ [kworker/2:2]
21337 ?        S      0:00  \_ [kworker/u8:3]
    1 ?        Ss     0:01 /sbin/init
  183 ?        Ss     0:00 /usr/lib/systemd/systemd-journald
  215 ?        Ss     0:00 /usr/lib/systemd/systemd-udevd
  440 ?        Ss     0:00 /usr/lib/bluetooth/bluetoothd
  441 ?        Ss     0:07 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
  448 ?        Ss     0:00 /usr/lib/systemd/systemd-logind
  949 ?        Ss     1:19 /usr/bin/tor -f /etc/tor/torrc
  951 ?        Ssl    3:42 /usr/bin/dockerd -H fd://
 9013 ?        Ssl    2:16  \_ docker-containerd -l unix:///var/run/docker/libcontainerd/docker-containerd.sock --metrics-interval=0 --start-timeout 2m --state-dir /var/run/docker/libcontainerd/containerd --shim docker-containerd-shim --r
  965 ?        Ssl    2:09 /usr/bin/redis-server 127.0.0.1:6379
  971 ?        SLsl   0:00 /usr/bin/lightdm
  993 tty7     Ssl+  31:27  \_ /usr/lib/xorg-server/Xorg :0 -seat seat0 -auth /run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
 1150 ?        Sl     0:00  \_ lightdm --session-child 13 20
 1366 ?        Ssl    0:01      \_ cinnamon-session --session cinnamon
 1397 ?        Sl     0:18          \_ /usr/lib/cinnamon-settings-daemon/cinnamon-settings-daemon
 1519 ?        S      0:03          |   \_ syndaemon -i 1.0 -t -K -R
 1502 ?        Sl     0:00          \_ /usr/bin/python3 /usr/bin/cinnamon-launcher
 1535 ?        Sl    62:23          |   \_ cinnamon --replace
 1628 ?        SLl  149:59          |       \_ /usr/lib/chromium/chromium --ppapi-flash-path=/usr/lib/PepperFlash/libpepflashplayer.so --ppapi-flash-version=19.0.0.128
 1632 ?        S      0:00          |           \_ /usr/lib/chromium/chrome-sandbox /usr/lib/chromium/chromium --type=zygote --ppapi-flash-path=/usr/lib/PepperFlash/libpepflashplayer.so --ppapi-flash-version=19.0.0.128
 1633 ?        S      0:00          |           |   \_ /usr/lib/chromium/chromium --type=zygote --ppapi-flash-path=/usr/lib/PepperFlash/libpepflashplayer.so --ppapi-flash-version=19.0.0.128
 1635 ?        S      0:04          |           |       \_ /usr/lib/chromium/chromium --type=zygote --ppapi-flash-path=/usr/lib/PepperFlash/libpepflashplayer.so --ppapi-flash-version=19.0.0.128
 1725 ?        Sl     0:01          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=FA5BBA9CB6E9E6C53E973492552D095B --lang=en-US --extension-process --enable-offline-au
 1768 ?        Sl     0:01          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=7FA9F441D2D68004522DBF603FA45D70 --lang=en-US --extension-process --enable-offline-au
 1772 ?        Sl     5:39          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=3919C68CC8F174D9D94A9504A50F82AA --lang=en-US --extension-process --enable-offline-au
 1784 ?        Sl     0:03          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=80B5EE2D1FF4FCF4B706B08DF99F5370 --lang=en-US --extension-process --enable-offline-au
 1819 ?        Sl     0:03          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=5EF92869100E685F37F47E984E926948 --lang=en-US --extension-process --enable-offline-au
 1824 ?        Sl     0:01          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=0F3804F57072F2205FC877933CFBEACC --lang=en-US --extension-process --enable-offline-au
 1835 ?        Sl     6:47          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=47A41425F6EAEB951262A67515533004 --lang=en-US --extension-process --enable-offline-au
 1848 ?        Sl     1:06          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=0F5E9D7318C716E13033A0F58F25CDCD --lang=en-US --extension-process --enable-offline-au
 2134 ?        Sl    21:14          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=7C22FF1C1FFC93EC71762709582BC576 --lang=en-US --enable-offline-auto-reload --enable-o
 2215 ?        Sl     0:34          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=9B291B8850E7CDB776D891A822CA5251 --lang=en-US --enable-offline-auto-reload --enable-o
 2253 ?        Sl    48:03          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=5AE1F7E897AA22DD3AA4C7F1BF86C815 --lang=en-US --enable-offline-auto-reload --enable-o
 2312 ?        Sl    34:18          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=562571BBA8193E758B5059599642E54E --lang=en-US --enable-offline-auto-reload --enable-o
 2343 ?        Sl     2:59          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=BB3E2A9FCE391F733E0414F3C51A57CF --lang=en-US --enable-offline-auto-reload --enable-o
 2388 ?        Sl     0:27          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=824D5724AF02CA7B6BD93275AC8C6D87 --lang=en-US --enable-offline-auto-reload --enable-o
 2469 ?        Sl     0:36          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=EDF578961356FEFD348D05674F118473 --lang=en-US --enable-offline-auto-reload --enable-o
 2598 ?        Sl     5:31          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=79971266F092C1243D7FEB7733AE0FC8 --lang=en-US --enable-offline-auto-reload --enable-o
 2724 ?        Sl     1:13          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=1765ADF7F78F2E06FB61E81D4B65C2A0 --lang=en-US --enable-offline-auto-reload --enable-o
 2738 ?        Sl     3:53          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=FB94529AAC35091010B420751B5A3164 --lang=en-US --enable-offline-auto-reload --enable-o
 2774 ?        Sl     0:12          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=F33A0B0DE5B49F52B7786E9F288B4619 --lang=en-US --enable-offline-auto-reload --enable-o
 2787 ?        Sl     0:17          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=EB516D2F86DFE5F6A31EADD8504EFC7E --lang=en-US --enable-offline-auto-reload --enable-o
 2806 ?        Sl    72:04          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=52D88D888FAFDD74C04998CA10E7FC6E --lang=en-US --enable-offline-auto-reload --enable-o
 2833 ?        Sl     0:07          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=AEEE30755322CF559AE3A044EA64AA34 --lang=en-US --extension-process --enable-offline-au
 2861 ?        Sl     0:45          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=702F74809A639981904927B957393116 --lang=en-US --enable-offline-auto-reload --enable-o
 2880 ?        Sl     0:00          |           |           \_ /usr/lib/chromium/chromium --type=ppapi --field-trial-handle=1 --ppapi-flash-args --lang=en-US --service-request-channel-token=03FCD180E361C78830B21DD3CBE87004
 2885 ?        Sl     0:01          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=9A8E689900978F9F3261EABF871F0D18 --lang=en-US --enable-offline-auto-reload --enable-o
 2899 ?        Sl     0:01          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=F6570D1FDAD9D6AD345F8A3D4B426A65 --lang=en-US --enable-offline-auto-reload --enable-o
 2911 ?        Sl     0:01          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=96FC088A9E4DD05BFE20EA4C44179E20 --lang=en-US --enable-offline-auto-reload --enable-o
17804 ?        Sl    10:43          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=71C7EBC4E3D26F4655663A79DFAD0A91 --lang=en-US --enable-offline-auto-reload --enable-o
24719 ?        Sl     0:12          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=B063CCA8FF3EDA87FEF62B7ACA40C649 --lang=en-US --enable-offline-auto-reload --enable-o
32517 ?        Sl     0:38          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=8513371E056EE15F0C5EE0BF13ACD56D --lang=en-US --enable-offline-auto-reload --enable-o
 4546 ?        Sl     1:17          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=51747AB2580CDE3DC534B4391FF48C9F --lang=en-US --enable-offline-auto-reload --enable-o
14041 ?        Sl    27:58          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=933854B59A6B47B64B613A24B22E941C --lang=en-US --enable-offline-auto-reload --enable-o
21281 ?        Sl     0:07          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=4C7DCB6B1A60EEE33755550530AA8167 --lang=en-US --enable-offline-auto-reload --enable-o
21424 ?        Sl     0:00          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=E29439DA529237FDC8660E56C2A61573 --lang=en-US --extension-process --enable-offline-au
21441 ?        Sl     0:00          |           |           \_ /usr/lib/chromium/chromium --type=renderer --field-trial-handle=1 --primordial-pipe-token=8A1B49FB047F92C88B7776B6BF9057B0 --lang=en-US --enable-offline-auto-reload --enable-o
 1706 ?        Sl    59:06          |           \_ /usr/lib/chromium/chromium --type=gpu-process --field-trial-handle=1 --supports-dual-gpus=false --gpu-driver-bug-workarounds=1,7,8,23,28,61,74,97 --disable-gl-extensions=GL_ARB_timer_quer
 1709 ?        S      0:00          |               \_ /usr/lib/chromium/chromium --type=gpu-broker
 1542 ?        Sl     0:12          \_ python2 -m guake.main
 1581 pts/0    Ss     0:00          |   \_ /bin/zsh
21458 pts/0    R+     0:00          |   |   \_ ps fax
20513 ?        Z      0:00          |   \_ [xdg-open] <defunct>
 1543 ?        Sl     0:05          \_ nemo -n
 1544 ?        Sl     0:00          \_ nm-applet
 1545 ?        Sl     0:00          \_ /usr/bin/python3 /usr/bin/cinnamon-killer-daemon
 1546 ?        Sl     0:00          \_ /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
 1621 ?        Sl     2:49          \_ cinnamon-screensaver
  999 ?        Ssl    0:00 /usr/lib/accountsservice/accounts-daemon
 1011 ?        Ssl    0:03 /usr/lib/polkit-1/polkitd --no-debug
 1345 ?        Ss     0:00 /usr/lib/systemd/systemd --user
 1348 ?        S      0:00  \_ (sd-pam)
 1372 ?        Ss     0:09  \_ /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation
 1376 ?        Ssl    0:00  \_ /usr/lib/gvfs/gvfsd
 1381 ?        Sl     0:00  \_ /usr/lib/gvfs/gvfsd-fuse /run/user/1000/gvfs -f -o big_writes
 1403 ?        S<sl  33:12  \_ /usr/bin/pulseaudio --daemonize=no
 1467 ?        Sl     0:00  \_ /usr/lib/dconf/dconf-service
 1472 ?        Ssl    0:00  \_ /usr/lib/gvfs/gvfs-udisks2-volume-monitor
 1562 ?        Sl     0:00  \_ /usr/lib/gvfs/gvfsd-trash --spawner :1.3 /org/gtk/gvfs/exec_spaw/0
 1572 ?        Ssl    0:00  \_ /usr/lib/gvfs/gvfsd-metadata
 1580 ?        S      0:00  \_ /usr/lib/GConf/gconfd-2
19728 ?        Sl     0:00  \_ /usr/lib/gvfs/gvfsd-http --spawner :1.3 /org/gtk/gvfs/exec_spaw/1
 1363 ?        SLl    0:27 /usr/bin/gnome-keyring-daemon --daemonize --login
 1404 ?        SNsl   0:01 /usr/lib/rtkit/rtkit-daemon
 1423 ?        Ssl    0:01 /usr/lib/upower/upowerd
 1475 ?        Ssl    0:18 /usr/lib/udisks2/udisksd --no-debug
 1503 ?        Ssl    0:00 /usr/lib/colord/colord
 1523 ?        Sl     0:00 /usr/lib/cinnamon-settings-daemon/csd-printer
 2040 ?        Ss     0:00 wpa_supplicant -q -B -P /run/wpa_supplicant_wlp2s0.pid -i wlp2s0 -D nl80211,wext -c/run/network/wpa_supplicant_wlp2s0.conf
 2130 ?        Ss     0:01 dhcpcd -4 -q -t 30 -L wlp2s0
 7113 ?        Ssl   25:54 subl3
 7124 ?        Sl     2:25  \_ /opt/sublime_text_3/plugin_host 7113
 7146 ?        Sl     1:15      \_ /usr/local/bin/node /home/nicholas/.config/sublime-text-3/Packages/TypeScript/tsserver/tsserver.js --disableAutomaticTypingAcquisition
 7182 ?        Sl    21:33      \_ /home/nicholas/.cabal/bin/hsdev run --port 4567 --cache /home/nicholas/.config/sublime-text-3/Cache/SublimeHaskell/hsdev --log /home/nicholas/.config/sublime-text-3/Cache/SublimeHaskell/hsdev/hsdev.log -

Offline

#21 2017-05-05 19:24:19

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Line under text while typing, words removed on special chars

The only thing looking suspicious is the syndaemon.

Another thing (entirely wild shot)

localectl
locale
locale -a

Offline

#22 2017-05-09 20:07:26

nicholat
Member
Registered: 2015-08-05
Posts: 35

Re: Line under text while typing, words removed on special chars

Output of running all three:

univac% localectl
   System Locale: LANG=en_US.UTF-8
       VC Keymap: no
      X11 Layout: no
univac% locale
LANG=en_US.utf8
LC_CTYPE="en_US.utf8"
LC_NUMERIC="en_US.utf8"
LC_TIME="en_US.utf8"
LC_COLLATE="en_US.utf8"
LC_MONETARY="en_US.utf8"
LC_MESSAGES="en_US.utf8"
LC_PAPER="en_US.utf8"
LC_NAME="en_US.utf8"
LC_ADDRESS="en_US.utf8"
LC_TELEPHONE="en_US.utf8"
LC_MEASUREMENT="en_US.utf8"
LC_IDENTIFICATION="en_US.utf8"
LC_ALL=
univac% locale -a
C
en_US.utf8
nb_NO.utf8
POSIX
univac%

Offline

Board footer

Powered by FluxBB