How to setup bluetooth in in voidlinux

You need some packages first

sudo xbps-install libpulseaudio bluez-alsa
Read more…

tmux error "tmux.conf: no current session"

This is because you haven't added -g in any of the set command in tmux.conf file.

Reference: Stackoverflow

Import your old ssh keys to new system.

  1. Place it in the right place
cp /path/to/my/key/id_rsa ~/.ssh/id_rsa
cp /path/to/my/key/id_rsa.pub ~/.ssh/id_rsa.pub
Read more…

fix glib.h error while installing surf

sudo pacman -S gst-plugins-base-libs gst-libav gst-plugins-base gst-plugins-good
sudo pacman -S webkit2gtk

create new runit service

Create a directory with run file

sudo mkdir /etc/runit/sv/servdir
sudo nvim /etc/runit/sv/servdir/run
Read more…