blob: b518b71a8f2b4e35e7fd6d9bcb16b75f14a46e49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (C) 2024-2025 Maria Lisina
# Copyright (C) 2024-2025 Danil Lisin
# SPDX-License-Identifier: Apache-2.0
auth_dir="${user_config}/${ib_config}"
timestamp_file="${auth_dir}/timestamp"
token_file="${auth_dir}/token"
case "${ib_board}" in
(a|d)
. "${auth}/config/donmai.zsh"
;;
(g)
. "${auth}/config/gelbooru.zsh"
;;
(i|s)
. "${auth}/config/sankakucomplex.zsh"
;;
(k|y)
. "${auth}/config/moebooru.zsh"
;;
esac
login_file="${auth_dir}/${ib_login_file}"
key_file="${auth_dir}/${ib_key_file}"
|