updates qutebrowser, nvim markdown, yt-dlp
This commit is contained in:
+1
-1
@@ -76,7 +76,7 @@ sudo systemctl enable --now coolercontrold.service
|
|||||||
sudo systemctl edit coolercontrold.service # set log level to WARN
|
sudo systemctl edit coolercontrold.service # set log level to WARN
|
||||||
|
|
||||||
# video streaming
|
# video streaming
|
||||||
yay -S vlc protobuf
|
yay -S vlc protobuf yt-dlp
|
||||||
yay -S castnow
|
yay -S castnow
|
||||||
|
|
||||||
# div applications
|
# div applications
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
vim.o.colorcolumn = "100"
|
vim.o.colorcolumn = ""
|
||||||
|
vim.o.textwidth = 80
|
||||||
|
vim.o.wrap = true
|
||||||
vim.opt.tabstop = 2
|
vim.opt.tabstop = 2
|
||||||
vim.opt.shiftwidth = 2
|
vim.opt.shiftwidth = 2
|
||||||
vim.opt.softtabstop = 2
|
vim.opt.softtabstop = 2
|
||||||
|
|||||||
@@ -46,11 +46,19 @@ settings:
|
|||||||
global: true
|
global: true
|
||||||
content.javascript.clipboard:
|
content.javascript.clipboard:
|
||||||
global: access-paste
|
global: access-paste
|
||||||
|
content.media.audio_capture:
|
||||||
|
https://meet.google.com: true
|
||||||
|
content.media.audio_video_capture:
|
||||||
|
https://meet.google.com: true
|
||||||
|
content.media.video_capture:
|
||||||
|
https://meet.google.com: true
|
||||||
content.register_protocol_handler:
|
content.register_protocol_handler:
|
||||||
https://calendar.google.com?cid=%25s: true
|
https://calendar.google.com?cid=%25s: true
|
||||||
|
downloads.location.directory:
|
||||||
|
global: /home/hjalmarlucius/Downloads
|
||||||
session.default_name:
|
session.default_name:
|
||||||
global: hb
|
global: hb
|
||||||
tabs.mode_on_change:
|
tabs.mode_on_change:
|
||||||
global: restore
|
global: restore
|
||||||
tabs.position:
|
tabs.position:
|
||||||
global: left
|
global: top
|
||||||
|
|||||||
@@ -2,11 +2,16 @@ from typing import TYPE_CHECKING
|
|||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
config: Any = None
|
config: Any = None
|
||||||
c: Any = None
|
c: Any = None
|
||||||
|
|
||||||
config.load_autoconfig(True)
|
config.load_autoconfig(True)
|
||||||
config.set("content.register_protocol_handler", True, "https://mail.google.com?extsrc=mailto&url=%25s")
|
config.set(
|
||||||
|
"content.register_protocol_handler",
|
||||||
|
True,
|
||||||
|
"https://mail.google.com?extsrc=mailto&url=%25s",
|
||||||
|
)
|
||||||
|
|
||||||
config.bind("<", "tab-move -")
|
config.bind("<", "tab-move -")
|
||||||
config.bind("<Ctrl+Shift+Tab>", "tab-prev")
|
config.bind("<Ctrl+Shift+Tab>", "tab-prev")
|
||||||
@@ -30,6 +35,8 @@ config.bind("to", "tab-focus")
|
|||||||
config.bind("ø", "cmd-set-text :")
|
config.bind("ø", "cmd-set-text :")
|
||||||
config.bind("m", 'cmd-set-text :quickmark-add {url:pretty} "', mode="normal")
|
config.bind("m", 'cmd-set-text :quickmark-add {url:pretty} "', mode="normal")
|
||||||
config.bind("D", "tab-close")
|
config.bind("D", "tab-close")
|
||||||
|
config.bind(",m", "hint links spawn mpv {hint-url}", mode="normal")
|
||||||
|
config.bind(",M", "spawn mpv {url}", mode="normal")
|
||||||
config.unbind("co") # close all tabs except this one
|
config.unbind("co") # close all tabs except this one
|
||||||
config.unbind("<Ctrl+v>") # delete tab
|
config.unbind("<Ctrl+v>") # delete tab
|
||||||
config.unbind("d", mode="normal") # delete tab
|
config.unbind("d", mode="normal") # delete tab
|
||||||
@@ -43,7 +50,6 @@ c.auto_save.session = True
|
|||||||
c.completion.open_categories = [
|
c.completion.open_categories = [
|
||||||
"searchengines",
|
"searchengines",
|
||||||
"quickmarks",
|
"quickmarks",
|
||||||
"bookmarks",
|
|
||||||
"history",
|
"history",
|
||||||
"filesystem",
|
"filesystem",
|
||||||
]
|
]
|
||||||
@@ -54,6 +60,7 @@ c.content.geolocation = False
|
|||||||
c.content.cache.size = 52428800
|
c.content.cache.size = 52428800
|
||||||
c.content.notifications.enabled = False
|
c.content.notifications.enabled = False
|
||||||
c.content.tls.certificate_errors = "ask-block-thirdparty"
|
c.content.tls.certificate_errors = "ask-block-thirdparty"
|
||||||
|
c.downloads.position = "bottom"
|
||||||
c.editor.command = [
|
c.editor.command = [
|
||||||
"urxvt",
|
"urxvt",
|
||||||
"-title",
|
"-title",
|
||||||
|
|||||||
Reference in New Issue
Block a user