You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cat > /etc/default/grub.d/nvidia.cfg << EOF
# https://forums.developer.nvidia.com/t/second-monitor-not-detected-by-debian-settings-is-detected-by-nvidia/241599/7
GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT nvidia-drm.modeset=1"
EOF
sudo update-grub
# reboot
# After reboot, this should list two monitors:
xrandr --listmonitors
# Enable the 2nd monitor:
xrandr --setprovideroutputsource 1 0 && xrandr --auto
# On a X11 session, you can't set distinct screen scale on each screen, change the resolution as workaround if needed
# I don't want to use Wayland, as I can't use system clipboard on Vim:
# https://github.com/vim/vim/issues/5157
# https://github.com/jasonccox/vim-wayland-clipboard
Fix bluetooth not connecting to a speaker
# src/service.c:btd_service_connect() a2dp-sink profile connect failed for XX:XX:XX:XX:XX:XX: Protocol not available
sudo apt install libspa-0.2-bluetooth
systemctl --user restart pulseaudio
pipewire errors on logs
# kpipewire_logging: Failed to create PipeWire context
# received error while creating the stream "Ha fallat en crear el context del PipeWire" Media monitor will not work.
# pw.conf: can't load config client.conf: No such file or directory
sudo apt install pipewire-pulse
systemctl --user restart pulseaudio