Skip to content

Instantly share code, notes, and snippets.

@ktosiek
ktosiek / PA profile-set astro-a50-gen4.conf
Last active February 27, 2024 22:46
Astro A50 support on Linux - basic configuration for PulseAudio 13 (tested on Ubuntu's 13.99.1). Install the files and reboot, to make sure udev and PA reloaded :-)
; /usr/share/pulseaudio/alsa-mixer/profile-sets/astro-a50-gen4.conf
[General]
auto-profiles = yes
[Mapping analog-voice]
description = Voice
device-strings = hw:%f,0,0
channel-map = left,right
paths-output = steelseries-arctis-output-chat-common
@cloin
cloin / weechat highlights in Mac OS X Notification Center.md
Last active February 13, 2019 10:13
weechat highlights in Mac OS X Notification Center
@colinramsay
colinramsay / extjs4-treefilter.js
Created February 10, 2012 12:58
Add filtering to Ext JS 4's TreePanel (Ext.tree.Panel)
/**
* Add basic filtering to Ext.tree.Panel. Add as a mixin:
* mixins: {
* treeFilter: 'MyApp.lib.TreeFilter'
* }
*/
Ext.define('MyApp.lib.TreeFilter', {
filterByText: function(text) {
this.filterBy(text, 'text');
},