Use this if boot repair does not fix the issue.
adapted from: https://askubuntu.com/questions/197868/grub-does-not-detect-windows
sudo os-prober
Use this if boot repair does not fix the issue.
adapted from: https://askubuntu.com/questions/197868/grub-does-not-detect-windows
sudo os-prober
#!/bin/bash | |
# I like to place this file in ~/.scripts/bt_reconnect.sh | |
# Then assign a keyboard shortcut (CTRL + R) to run this script. | |
# This can be done on the keyboard shortcut app supplied with Ubuntu desktop. | |
# Make sure the script has executable permissions: chmod +x ~/.scripts/bt_reconnect.sh | |
# In the shortcut command enter the full path without using ~ or $HOME | |
bluetoothctl disconnect <your headset mac address> | |
systemctl --user restart pulseaudio |
#include <opencv2/opencv.hpp> | |
#include <iostream> | |
#include <librealsense2/rs.hpp> | |
#include <cstring> | |
#include <algorithm> | |
/*Modded from https://github.com/IntelRealSense/librealsense/issues/2552#issuecomment-431075931 | |
Realsense Customer Engineering Team Comment on fu3lab's issue*/ | |