dwb: Fix path to Adblock lists

master
Pierre Neidhardt 2014-09-11 15:54:05 +02:00
parent 3c18ed1ea2
commit 02c877b34a
1 changed files with 7 additions and 7 deletions

View File

@ -4,26 +4,26 @@ extensions.load("adblock_subscriptions", {
//<adblock_subscriptions___CONFIG //<adblock_subscriptions___CONFIG
// Shortcut to subscribe to a filterlist // Shortcut to subscribe to a filterlist
scSubscribe : null, scSubscribe : null,
// Command to subscribe to a filterlist // Command to subscribe to a filterlist
cmdSubscribe : "adblock_subscribe", cmdSubscribe : "adblock_subscribe",
// Shortcut to unsubscribe from a filterlist // Shortcut to unsubscribe from a filterlist
scUnsubscribe : null, scUnsubscribe : null,
// Command to unsubscribe from a filterlist // Command to unsubscribe from a filterlist
cmdUnsubscribe : "adblock_unsubscribe", cmdUnsubscribe : "adblock_unsubscribe",
// Shortcut to update subscriptions and reload filter rules // Shortcut to update subscriptions and reload filter rules
// Note that dwb will also update all subscriptions on startup // Note that dwb will also update all subscriptions on startup
scUpdate : null, scUpdate : null,
// Command to update subscriptions and reload filter rules // Command to update subscriptions and reload filter rules
// Note that dwb will also update all subscriptions on startup // Note that dwb will also update all subscriptions on startup
cmdUpdate : "adblock_update", cmdUpdate : "adblock_update",
// Path to the filterlist directory, will be created if it doesn't exist. // Path to the filterlist directory, will be created if it doesn't exist.
filterListDir : "~/.config/dwb/adblock_lists" filterListDir : data.configDir + "/adblock_lists"
//>adblock_subscriptions___CONFIG //>adblock_subscriptions___CONFIG
}); });
//>adblock_subscriptions___SCRIPT //>adblock_subscriptions___SCRIPT