blob: 5f4341058adbb967aeed901eea3b3f5cb1905812 (
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
27
28
29
30
31
32
33
|
#!/bin/sh
##################################################################
# ___ __ __ _ #
# / _ \ _ __ ___ __ _ _ __ | \/ | __ _ __ _ __| |_ _ #
#| | | | '_ ` _ \ / _` | '__| | |\/| |/ _` |/ _` |/ _` | | | | #
#| |_| | | | | | | (_| | | | | | | (_| | (_| | (_| | |_| | #
# \___/|_| |_| |_|\__,_|_| |_| |_|\__,_|\__, |\__,_|\__ | #
# |___/ |___/ #
# #
##################################################################
path="/mnt/Storage/omar/Books/"
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
launcher=(rofi -dmenu -i -l 10 -p "Book name" -theme-str "window { width: 45%; }")
elif [ "$XDG_SESSION_TYPE" = "x11" ]; then
launcher=(dmenu -i -l 10)
else
echo "Error: Could not detect display server (Wayland or X11)."
exit 1
fi
# Pipe filenames to launcher and capture choice
choice=$(fd -e pdf . "$path" -x basename | sort | "${launcher[@]}")
# Exit silently if nothing selected
[ -z "$choice" ] && exit 0
# Find the full path of the selected file
full_path=$(fd -e pdf . "$path" | grep "/$choice$" | head -1)
# Open in zathura fullscreen
zathura --mode fullscreen "$full_path"
|