View config_audio.md
24bit 192 kHz HD Audio + A=432 Hz Tuning + Equalizer
High-quality sampling
ALSA
echo 'defaults.pcm.rate_converter "speexrate_best"' | tee -a .asoundrc
sudo alsactl restore
PulseAudio
sudo echo 'default-sample-format = s24le' | sudo tee -a /etc/pulse/daemon.conf
sudo echo 'default-sample-rate = 192000' | sudo tee -a /etc/pulse/daemon.conf
View fish-agent.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Convert ssh-agent output to fish shell | |
# | |
eval "$(ssh-agent)" >/dev/null | |
echo "set SSH_AUTH_SOCK \"$SSH_AUTH_SOCK\"; export SSH_AUTH_SOCK" | |
echo "set SSH_AGENT_PID \"$SSH_AGENT_PID\"; export SSH_AGENT_PID" |
View pass.md
Password-store keeps your passwords (or any other sensitive information) saved in GnuPG encrypted files organized in ~/.password-store
. For more information about GPG, consult the GNU Privacy Handbook.
Getting started
To get started, install pass
and generate a keypair.
$ brew install pass
$ gpg --gen-key
$ gpg --list-keys
View .MOVED.md
This project has moved to a GitHub repository:
https://github.com/hwdsl2/setup-ipsec-vpn
View apertium-xsel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This file gives you apertium translation on whatever you've selected | |
# with your mouse. When called with "prev" as an argument, it will use | |
# your most recently used language pair, without it will pop up a | |
# picker. It only uses installed pairs, ie. the ones listed by | |
# "apertium -l". | |
# Install dependencies on Debian/Ubuntu: | |
# $ sudo apt-get install xsel zenity |