I hereby claim:
- I am vansoest on github.
- I am sophievansoest (https://keybase.io/sophievansoest) on keybase.
- I have a public key ASAR57QtC4UDg4HLpA3AKHXu8z7b6n9RgCb18CIOIDXE7Ao
To claim this, I am signing this object:
| #!/bin/bash | |
| # List of packages and the date for the specific state to checkout | |
| packages=( | |
| "lib32-nvidia-utils-beta" | |
| # "lib32-opencl-nvidia-beta" | |
| "nvidia-beta-dkms" | |
| "nvidia-settings-beta" | |
| "nvidia-utils-beta" | |
| # "opencl-nvidia-beta" |
| [gd_scene load_steps=3 format=2] | |
| [sub_resource type="Shader" id=1] | |
| code = "shader_type canvas_item; | |
| // Godot Nvidia FXAA 3.11 Port | |
| // Usage: Drop this in to any 3D scene for FXAA! This is a port of the \"PC High Quality Preset 39\". However the medium quality | |
| // parameters are also included. For medium quality, just comment out sections \"PS 6\" and above and uncomment the \"med 13\" variables. |
| ''' | |
| BEGIN GPL LICENSE BLOCK | |
| This program is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU General Public License | |
| as published by the Free Software Foundation; either version 2 | |
| of the License, or (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| WINDOWMANAGER=i3 | |
| if [[ -z "$DBUS_SESSION_BUS_ADDRESS" ]]; then # Looks like we are outside X | |
| eval $(tr '\0' '\n' < /proc/$(pgrep $WINDOWMANAGER | head -1 )/environ | sed -e 's/^/export /') #export all environment variables | |
| fi | |
| $@ |
| function vim-which() { | |
| if [ "$1" != "" ]; then | |
| vim $(which $1) | |
| fi | |
| } |
| # Sudo aliases. | |
| sudo_aliases=(pacman htop) | |
| for c in $sudo_aliases; do; alias $c="sudo $c"; done |
| {"lastUpload":"2019-07-23T12:10:31.883Z","extensionVersion":"v3.4.1"} |
| #/bin/bash | |
| export PULSE_SERVER=tank | |
| exec pavucontrol & | |
| pid=$! | |
| sleep 1 | |
| xdotool search --all --pid $pid --class "pavucontrol" set_window --name "[tank] pavucontrol" |
| #!/bin/bash | |
| CARD=`aplay -l | grep -i "ALC889 Analog" | cut -d ":" -f 1 | cut -d " " -f 2` | |
| AMIXER="amixer --card $CARD" | |
| $AMIXER set Master 100% | |
| $AMIXER set Master unmute | |
| $AMIXER set Headphone 70% | |
| $AMIXER set Headphone unmute | |
| $AMIXER set PCM 100% |