Compare commits
15 Commits
44fb4e1bc1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| c156908621 | |||
| 7e44493b90 | |||
| 44ba137c4e | |||
| c72c6e09b4 | |||
| b35e900b41 | |||
| 8cc9007d77 | |||
| c06a28c59b | |||
| 6b463bb434 | |||
| 98fc942c58 | |||
| dd21db047d | |||
| 6ed8974212 | |||
| 0afb5b84f7 | |||
| f24315425a | |||
| 09f0177d54 | |||
| e103f51ef3 |
@@ -3,7 +3,7 @@
|
|||||||
url = "wss://ntfy.voidarc.co.uk:443"
|
url = "wss://ntfy.voidarc.co.uk:443"
|
||||||
|
|
||||||
# secret gotify token
|
# secret gotify token
|
||||||
token = "C5YKvW5h3NfJJIB"
|
token = { command = "cat /home/user01/.dotfiles/.secret-gotify"}
|
||||||
# if you want to get the token from a password manager, or other external command,
|
# if you want to get the token from a password manager, or other external command,
|
||||||
# you can also use for example:
|
# you can also use for example:
|
||||||
# token = { command = "secret-tool lookup Title 'Gotify token'" }
|
# token = { command = "secret-tool lookup Title 'Gotify token'" }
|
||||||
|
|||||||
Submodule .config/hypr updated: 9257437dc8...0fea6f1450
@@ -16,6 +16,8 @@ cursor_trail_start_threshold 1
|
|||||||
cursor_trail_color #cba6f7
|
cursor_trail_color #cba6f7
|
||||||
cursor_shape beam
|
cursor_shape beam
|
||||||
|
|
||||||
|
allow_remote_control true
|
||||||
|
|
||||||
window_padding_width 10
|
window_padding_width 10
|
||||||
|
|
||||||
map ctrl+backspace send_text all \x17
|
map ctrl+backspace send_text all \x17
|
||||||
|
|||||||
Submodule .config/nvim updated: a2cc4a6c45...7de01201e8
1
.config/quickshell
Submodule
1
.config/quickshell
Submodule
Submodule .config/quickshell added at 63e360d427
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1 +1,4 @@
|
|||||||
.session
|
.session
|
||||||
|
.gitsecret/keys/random_seed
|
||||||
|
!*.secret
|
||||||
|
.secret-gotify
|
||||||
|
|||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -8,3 +8,6 @@
|
|||||||
[submodule ".config/hypr"]
|
[submodule ".config/hypr"]
|
||||||
path = .config/hypr
|
path = .config/hypr
|
||||||
url = https://git.voidarc.co.uk/voidarc/hypr
|
url = https://git.voidarc.co.uk/voidarc/hypr
|
||||||
|
[submodule ".config/quickshell"]
|
||||||
|
path = .config/quickshell
|
||||||
|
url = https://git.voidarc.co.uk/voidarc/quickshell
|
||||||
|
|||||||
BIN
.gitsecret/keys/pubring.kbx
Normal file
BIN
.gitsecret/keys/pubring.kbx
Normal file
Binary file not shown.
BIN
.gitsecret/keys/pubring.kbx~
Normal file
BIN
.gitsecret/keys/pubring.kbx~
Normal file
Binary file not shown.
BIN
.gitsecret/keys/trustdb.gpg
Normal file
BIN
.gitsecret/keys/trustdb.gpg
Normal file
Binary file not shown.
1
.gitsecret/paths/mapping.cfg
Normal file
1
.gitsecret/paths/mapping.cfg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.secret-gotify:f6129ad401b60d5a491d582169088600bb58a537d232b93c22923aede129d5cc
|
||||||
2
.nixos
2
.nixos
Submodule .nixos updated: 2a0fbdcd16...fd62c17426
2
.secret-gotify.secret
Normal file
2
.secret-gotify.secret
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
„^ýòêîø®j@:p®X–a=ÞmÑA¼å9×
|
||||||
|
Q‚îºt$)CÓ~†'s0³f JA@:I²ÌóÛo³î_Øz>Í*–¡šÒÎC«kß‹á))=ÂeBxÒYƒOè
|
||||||
1
.zshrc
1
.zshrc
@@ -32,3 +32,4 @@ alias vinix="nvim --cmd 'cd ~/.dotfiles/.nixos'"
|
|||||||
alias man='man -P "bat -p"'
|
alias man='man -P "bat -p"'
|
||||||
|
|
||||||
source ~/.zshrc-local
|
source ~/.zshrc-local
|
||||||
|
source ~/.zshrc-functions
|
||||||
|
|||||||
17
.zshrc-functions
Normal file
17
.zshrc-functions
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
transcode-youtube() {
|
||||||
|
# Check if both input and output files are provided
|
||||||
|
if [ "$#" -ne 1 ]; then
|
||||||
|
echo "Usage: transcode-youtube <video number>"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
ffmpeg -vaapi_device /dev/dri/renderD128 -i "youtube-raw/vid$1.mov" \
|
||||||
|
-vf "format=nv12,hwupload" \
|
||||||
|
-c:v h264_vaapi -profile:v high -level 4.2 \
|
||||||
|
-rc_mode VBR -b:v 50M -maxrate 70M -bufsize 100M \
|
||||||
|
-g 120 -bf 2 \
|
||||||
|
-color_primaries bt709 -color_trc bt709 -colorspace bt709 \
|
||||||
|
-c:a aac -b:a 384k -ar 48000 \
|
||||||
|
-movflags +faststart \
|
||||||
|
"youtube-archive/vid-$1.mp4"
|
||||||
|
}
|
||||||
@@ -11,6 +11,10 @@ exclude_files = [
|
|||||||
".gitignore",
|
".gitignore",
|
||||||
".session",
|
".session",
|
||||||
".gitmodules",
|
".gitmodules",
|
||||||
|
".gitsecret",
|
||||||
|
"*.secret",
|
||||||
|
"**/.devenv",
|
||||||
|
".secret*"
|
||||||
]
|
]
|
||||||
|
|
||||||
# Files and directories that are always symlinked, overriding `exclude_files`. Each entry is a glob pattern relative to the dotfiles directory.
|
# Files and directories that are always symlinked, overriding `exclude_files`. Each entry is a glob pattern relative to the dotfiles directory.
|
||||||
|
|||||||
Reference in New Issue
Block a user