Skip to content

Instantly share code, notes, and snippets.

View mikeboiko's full-sized avatar

Mike mikeboiko

  • Calgary, Canada
View GitHub Profile
@mikeboiko
mikeboiko / pa-udev.md
Created March 31, 2025 10:35
Auto-switching PulseAudio devices using udev rules

The Problem

PulseAudio's default behavior when disconnecting Bluetooth devices can be frustrating. When your Bluetooth headphones disconnect, PulseAudio automatically switches to another available sink - but not necessarily the one you want (like your laptop speakers).

The Solution

This solution uses udev rules to automatically switch audio devices when Bluetooth connects/disconnects:

  1. When Bluetooth headphones connect -> Set them as default input/output
  2. When Bluetooth headphones disconnect -> Force specific fallback devices (e.g., laptop speakers)
@mikeboiko
mikeboiko / tailscale.md
Created February 25, 2025 21:43
Tailscale Auto-Connect: Network-Aware VPN Management Script

Tailscale Auto-Connect: Network-Aware VPN Management Script

A NetworkManager dispatcher script that automatically manages your Tailscale VPN connection based on your network environment. It connects to Tailscale when you're on untrusted networks and disconnects when you're on your home network.

#!/bin/bash

INTERFACE=$1
STATUS=$2
@mikeboiko
mikeboiko / git-credential-rbw
Last active December 21, 2024 22:11
Use bitwarden rbw as git-credential helper
#!/usr/bin/env bash
# rbw git-credential helper
# Based on https://github.com/lastpass/lastpass-cli/blob/master/contrib/examples/git-credential-lastpass
# A credential helper for git to retrieve usernames and passwords from rbw.
# For general usage, see https://git-scm.com/docs/gitcredentials.
# Here's a quick version:
# 1. Put this somewhere in your path.
# 2. git config --global credential.helper rbw
@mikeboiko
mikeboiko / tmux.conf
Last active March 23, 2024 07:32
Automatically update $DISPLAY for each tmux pane after attaching to session
set-hook -g client-attached 'run-shell /bin/update_display.sh'
@mikeboiko
mikeboiko / pagination.py
Last active November 22, 2020 14:07
Django Rest Framework Pagination integration with Vuetable-2
# =======================================================================
# === Description ...: Integrate DRF with VueTable-2
# === Author ........: Mike Boiko
# =======================================================================
# If you want to integrate Django Rest Pagination with VueTable, you must
# change the pagination as shown below:
# Then, in your views.py file, the pagination_class must be set to CustomPagination
# See example below:
# from rest_framework import pagination