aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/follow.sh
blob: 7c2710aa80ad052325c03a5c8c296b9156042486 (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
# This scripts acts on the return value of followLinks in follow.js

result=$1
shift

case "$result" in
    XXXFORM_ACTIVEXXX)
        # a form element was selected
        echo 'event KEYCMD_CLEAR' > "$UZBL_FIFO"
        ;;
    XXXRESET_MODEXXX)
        # a link was selected, reset uzbl's input mode
        printf 'set mode=\nevent KEYCMD_CLEAR\n' > "$UZBL_FIFO"
        ;;
    XXXNEW_WINDOWXXX*)
        printf "set mode=\nevent KEYCMD_CLEAR\nevent NEW_WINDOW $@\n" > "$UZBL_FIFO"
        ;;
    XXXRETURNED_URIXXX*)
        uriaction=$1
        uri=${result#XXXRETURNED_URIXXX}

        printf 'set mode=\nevent KEYCMD_CLEAR\n' > "$UZBL_FIFO"

        case "$uriaction" in
            set)
                printf 'uri '"$uri"'\n' | sed -e 's/@/\\@/' > "$UZBL_FIFO"
                ;;
            clipboard)
                printf "$uri" | xclip
                ;;
        esac
esac