Files
config/.config/gotify-desktop/config.toml
voidarc 44ba137c4e added secrets management and rolled keys
Can't just have my keys out in the open air anymore :(
Rolled and encrypted my gotify keys so that you cant see my
notifications anymore
2026-07-02 08:56:57 +01:00

21 lines
816 B
TOML

[gotify]
# gotify server websocket URL, use wss:// prefix for TLS, or ws:// for unencrypted
url = "wss://ntfy.voidarc.co.uk:443"
# secret gotify token
token = { command = "cat /home/user01/.dotfiles/.secret-gotify"}
# if you want to get the token from a password manager, or other external command,
# you can also use for example:
# token = { command = "secret-tool lookup Title 'Gotify token'" }
# optional, if true, deletes messages that have been handled, defaults to false
# auto_delete = true
[notification]
# optional, ignores messages with priority lower than given value, defaults to 0
min_priority = 1
[action]
# optional, run the given command for each message, with the following environment variables set: GOTIFY_MSG_PRIORITY, GOTIFY_MSG_TITLE and GOTIFY_MSG_TEXT.
# on_msg_command = "/usr/bin/beep"