aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/util/uzbl-dir.sh
blob: bb56954a6f4ba57dcc2bd22177c4d0ab3f7a97e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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_HISTORY_FILE=$UZBL_DATA_DIR/history
UZBL_SESSION_FILE=$UZBL_DATA_DIR/browser-session