Firstly, you need to install v4l2loopback and obs-v4l2sink. On arch linux with yay:
yay -Syu obs-v4l2sink v4l2loopback-dkms
Then, set up a systemd service:
koyoko% cat /etc/systemd/system/v4l2loopback.service
Firstly, you need to install v4l2loopback and obs-v4l2sink. On arch linux with yay:
yay -Syu obs-v4l2sink v4l2loopback-dkms
Then, set up a systemd service:
koyoko% cat /etc/systemd/system/v4l2loopback.service
#!/bin/bash | |
# Consumer Wacom devices (i.e. most Bamboo devices like the Bamboo Pen & Touch, | |
# Bamboo Fun, Bamboo Connect; and the newer non-pro Intuos devices like the | |
# Intuos Draw and Intuos Art) have a hardware button mapping that is incompatible | |
# with GNOME. This incompatibility prevents the GNOME Control Center's Wacom panel | |
# from working properly, and often also prevents at least one button from working | |
# entirely. | |
# | |
# This script can be used to discover a software mapping that can be applied by |
def yes_or_no(question): | |
reply = str(raw_input(question+' (y/n): ')).lower().strip() | |
if reply[0] == 'y': | |
return True | |
if reply[0] == 'n': | |
return False | |
else: | |
return yes_or_no("Uhhhh... please enter ") |
#!/usr/bin/env bash | |
# memusg -- Measure memory usage of processes | |
# Usage: memusg COMMAND [ARGS]... | |
# | |
# Author: Jaeho Shin <netj@sparcs.org> | |
# Created: 2010-08-16 | |
############################################################################ | |
# Copyright 2010 Jaeho Shin. # | |
# # | |
# Licensed under the Apache License, Version 2.0 (the "License"); # |