Linux – Help – chromium display frozen but the app keeps working

arch linuxchromei3manjaro

I am new to Manjaro and Arch. Recently I started running into an issue that I don't know how to solve.

The Issue

The chromium and skypeforlinux windows freeze, but the apps keep running.
For example skype calls don't break off but the window is stuck.
Same with chrome and chromium. If I am chatting (say telegram web) and the issue happens I can still send messages, but the screen does not update. So I am acting 'blindly'.
Other Apps like Emacs (also installed with yay), Telegram (yay) or terminal (native urxvt) are uneffected.

Another symptom: When I have Emacs running on Screen 1 and a broken Chrome on Screen 2, and when I switch from 1 to 2, then the window continues to show the contents of Screen 1, in this case emacs.

What is happening?

My system:

Manjaro Architect (uname -a): Linux archangel 5.1.4-1-MANJARO #1 SMP PREEMPT Wed May 22 17:56:21 UTC 2019 x86_64 GNU/Linux

pacman –version: Pacman v5.1.3 – libalpm v11.0.3

i3 –version: i3 version 4.16.1 (2019-01-27)

yay –version: yay v9.2.0 – libalpm v11.0.3

Effected apps (installed with yay/pacman):

skypeforlinux: skypeforlinux-preview-bin 8.47.76.58-1

chromium –version: Chromium 75.0.3770.80 Manjaro Linux

Best Answer

I recently had the same issue. In my case, the problem was solved by forcing DRI 2 instead of DRI 3 (I have an intel graphic card with the intel drivers).

I basically followed the instructions given here:

https://wiki.archlinux.org/index.php/Intel_Graphics#DRI3_issues

In a nutshell, I had to write

Section "Device"
    Identifier "Intel Graphics"
    Driver "intel"
    Option "DRI" "2"
EndSection

in /etc/X11/xorg.conf.d/20-intel.conf

I hope this helps!

Related Question