This file contains hidden or 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
Preamp: -4.0 dB | |
Filter 1: ON LSC Fc 70 Hz Gain 4.0 dB Q 0.600 | |
Filter 2: ON PK Fc 150 Hz Gain 2.0 dB Q 0.600 |
This file contains hidden or 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
services: | |
rathole: | |
image: rapiz1/rathole | |
command: --server /app/config.toml # replace --server with --client to run a client | |
volumes: | |
- ./config.toml:/app/config.toml # replace ./config.toml with your config location | |
ports: # make sure to bind your tunneled ports! | |
# - "2000:2000" # example port | |
# - "2001:2001/udp" # example port | |
- "2333:2333" # rathole server port |
This file contains hidden or 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
[Unit] | |
Description=frp client | |
After=network.target | |
[Service] | |
Type=simple | |
DynamicUser=yes | |
Restart=on-failure | |
RestartSec=5s | |
ExecStart=/usr/bin/frpc -c /etc/frp/frpc.toml |
This file contains hidden or 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
# use-omz needs to be FIRST | |
getantidote/use-omz | |
# Add in some oh-my-zsh stuff | |
ohmyzsh/ohmyzsh path:lib | |
ohmyzsh/ohmyzsh path:plugins/colored-man-pages | |
ohmyzsh/ohmyzsh path:plugins/docker-compose | |
# ohmyzsh/ohmyzsh path:plugins/gh | |
ohmyzsh/ohmyzsh path:plugins/git | |
ohmyzsh/ohmyzsh path:plugins/git-prompt |
This file contains hidden or 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
using System; | |
using System.Runtime.InteropServices; | |
using Microsoft.Win32; | |
public enum WallpaperStyle | |
{ | |
Fill, | |
Fit, | |
Stretch, | |
Tile, |