blob: e5b27de3ee924236870f557669a64318a9492790 (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
#!/bin/sh
book_conf="${XDG_CONFIG_HOME:-$HOME/.config}/dbook/dbook.conf"
book_data="${XDG_DATA_HOME:-$HOME/.local/share}/dbook"
w_menu="wmenu"
x_menu="dmenu"
ico_dbk=" "
ico_url=" "
ico_doc=" "
ico_pic=" "
ico_vid=" "
ico_mus=" "
ico_fil=" "
ico_txt=" "
ico_dir=" "
usage()
{
cat <<- EOF
Usage: dbook [ command ] [ option ]
a bookmark manager using dmenu
Commands:
help show this help cruft
insert [ value [ key ] ], inset a new key
save [ value [ key ] ], inset but make a cp if it's a file
rm [ key ], delete a key
Options:
-t [ key ], type the vlaue
-c [ key ], copy the value to clipboard
EOF
}
note()
{
: "${1:?}"
command -v notify-send > /dev/null &&
notify-send -- "${ico_dbk} dbook" "$1"
}
die()
{
: "${1:?}"
note "$1"
printf "\033[31;1merr: %b\033[0m\n" "$1" 1>&2
exit "${2:-1}"
}
warn()
{
: "${1:?}"
note "$1"
printf "\033[33;1merr: %b\033[0m\n" "$1" 1>&2
}
dep_check()
{
: "${1:?}"
for dep; do
command -v "$dep" 1>/dev/null ||
die "$dep not found, please install it" 127
done
unset dep
}
trim()
{
: "${1:?}"
_trimstr="${1#"${1%%[![:space:]]*}"}"
_trimstr="${_trimstr%"${_trimstr##*[![:space:]]}"}"
echo "$_trimstr"
}
load_icon()
{
case "$(file --brief --dereference --mime-type "$1")" in
image/*) printf "%s" "$ico_pic" ;;
video/*) printf "%s" "$ico_vid" ;;
audio/*) printf "%s" "$ico_mus" ;;
text/*) printf "%s" "$ico_txt" ;;
inode/*) printf "%s" "$ico_dir" ;;
application/pdf) printf "%s" "$ico_doc" ;;
*'No such file or directory)')
if echo "$1" | grep -qxE '^(https?://)?[^/]*\.[A-Za-z0-9]*(/.*)?'; then
printf "%s" "$ico_url"
else
printf "%s" "$ico_fil"
fi
esac
}
parse_data()
{
# usage parse_data [ getval <key> ]
line=
_key=
_value=
while read -r line
do
[ -z "$line" ] && continue
_key="${line%%|*}"
_key="$(trim "$_key")"
case "$_key" in
#*) continue
esac
if [ "$1" = "getval" ]; then
[ "$2" != "$_key" ] && continue
_value="${line##*|}"
_value="$(trim "$_value")"
echo "$_value"
return 0
else
echo "$_key"
fi
done < "$book_conf"
unset _key _value
[ "$1" = "getval" ] && return 1
}
rm_data()
{
# usage rm_data <key>
: "${1:?}"
cl=
line=
file=
value=
old_ifs="$IFS"
IFS=
while read -r line
do
cl="$line\n"
key="$(trim "${cl%%|*}")"
# catch match
if [ "$key" = "$1" ]; then
value="$(trim "${cl##*|}")"
# delete if saved
case "$value" in
"$book_data"*) rm -f "$value"
esac
continue
fi
file="${file}${cl}"
done < "$book_conf"
IFS="$old_ifs"
# shellcheck disable=SC2059
printf "$file" > "$book_conf"
unset cl line file value old_ifs
}
clip()
{
# usage: clip [ file/text ] <value>
: "${1:?}"
: "${2:?}"
if [ -n "$WAYLAND_DISPLAY" ]; then
dep_check "wl-copy"
[ "$1" = "text" ] &&
printf "%s" "$2" | wl-copy
[ "$1" = "file" ] &&
printf "file://%s" "$2" | wl-copy -t text/uri-list
elif [ -n "$DISPLAY" ]; then
dep_check "xclip"
[ "$1" = "text" ] &&
printf "%s" "$2" | xclip -selection clipboard
[ "$1" = "file" ] &&
printf "file://%s" "$2" | xclip -selection clipboard "$1" -t text/uri-list
fi
note "${1} coppied to clipboard"
}
set_menu()
{
if [ -n "$WAYLAND_DISPLAY" ]; then
menu="$w_menu"
elif [ -n "$DISPLAY" ]; then
menu="$x_menu"
else
die "tty not supported"
fi
}
ip_menu()
{
printf "" | "$menu" -p "${ico_dbk} ${1:?} "
}
key_menu()
{
parse_data | "$menu" -l 25 -p "${ico_dbk} key " || return 1
}
########
# MAIN #
########
key=
value=
[ -d "$book_data" ] ||
mkdir -p "$book_data"
[ -d "$book_conf" ] ||
mkdir -p "${book_conf%/*}"
set_menu
case "$1" in
-*) ;;
"") ;;
*) command="$1" && shift
esac
case "$command" in
insert|save)
value="${1:-$(ip_menu "value")}" || exit 1
key="${2:-$(ip_menu "key")}" || exit 1
value="$(trim "$value")"
key="$(trim "$key")"
parse_data getval "$key" > /dev/null &&
die "key already in use"
case "$command" in
insert)
[ -e "$value" ] &&
value="$(realpath "$value")"
;;
save)
[ -d "$value" ] &&
warn "${value} is a directory, will not be saved"
if [ -f "$value" ]; then
cp "$value" "$book_data"
value="${book_data}/$(basename "$value")"
fi
;;
esac
case "$key" in
[![:cntrl:][:print:]]*) ;; # check for unicode chars
*) icon="$(load_icon "$value")"
esac
printf "%s\t|\t%s\n" "${icon:+$icon }$key" "$value" >> "$book_conf"
;;
rm)
key="${1:-$(key_menu)}" || exit 1
val="$(parse_data getval "$key")"
case "$val" in
${book_data}/*) rm "$val";;
esac
rm_data "$key"
;;
"")
dep_check "xdg-open"
[ -s "$book_conf" ] ||
die "no bookmarks, try dbook -h"
key="${2:-$(key_menu)}" || exit 1
value="$(parse_data getval "$key")" ||
die "${key}: no such key"
case "$1" in
-t)
if [ -z "$WAYLAND_DISPLAY" ]
then
dep_check "xdotool"
xdotool type --delay 20 "$value"
else
dep_check "wtype"
wtype -d 20 "$value"
fi
;;
-c)
case "$(file --brief --dereference --mime-type "$value")" in
text/*) clip text "$(cat "$value")" ;;
*'No such file or directory)') clip text "$value" ;;
*) clip file "$value"
esac
;;
"")
xdg-open "$value" 2> /dev/null || clip text "$value" ;;
*)
die "${1}: invalid option"
esac
;;
help) usage ;;
*) die "$command, invalid command"
esac
|