diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-06-01 15:51:21 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-06-01 15:51:21 +0700 |
commit | 92fa2f573eadd41b35aa115402d282829f40e824 (patch) | |
tree | 26428e03e76b943ff87287149562b054820f36e9 /luakit | |
parent | cfc3a0f3d53e2a5dd3ba6f898d6c055b07a94312 (diff) | |
download | dotfiles-92fa2f573eadd41b35aa115402d282829f40e824.tar.gz |
Update 2019-06-01
Diffstat (limited to 'luakit')
-rw-r--r-- | luakit/.config/luakit/rc.lua | 3 | ||||
-rw-r--r-- | luakit/.config/luakit/theme-dark.lua | 6 | ||||
-rw-r--r-- | luakit/.config/luakit/theme-light.lua | 6 | ||||
-rw-r--r-- | luakit/.config/luakit/theme.lua | 8 |
4 files changed, 11 insertions, 12 deletions
diff --git a/luakit/.config/luakit/rc.lua b/luakit/.config/luakit/rc.lua index a9771a4..0a5ebaf 100644 --- a/luakit/.config/luakit/rc.lua +++ b/luakit/.config/luakit/rc.lua @@ -7,7 +7,7 @@ require "lfs" require "unique_instance" -- Set the number of web processes to use. A value of 0 means 'no limit'. -luakit.process_limit = 4 +luakit.process_limit = 0 -- Set the cookie storage location soup.cookies_storage = luakit.data_dir .. "/cookies.db" @@ -102,7 +102,6 @@ local session = require "session" -- Add command to list closed tabs & bind to open closed tabs local undoclose = require "undoclose" -settings.undoclose.max_saved_tabs = 4 -- Add command to list tab history items local tabhistory = require "tabhistory" diff --git a/luakit/.config/luakit/theme-dark.lua b/luakit/.config/luakit/theme-dark.lua index 15efcb9..0dfae4f 100644 --- a/luakit/.config/luakit/theme-dark.lua +++ b/luakit/.config/luakit/theme-dark.lua @@ -1,6 +1,6 @@ --------------------------- --- Default luakit theme -- --------------------------- +------------------------------- +-- Dark gruvbox luakit theme -- +------------------------------- local theme = {} diff --git a/luakit/.config/luakit/theme-light.lua b/luakit/.config/luakit/theme-light.lua index e3d763f..2fc2b68 100644 --- a/luakit/.config/luakit/theme-light.lua +++ b/luakit/.config/luakit/theme-light.lua @@ -1,6 +1,6 @@ --------------------------- --- Default luakit theme -- --------------------------- +-------------------------------- +-- Light gruvbox luakit theme -- +------------------------------- local theme = {} diff --git a/luakit/.config/luakit/theme.lua b/luakit/.config/luakit/theme.lua index 06d94fc..55277a8 100644 --- a/luakit/.config/luakit/theme.lua +++ b/luakit/.config/luakit/theme.lua @@ -36,7 +36,7 @@ theme.error_fg = theme.fg theme.error_bg = color.red -- Warning colours -theme.warning_fg = color.red +theme.warning_fg = color.orange theme.warning_bg = theme.bg -- Notification colours @@ -72,7 +72,7 @@ theme.sbar_bg = theme.bg -- Downloadbar specific theme.dbar_fg = theme.fg theme.dbar_bg = theme.bg -theme.dbar_error_fg = color.brightred +theme.dbar_error_fg = color.red -- Input bar specific theme.ibar_fg = theme.fg @@ -81,7 +81,7 @@ theme.ibar_bg = theme.bg -- Tab label theme.tab_fg = theme.fg theme.tab_bg = color.brightblack -theme.tab_hover_bg = color.orange +theme.tab_hover_bg = color.blue theme.tab_ntheme = color.white theme.selected_fg = theme.fg theme.selected_bg = theme.bg @@ -98,7 +98,7 @@ theme.notrust_fg = color.brightred -- General colour pairings theme.ok = {fg = theme.fg, bg = theme.bg} -theme.warn = {fg = color.brightred, bg = theme.bg} +theme.warn = {fg = color.orange, bg = theme.bg} theme.error = {fg = theme.fg, bg = color.red} return theme |