Vì cách khắc phục này phụ thuộc vào việc sửa đổi trình quản lý hỗn hợp và bạn chỉ có thể có một trình quản lý tổng hợp tại một thời điểm, nên rất khó thực hiện trừ khi bạn đã sử dụng một hệ thống không có trình quản lý hỗn hợp. Tôi nghi ngờ rằng có thể áp dụng LD_PRELOAD cho bất kỳ trình quản lý tổng hợp nào, nhưng trình quản lý tổng hợp dành riêng cho mọi môi trường HĐH và máy tính để bàn. Tôi cũng nghi ngờ rằng bạn có thể buộc HĐH của mình sử dụng compton và bản sửa lỗi, nhưng một lần nữa, nó đặc trưng cho Môi trường HĐH / Máy tính để bàn.
Nếu bạn có trình quản lý hỗn hợp, hãy bỏ qua phần tiếp theo này, nếu bạn không có trình quản lý kết hợp, hãy làm theo các bước sau:
Install compton
Run the following command in your terminal and you will be all set, note that you must rerun this command every time you login, so I suggest putting this in your .bash_profile or .zprofile (if using ZSH).
LD_PRELOAD=/usr/lib/mumble/libmumble.so compton -CGb --backend glx --paint-on-overlay
The flags -CG disable shadow effects
The flag -b runs it in the background as a daemon
The flag --backend glx runs it using OpenGL
The flag --paint-on-overlay paints on X Composite overlay window instead of on root window. You can add the flag --vsync with an argument to enable vsync.
Run mumble. Because of the nature of the fix, you can start mumble after TF2 and still have the overlay show up. The overlay will appear whenever you are connected to a mumble server.
Nếu bạn giống như phần lớn mọi người và có một trình quản lý tổng hợp đi kèm với HĐH của bạn, thì tác vụ này sẽ trở nên liên quan hơn vì bạn không thể có 2 trình biên dịch chạy cùng một lúc. Xin lưu ý rằng bản sửa lỗi này khá xấu và cần một chút thời gian để thiết lập và cũng yêu cầu bạn phải đăng xuất mỗi khi bạn muốn sử dụng lớp phủ lẩm bẩm. Các bước sau đây được diễn giải và sửa đổi từ hướng dẫn này.
Install compton and openbox (you can optionally install obconf and obmenu, but they are not necessary)
Create the directory ~/.config/openbox if it does not exist
In that directory create a file called autostart
In that file, place the following (any line starting with a # is a comment and it will not be run)
# Starts compton and is necessary for the overlay to work, look at the above section on compton to decide what flags you want to use
LD_PRELOAD=/usr/lib/mumble/libmumble.so compton -CGb --backend glx --paint-on-overlay &
# Autostarts steam
steam &
# Autostarts mumble (comment out to stop mumble from automatically starting)
mumble &
# You also can place any program in here that you wish to start
# Use a & at the end of the name so that your computer does no wait until
# that program is fully started before it start the next program.
When you wish to play a game, logout of you account, and then select openbox as your desktop environment. This requires a login manager than supports multiple desktop environments. Most do, but it may require you to look around to find out how to switch desktop environments. If you are using startx/.xinitrc, make sure that you use exec openbox-session rather than exec openbox because exec openbox does not automatically load the autostart file.
To return to your normal desktop, logout of your account and then select your normal desktop environment from you login manager.