shell扩展
需先安装有gnome-tweak。
可在 https://extensions.gnome.org/ 中下载安装.注册该网站,浏览器会提示安装相应扩展。
archlinux可以在aur中搜索gnome-shell-extension的关键字查找(以”插件名+shell“进行搜索,如yaourt weather shell
)。
一些扩展(部分扩展在gnome-shell-extensions这个包里面):
Just another WordPress site
需先安装有gnome-tweak。
可在 https://extensions.gnome.org/ 中下载安装.注册该网站,浏览器会提示安装相应扩展。
archlinux可以在aur中搜索gnome-shell-extension的关键字查找(以”插件名+shell“进行搜索,如yaourt weather shell
)。
一些扩展(部分扩展在gnome-shell-extensions这个包里面):
Wayland does not play well with proprietary drivers. Currently the biggest issue is that nvidia does currently not support Xwayland properly, so apps that require it get software rendering. This includes most games, which are the most common use case for proprietary nvidia drivers. This is why gnome automatically disables Wayland if you have nvidia.
However, if this does not deter you, you can use Wayland with nvidia drivers. Here is how to do it:
/etc/gdm/custom.conf
file and comment out the line WaylandEnable=false
. The correct file will then look something like this:
# GDM configuration storage
daemon]
# Uncomment the line below to force the login screen to use Xorg
#WaylandEnable=false
[security]
[xdmcp]
[chooser]
[debug]
# Uncomment the line below to turn on debugging
#Enable=true
/usr/lib/udev/rules.d/61-gdm.rules
and comment out the lines that disable wayland for nvidia. Note that this file gets overwritten by updates. The correct file looks something like this:
# disable Wayland on Hi1710 chipsets
ATTR{vendor}=="0x19e5", ATTR{device}=="0x1711", RUN+="/usr/lib/gdm-disable-wayland"
# disable Wayland when using the proprietary nvidia driver
#DRIVER=="nvidia", RUN+="/usr/lib/gdm-disable-wayland"
# disable Wayland if modesetting is disabled
#IMPORT{cmdline}="nomodeset", RUN+="/usr/lib/gdm-disable-wayland"
nvidia
, nvidia_modeset
, nvidia_uvm
and nvidia_drm
to /etc/mkinitcpio.conf
and run the command sudo mkinitcpio -P
nvidia-drm.modeset=1
to /etc/default/grub
and run the command sudo update-grub
https://forum.manjaro.org/t/howto-use-wayland-with-propietary-nvidia-drivers/36130