AddOn:
- Go to about:support in your address bar
- Look for your profiles directory and open it:
- Create a file named
chrome/userChrome.css
in your profile directory:
AddOn:
chrome/userChrome.css
in your profile directory:{ | |
description = "Lightning-fast and Powerful Code Editor written in Rust "; | |
inputs = { | |
nixpkgs-unstable.url = github:nixos/nixpkgs/nixpkgs-unstable; | |
flake-utils.url = github:numtide/flake-utils; | |
}; | |
outputs = { self, nixpkgs-unstable, flake-utils }: | |
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: let | |
pkgs = import "${nixpkgs-unstable}" { |
gsettings set org.gnome.desktop.interface enable-hot-corners true |
.fail | |
# Scarlett 2i4 Remaps | |
#master_channel_map=front-left,front-right,rear-left,rear-right | |
### Remap Scarlett outputs 1&2 separately | |
load-module module-remap-sink sink_name=scarlett-outputs-1-2 sink_properties=device.description=Scarlett-Outputs-1-2 master=alsa_output.usb-Focusrite_Scarlett_2i4_USB-00.analog-surround-40 remix=no channels=2 master_channel_map=front-left,front-right channel_map=left,right | |
### Remap Scarlett outputs 3&4 separately | |
load-module module-remap-sink sink_name=scarlett-outputs-3-4 sink_properties=device.description=Scarlett-Outputs-3-4 master=alsa_output.usb-Focusrite_Scarlett_2i4_USB-00.analog-surround-40 remix=no channels=2 master_channel_map=rear-left,rear-right channel_map=left,right | |
#master_channel_map: front-left,front-right | |
### Remap Scarlett input 1 separately |
ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="081b", ENV{ID_MM_DEVICE_IGNORE}="1" | |
SUBSYSTEM=="tty", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="081b", SYMLINK+="robox%n", MODE="0666" |
#!/bin/bash | |
TMPDIR=$(mktemp -d) | |
LDD=$TMPDIR/LDD | |
PACKAGES=$TMPDIR/PACKAGES | |
ldd $1 | awk -F ' ' '{print $3}' | sed '/^$/d' | sed '/^(/d' | grep -v '^not' > $LDD | |
while read p; do | |
echo -n . |
I hereby claim:
To claim this, I am signing this object:
#!bin/bash | |
#WARNING - This script is not finished, DO NOT EXECUTE. This may serve as a guide for deblobbing bcache kernel. | |
exit 1 | |
git clone https://evilpiepirate.org/git/bcachefs.git | |
cd bcachefs | |
kver=$(make kernelversion) |