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
| method return time=1772670250.801471 sender=:1.242 -> destination=:1.270 serial=8 reply_serial=2 | |
| variant array [ | |
| struct { | |
| int32 64 | |
| int32 64 | |
| array of bytes [ | |
| ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff | |
| 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 | |
| 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 | |
| 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 |
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
| # Enable Powerlevel10k instant prompt. Should stay close to the top of $HOME/.zshrc. | |
| # Initialization code that may require console input (password prompts, [y/n] | |
| # confirmations, etc.) must go above this block; everything else may go below. | |
| if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
| source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
| fi | |
| # Set ZDOTDIR if not already set (for better organization) | |
| export ZDOTDIR="${ZDOTDIR:-$HOME/.zsh}" |
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
| #!/bin/bash | |
| find . -maxdepth 1 -type f -print0 | while IFS= read -r -d $'\0' file; | |
| do | |
| filename=$(basename "$file") | |
| if [ "$filename" = "move.sh" ] || [ "$filename" = | |
| "organize_files.sh" ]; then | |
| continue |
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
| #!/bin/bash | |
| vopono exec --provider custom --custom ~/.config/vpn/wg-rtorrent.conf --protocol wireguard --custom-port-forwarding protonvpn -i enp7s0 --custom-netns-name rtorrent --postup ~/.config/vpn/rtorrent_postup.sh /usr/bin/rtorrent |
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
| #!/bin/bash | |
| sed -i 's/network.port_range.set = [0-9]*-[0-9]*/network.port_range.set = '"$VOPONO_FORWARDED_PORT"'-'"$VOPONO_FORWARDED_PORT"'/g' ~/.rtorrent.rc |