aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/util/uzbl-dir.sh
blob: 82510d83d9a916564900524ab6a14216aa69ce5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Common directories and files used in scripts

# Common things first
UZBL_DATA_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/uzbl"
UZBL_CONFIG_DIR="${XDG_CONFIG_DIR:-$HOME/.config}/uzbl"
UZBL_FIFO_DIR=/tmp
UZBL_SOCKET_DIR=/tmp

# Directories
UZBL_DOWNLOAD_DIR="${XDG_DOWNLOAD_DIR:-$HOME}"
UZBL_FORMS_DIR="$UZBL_DATA_DIR/dforms"

# Data files
UZBL_CONFIG_FILE="$UZBL_CONFIG_DIR/config"
UZBL_COOKIE_FILE="$UZBL_DATA_DIR/cookies.txt"
UZBL_BOOKMARKS_FILE="$UZBL_DATA_DIR/bookmarks"
UZBL_TEMPS_FILE="$UZBL_DATA_DIR/temps"
UZBL_HISTORY_FILE="$UZBL_DATA_DIR/history"
UZBL_SESSION_FILE="$UZBL_DATA_DIR/browser-session"