Compare commits
2 commits
ebc4b51cbe
...
30dbbf3052
Author | SHA1 | Date | |
---|---|---|---|
|
30dbbf3052 | ||
|
ffe6698ac4 |
3 changed files with 14 additions and 6 deletions
|
@ -3,14 +3,14 @@
|
|||
# Base URL used to expand short topic names in the "ntfy publish" and "ntfy subscribe" commands.
|
||||
# If you self-host a ntfy server, you'll likely want to change this.
|
||||
#
|
||||
default-host: https://captainhal.ddns.net:20001
|
||||
default-host: https://ntfy.413.one
|
||||
|
||||
# Default username and password will be used with "ntfy publish" if no credentials are provided on command line
|
||||
# Default username and password will be used with "ntfy subscribe" if no credentials are provided in subscription below
|
||||
# For an empty password, use empty double-quotes ("")
|
||||
#
|
||||
default-user: dhalucario
|
||||
default-password: GYKkwdGLRxU4Nm
|
||||
default-user: leon
|
||||
default-password: 1bims
|
||||
|
||||
# Default command will execute after "ntfy subscribe" receives a message if no command is provided in subscription below
|
||||
# default-command:
|
||||
|
@ -48,5 +48,9 @@ default-password: GYKkwdGLRxU4Nm
|
|||
# and 'tags' (comma-separated list, logical AND). See https://ntfy.sh/docs/subscribe/api/#filter-messages.
|
||||
#
|
||||
subscribe:
|
||||
- topic: dhalucario-general
|
||||
command: 'notify-send "$m"'
|
||||
- topic: 'leon-services'
|
||||
command: 'notify-send "$t" "$m"'
|
||||
- topic: 'bonmercato-alerts'
|
||||
command: 'notify-send "$t" "$m"'
|
||||
- topic: 'bonmercato-imports'
|
||||
command: 'notify-send "$t" "$m"'
|
||||
|
|
|
@ -15,3 +15,5 @@ fi
|
|||
if [[ $(uname -s) != "Darwin" ]]; then
|
||||
alias open="xdg-open"
|
||||
fi
|
||||
|
||||
alias kubectl="minikube kubectl --"
|
||||
|
|
|
@ -22,8 +22,10 @@ if [ -n "$(command -v ruby)" ] && [ -n "$(command -v gem)" ]; then
|
|||
PATH="$(ruby -r rubygems -e 'puts Gem.user_dir')/bin:$PATH"
|
||||
fi
|
||||
|
||||
[[ ! -r $HOME/.cargo/env ]] || source $HOME/.cargo/env > /dev/null 2> /dev/null
|
||||
|
||||
# pnpm
|
||||
export PNPM_HOME="/home/dhalucario/.local/share/pnpm"
|
||||
export PNPM_HOME="$HOME/.local/share/pnpm"
|
||||
case ":$PATH:" in
|
||||
*":$PNPM_HOME:"*) ;;
|
||||
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||
|
|
Loading…
Reference in a new issue