blob: ee09cf254c03099f84d20a9b85d73e49ff64a30a (
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
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
|
#!/bin/sh
#
# Very simple session manager for uzbl-browser.
# To use, add a line like 'bind quit = spawn @scripts_dir/session.sh' to your
# config. This binding will exit every instance of uzbl and store the URLs they
# had open in $UZBL_SESSION_FILE.
#
# When a session file exists this script can be run with no arguments (or the
# argument "launch") to start an instance of uzbl-browser for every stored url.
#
# If no session file exists (or if called with "endsession" as the first
# argument), this script looks for instances of uzbl that have fifos in
# $UZBL_FIFO_DIR and instructs each of them to store its current url in
# $UZBL_SESSION_FILE and terminate.
#
# "endinstance" is used internally and doesn't need to be called manually.
if [ -z "$UZBL_UTIL_DIR" ]; then
# we're being run standalone, we have to figure out where $UZBL_UTIL_DIR is
# using the same logic as uzbl-browser does.
UZBL_UTIL_DIR=${XDG_DATA_HOME:-$HOME/.local/share}/uzbl/scripts/util
if ! [ -d "$UZBL_UTIL_DIR" ]; then
PREFIX=$(grep '^PREFIX' "$(which uzbl-browser)" | sed 's/.*=//')
UZBL_UTIL_DIR=$PREFIX/share/uzbl/examples/data/scripts/util
fi
fi
. "$UZBL_UTIL_DIR"/uzbl-dir.sh
[ -d "$UZBL_DATA_DIR" ] || exit 1
UZBL="uzbl-browser -c $UZBL_CONFIG_FILE" # add custom flags and whatever here.
scriptfile=$(readlink -f $0) # this script
act="$1"
if [ -z "$act" ]; then
[ -f "$UZBL_SESSION_FILE" ] && act="launch" || act="endsession"
fi
case $act in
"launch" )
urls=$(cat "$UZBL_SESSION_FILE")
if [ -z "$urls" ]; then
$UZBL
else
for url in $urls; do
$UZBL --uri "$url" &
done
mv "$UZBL_SESSION_FILE" "$UZBL_SESSION_FILE~"
fi
;;
"endinstance" )
if [ -z "$UZBL_FIFO" ]; then
echo "session manager: endinstance must be called from uzbl"
exit 1
fi
[ "$UZBL_URI" != "(null)" ] && echo "$UZBL_URI" >> "$UZBL_SESSION_FILE"
echo exit > "$UZBL_FIFO"
;;
"endsession" )
for fifo in "$UZBL_FIFO_DIR"/uzbl_fifo_*; do
if [ "$fifo" != "$UZBL_FIFO" ]; then
echo "spawn $scriptfile endinstance" > "$fifo"
fi
done
[ -z "$UZBL_FIFO" ] || echo "spawn $scriptfile endinstance" > "$UZBL_FIFO"
;;
* )
echo "session manager: bad action"
echo "Usage: $scriptfile [COMMAND] where commands are:"
echo " launch - Restore a saved session or start a new one"
echo " endinstance - Quit the current instance. Must be called from uzbl"
echo " endsession - Quit the running session."
;;
esac
|