2024-01-19 03:06:52 +05:30
|
|
|
{ config, pkgs, userSettings, ... }:
|
2023-09-28 06:47:55 +05:30
|
|
|
|
|
|
|
{
|
2023-11-04 06:22:05 +05:30
|
|
|
|
2023-09-30 08:44:00 +05:30
|
|
|
home.packages = [ pkgs.qutebrowser
|
|
|
|
(pkgs.callPackage ./qute-containers.nix { dmenuCmd = "fuzzel -d"; })
|
|
|
|
];
|
2023-09-28 06:47:55 +05:30
|
|
|
home.sessionVariables = { DEFAULT_BROWSER = "${pkgs.qutebrowser}/bin/qutebrowser"; };
|
2023-10-01 07:54:38 +05:30
|
|
|
xdg.mimeApps.defaultApplications = {
|
|
|
|
"text/html" = "org.qutebrowser.qutebrowser.desktop";
|
|
|
|
"x-scheme-handler/http" = "org.qutebrowser.qutebrowser.desktop";
|
|
|
|
"x-scheme-handler/https" = "org.qutebrowser.qutebrowser.desktop";
|
|
|
|
"x-scheme-handler/about" = "org.qutebrowser.qutebrowser.desktop";
|
|
|
|
"x-scheme-handler/unknown" = "org.qutebrowser.qutebrowser.desktop";
|
|
|
|
};
|
2023-09-30 08:44:00 +05:30
|
|
|
home.file.".config/qutebrowser/userscripts/container-open".source = "${(pkgs.callPackage ./qute-containers.nix { dmenuCmd = "fuzzel -d"; })}/bin/container-open";
|
|
|
|
home.file.".config/qutebrowser/userscripts/containers_config".source = "${(pkgs.callPackage ./qute-containers.nix { dmenuCmd = "fuzzel -d"; })}/bin/containers_config";
|
2023-09-28 06:47:55 +05:30
|
|
|
|
|
|
|
programs.qutebrowser.enable = true;
|
|
|
|
programs.qutebrowser.extraConfig = ''
|
|
|
|
config.load_autoconfig(False)
|
|
|
|
|
|
|
|
base00 = "#''+config.lib.stylix.colors.base00+''"
|
|
|
|
base01 = "#''+config.lib.stylix.colors.base01+''"
|
|
|
|
base02 = "#''+config.lib.stylix.colors.base02+''"
|
|
|
|
base03 = "#''+config.lib.stylix.colors.base03+''"
|
|
|
|
base04 = "#''+config.lib.stylix.colors.base04+''"
|
|
|
|
base05 = "#''+config.lib.stylix.colors.base05+''"
|
|
|
|
base06 = "#''+config.lib.stylix.colors.base06+''"
|
|
|
|
base07 = "#''+config.lib.stylix.colors.base07+''"
|
|
|
|
base08 = "#''+config.lib.stylix.colors.base08+''"
|
|
|
|
base09 = "#''+config.lib.stylix.colors.base09+''"
|
|
|
|
base0A = "#''+config.lib.stylix.colors.base0A+''"
|
|
|
|
base0B = "#''+config.lib.stylix.colors.base0B+''"
|
|
|
|
base0C = "#''+config.lib.stylix.colors.base0C+''"
|
|
|
|
base0D = "#''+config.lib.stylix.colors.base0D+''"
|
|
|
|
base0E = "#''+config.lib.stylix.colors.base0E+''"
|
|
|
|
base0F = "#''+config.lib.stylix.colors.base0F+''"
|
|
|
|
|
|
|
|
config.set('content.cookies.accept', 'no-3rdparty', 'chrome-devtools://*')
|
|
|
|
config.set('content.cookies.accept', 'no-3rdparty', 'devtools://*')
|
|
|
|
|
|
|
|
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:90.0) Gecko/20100101 Firefox/90.0', 'https://accounts.google.com/*')
|
|
|
|
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*')
|
|
|
|
|
|
|
|
config.set('content.images', True, 'chrome-devtools://*')
|
|
|
|
config.set('content.images', True, 'devtools://*')
|
|
|
|
|
|
|
|
config.set('content.javascript.enabled', True, 'chrome-devtools://*')
|
|
|
|
config.set('content.javascript.enabled', True, 'devtools://*')
|
|
|
|
config.set('content.javascript.enabled', True, 'chrome://*/*')
|
|
|
|
config.set('content.javascript.enabled', True, 'qute://*/*')
|
2023-11-29 04:32:17 +05:30
|
|
|
|
|
|
|
config.set('content.javascript.enabled', True, 'qute://*/*')
|
|
|
|
|
2023-09-28 06:47:55 +05:30
|
|
|
c.tabs.favicons.scale = 1.0
|
|
|
|
c.tabs.last_close = 'close'
|
|
|
|
c.tabs.position = 'left'
|
|
|
|
c.tabs.width = '3%'
|
|
|
|
c.window.transparent = True
|
|
|
|
c.colors.webpage.darkmode.enabled = True
|
2023-11-29 04:32:17 +05:30
|
|
|
c.colors.webpage.darkmode.policy.images = 'never'
|
2023-09-28 06:47:55 +05:30
|
|
|
|
|
|
|
c.url.default_page = str(config.configdir)+'/qute-home.html'
|
|
|
|
c.url.start_pages = str(config.configdir)+'/qute-home.html'
|
|
|
|
|
|
|
|
c.url.searchengines = {'DEFAULT': 'https://startpage.com/do/search?query={}',
|
2024-02-11 20:54:05 +05:30
|
|
|
'd' : 'https://duckduckgo.com/?q={}&ia=web',
|
2023-10-08 02:36:14 +05:30
|
|
|
'az' : 'https://www.amazon.com/s?k={}',
|
2023-09-28 06:47:55 +05:30
|
|
|
'aw' : 'https://wiki.archlinux.org/index.php?search={}&title=Special%3ASearch&wprov=acrw1',
|
2023-10-08 02:36:14 +05:30
|
|
|
'nw' : 'https://nixos.wiki/index.php?search={}&go=Go',
|
|
|
|
'mn' : 'https://mynixos.com/search?q={}',
|
|
|
|
'sb' : 'https://www.serebii.net/search.shtml?q={}&sa=Search',
|
2024-02-11 20:54:05 +05:30
|
|
|
'bp' : 'https://bulbapedia.bulbagarden.net/wiki/index.php?title=Special%3ASearch&search={}&go=Go',
|
|
|
|
'yt' : 'https://www.youtube.com/results?search_query={}',
|
|
|
|
'od' : 'https://odysee.com/$/search?q={}',
|
2024-02-19 08:47:02 +05:30
|
|
|
'gd' : 'https://drive.google.com/drive/search?q={}',
|
|
|
|
'gh' : 'https://github.com/search?q={}&type=repositories',
|
|
|
|
'gl' : 'https://gitlab.com/search?search={}&nav_source=navbar',
|
|
|
|
'np' : 'https://github.com/search?q=repo%3ANixOS%2Fnixpkgs%20{}&type=code',
|
|
|
|
'wk' : 'https://en.wikipedia.org/w/index.php?fulltext=1&search={}&title=Special%3ASearch&ns0=1'
|
2023-10-08 02:36:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
config.set('completion.open_categories',["searchengines","quickmarks","bookmarks"])
|
2023-09-28 06:47:55 +05:30
|
|
|
|
2023-11-05 00:30:41 +05:30
|
|
|
config.set('downloads.location.directory', '~/Downloads')
|
|
|
|
|
|
|
|
config.set('fileselect.handler', 'external')
|
|
|
|
config.set('fileselect.single_file.command', ['kitty','-e','ranger','--choosefile={}'])
|
|
|
|
config.set('fileselect.multiple_files.command', ['kitty','-e','ranger','--choosefiles={}'])
|
|
|
|
config.set('fileselect.folder.command', ['kitty','-e','ranger','--choosedir={}'])
|
|
|
|
|
2024-02-22 19:37:01 +05:30
|
|
|
# bindings from doom emacs
|
2024-02-19 06:28:47 +05:30
|
|
|
config.bind('<Alt-x>', 'cmd-set-text :')
|
2024-02-22 19:37:01 +05:30
|
|
|
config.bind('<Ctrl-p>', 'completion-item-focus prev', mode='command')
|
|
|
|
config.bind('<Ctrl-n>', 'completion-item-focus next', mode='command')
|
|
|
|
|
|
|
|
# bindings from vimium
|
2023-09-28 06:47:55 +05:30
|
|
|
config.bind('t', 'open -t')
|
|
|
|
config.bind('x', 'tab-close')
|
|
|
|
config.bind('yf', 'hint links yank')
|
2024-02-22 19:37:01 +05:30
|
|
|
|
|
|
|
# spawn external programs
|
2023-10-28 22:53:05 +05:30
|
|
|
config.bind(',m', 'hint links spawn mpv {hint-url}')
|
2023-09-30 08:44:00 +05:30
|
|
|
config.bind(',co', 'spawn container-open')
|
|
|
|
config.bind(',cf', 'hint links userscript container-open')
|
2024-02-22 19:37:01 +05:30
|
|
|
|
|
|
|
# TODO stylix user CSS
|
|
|
|
# current_stylesheet_directory = '~/.config/qutebrowser/themes/'
|
|
|
|
# current_stylesheet = base16_theme+'-all-sites.css'
|
|
|
|
# current_stylesheet_path = current_stylesheet_directory + current_stylesheet
|
|
|
|
# config.set('content.user_stylesheets', current_stylesheet_path)
|
2023-09-28 06:47:55 +05:30
|
|
|
#config.bind(',s', 'set content.user_stylesheets \'\' ')
|
|
|
|
#config.bind(',S', 'set content.user_stylesheets '+current_stylesheet_path)
|
|
|
|
|
2024-02-22 19:37:01 +05:30
|
|
|
# theming
|
2023-09-28 06:47:55 +05:30
|
|
|
c.colors.completion.fg = base05
|
|
|
|
c.colors.completion.odd.bg = base01
|
|
|
|
c.colors.completion.even.bg = base00
|
|
|
|
c.colors.completion.category.fg = base0A
|
|
|
|
c.colors.completion.category.bg = base00
|
|
|
|
c.colors.completion.category.border.top = base00
|
|
|
|
c.colors.completion.category.border.bottom = base00
|
|
|
|
c.colors.completion.item.selected.fg = base05
|
|
|
|
c.colors.completion.item.selected.bg = base02
|
|
|
|
c.colors.completion.item.selected.border.top = base02
|
|
|
|
c.colors.completion.item.selected.border.bottom = base02
|
|
|
|
c.colors.completion.item.selected.match.fg = base0B
|
|
|
|
c.colors.completion.match.fg = base0B
|
|
|
|
c.colors.completion.scrollbar.fg = base05
|
|
|
|
c.colors.completion.scrollbar.bg = base00
|
|
|
|
c.colors.contextmenu.disabled.bg = base01
|
|
|
|
c.colors.contextmenu.disabled.fg = base04
|
|
|
|
c.colors.contextmenu.menu.bg = base00
|
|
|
|
c.colors.contextmenu.menu.fg = base05
|
|
|
|
c.colors.contextmenu.selected.bg = base02
|
|
|
|
c.colors.contextmenu.selected.fg = base05
|
|
|
|
c.colors.downloads.bar.bg = base00
|
|
|
|
c.colors.downloads.start.fg = base00
|
|
|
|
c.colors.downloads.start.bg = base0D
|
|
|
|
c.colors.downloads.stop.fg = base00
|
|
|
|
c.colors.downloads.stop.bg = base0C
|
|
|
|
c.colors.downloads.error.fg = base08
|
|
|
|
c.colors.hints.fg = base00
|
|
|
|
c.colors.hints.bg = base0A
|
|
|
|
c.colors.hints.match.fg = base05
|
|
|
|
c.colors.keyhint.fg = base05
|
|
|
|
c.colors.keyhint.suffix.fg = base05
|
|
|
|
c.colors.keyhint.bg = base00
|
|
|
|
c.colors.messages.error.fg = base00
|
|
|
|
c.colors.messages.error.bg = base08
|
|
|
|
c.colors.messages.error.border = base08
|
|
|
|
c.colors.messages.warning.fg = base00
|
|
|
|
c.colors.messages.warning.bg = base0E
|
|
|
|
c.colors.messages.warning.border = base0E
|
|
|
|
c.colors.messages.info.fg = base05
|
|
|
|
c.colors.messages.info.bg = base00
|
|
|
|
c.colors.messages.info.border = base00
|
|
|
|
c.colors.prompts.fg = base05
|
|
|
|
c.colors.prompts.border = base00
|
|
|
|
c.colors.prompts.bg = base00
|
|
|
|
c.colors.prompts.selected.bg = base02
|
|
|
|
c.colors.prompts.selected.fg = base05
|
|
|
|
c.colors.statusbar.normal.fg = base0B
|
|
|
|
c.colors.statusbar.normal.bg = base00
|
|
|
|
c.colors.statusbar.insert.fg = base00
|
|
|
|
c.colors.statusbar.insert.bg = base0D
|
|
|
|
c.colors.statusbar.passthrough.fg = base00
|
|
|
|
c.colors.statusbar.passthrough.bg = base0C
|
|
|
|
c.colors.statusbar.private.fg = base00
|
|
|
|
c.colors.statusbar.private.bg = base01
|
|
|
|
c.colors.statusbar.command.fg = base05
|
|
|
|
c.colors.statusbar.command.bg = base00
|
|
|
|
c.colors.statusbar.command.private.fg = base05
|
|
|
|
c.colors.statusbar.command.private.bg = base00
|
|
|
|
c.colors.statusbar.caret.fg = base00
|
|
|
|
c.colors.statusbar.caret.bg = base0E
|
|
|
|
c.colors.statusbar.caret.selection.fg = base00
|
|
|
|
c.colors.statusbar.caret.selection.bg = base0D
|
|
|
|
c.colors.statusbar.progress.bg = base0D
|
|
|
|
c.colors.statusbar.url.fg = base05
|
|
|
|
c.colors.statusbar.url.error.fg = base08
|
|
|
|
c.colors.statusbar.url.hover.fg = base05
|
|
|
|
c.colors.statusbar.url.success.http.fg = base0C
|
|
|
|
c.colors.statusbar.url.success.https.fg = base0B
|
|
|
|
c.colors.statusbar.url.warn.fg = base0E
|
|
|
|
c.colors.tabs.bar.bg = base00
|
|
|
|
c.colors.tabs.indicator.start = base0D
|
|
|
|
c.colors.tabs.indicator.stop = base0C
|
|
|
|
c.colors.tabs.indicator.error = base08
|
|
|
|
c.colors.tabs.odd.fg = base05
|
|
|
|
c.colors.tabs.odd.bg = base01
|
|
|
|
c.colors.tabs.even.fg = base05
|
|
|
|
c.colors.tabs.even.bg = base00
|
|
|
|
c.colors.tabs.pinned.even.bg = base0C
|
|
|
|
c.colors.tabs.pinned.even.fg = base07
|
|
|
|
c.colors.tabs.pinned.odd.bg = base0B
|
|
|
|
c.colors.tabs.pinned.odd.fg = base07
|
|
|
|
c.colors.tabs.pinned.selected.even.bg = base02
|
|
|
|
c.colors.tabs.pinned.selected.even.fg = base05
|
|
|
|
c.colors.tabs.pinned.selected.odd.bg = base02
|
|
|
|
c.colors.tabs.pinned.selected.odd.fg = base05
|
|
|
|
c.colors.tabs.selected.odd.fg = base05
|
|
|
|
c.colors.tabs.selected.odd.bg = base02
|
|
|
|
c.colors.tabs.selected.even.fg = base05
|
|
|
|
c.colors.tabs.selected.even.bg = base02
|
|
|
|
c.colors.webpage.bg = base00
|
|
|
|
|
2024-01-19 03:06:52 +05:30
|
|
|
font = "''+userSettings.font+''"
|
2023-10-08 02:36:14 +05:30
|
|
|
|
|
|
|
c.fonts.default_family = font
|
|
|
|
c.fonts.default_size = '14pt'
|
|
|
|
|
|
|
|
c.fonts.web.family.standard = font
|
|
|
|
c.fonts.web.family.serif = font
|
|
|
|
c.fonts.web.family.sans_serif = font
|
|
|
|
c.fonts.web.family.fixed = font
|
|
|
|
c.fonts.web.family.fantasy = font
|
|
|
|
c.fonts.web.family.cursive = font
|
2023-09-28 06:47:55 +05:30
|
|
|
'';
|
2023-09-28 07:07:11 +05:30
|
|
|
|
|
|
|
home.file.".config/qutebrowser/qute-home.html".text = ''
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-28 07:07:11 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-28 07:07:11 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
2023-09-30 02:38:12 +05:30
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
2023-09-28 07:07:11 +05:30
|
|
|
|
2023-09-30 02:38:12 +05:30
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2023-09-28 07:07:11 +05:30
|
|
|
}
|
2023-09-30 02:38:12 +05:30
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2023-09-28 07:07:11 +05:30
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-28 07:07:11 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
2023-09-30 02:38:12 +05:30
|
|
|
|
2023-09-28 07:07:11 +05:30
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
2023-09-30 02:38:12 +05:30
|
|
|
line-height:10%
|
2023-09-28 07:07:11 +05:30
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
2023-09-30 02:38:12 +05:30
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
2023-09-28 07:07:11 +05:30
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Personal Profile</b></p>
|
2023-09-28 07:07:11 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
2023-09-30 02:38:12 +05:30
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
2023-09-28 07:07:11 +05:30
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
home.file.".config/qutebrowser/containers".text = ''
|
|
|
|
Teaching
|
|
|
|
Tech
|
|
|
|
Finances
|
|
|
|
Gaming
|
|
|
|
Gamedev
|
2023-10-01 20:44:45 +05:30
|
|
|
Bard
|
2023-09-30 08:44:00 +05:30
|
|
|
'';
|
|
|
|
|
|
|
|
# TODO make this final section more efficient...
|
2023-10-01 20:44:45 +05:30
|
|
|
|
|
|
|
home.file.".browser/Teaching/config/qute-home.html".text = ''
|
2023-09-30 08:44:00 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-30 08:44:00 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
|
|
|
|
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
|
|
|
line-height:10%
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Teaching Profile</b></p>
|
2023-09-30 08:44:00 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2023-10-01 20:44:45 +05:30
|
|
|
home.file.".browser/Tech/config/qute-home.html".text = ''
|
2023-09-30 08:44:00 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-30 08:44:00 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
|
|
|
|
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
|
|
|
line-height:10%
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Tech Profile</b></p>
|
2023-09-30 08:44:00 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2023-10-01 20:44:45 +05:30
|
|
|
home.file.".browser/Finances/config/qute-home.html".text = ''
|
2023-09-30 08:44:00 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-30 08:44:00 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
|
|
|
|
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
|
|
|
line-height:10%
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Finances Profile</b></p>
|
2023-09-30 08:44:00 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2023-10-01 20:44:45 +05:30
|
|
|
home.file.".browser/Gamedev/config/qute-home.html".text = ''
|
2023-09-30 08:44:00 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-30 08:44:00 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
|
|
|
|
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
|
|
|
line-height:10%
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Gamedev Profile</b></p>
|
2023-09-30 08:44:00 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2023-10-01 20:44:45 +05:30
|
|
|
home.file.".browser/Gaming/config/qute-home.html".text = ''
|
2023-09-30 08:44:00 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-30 08:44:00 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
|
|
|
|
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
|
|
|
line-height:10%
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Gaming Profile</b></p>
|
2023-09-30 08:44:00 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2023-10-01 20:44:45 +05:30
|
|
|
home.file.".browser/Bard/config/qute-home.html".text = ''
|
2023-09-30 08:44:00 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2023-11-18 09:08:53 +05:30
|
|
|
<title>My Local Dashboard Awesome Homepage</title>
|
2023-09-30 08:44:00 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
/*body*/
|
|
|
|
body {
|
|
|
|
background-color: #''+config.lib.stylix.colors.base00+''
|
|
|
|
|
|
|
|
}
|
|
|
|
/*paragraphs*/
|
|
|
|
p {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:24px;
|
|
|
|
text-align:center;
|
|
|
|
color: #''+config.lib.stylix.colors.base08+'';
|
|
|
|
|
|
|
|
line-height: 1.35;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.open {
|
|
|
|
color: #''+config.lib.stylix.colors.base09+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.quickmarks {
|
|
|
|
color: #''+config.lib.stylix.colors.base0A+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history {
|
|
|
|
color: #''+config.lib.stylix.colors.base0B+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.newtab {
|
|
|
|
color: #''+config.lib.stylix.colors.base0C+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #''+config.lib.stylix.colors.base0D+'';
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*xmp tag style for ascii art*/
|
|
|
|
xmp {
|
2024-01-19 03:06:52 +05:30
|
|
|
font-family:''+userSettings.font+'';
|
2023-09-30 08:44:00 +05:30
|
|
|
|
|
|
|
font-size:22px;
|
|
|
|
color: #''+config.lib.stylix.colors.base01+''
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*div*/
|
|
|
|
div {
|
|
|
|
margin:auto;
|
|
|
|
width:50%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
/*class made for ascii art icon*/
|
|
|
|
.icon {
|
|
|
|
line-height:10%
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!--start with cool qutebrowser ascii art-->
|
|
|
|
<div class="icon">
|
|
|
|
<xmp> ..--------.. </xmp>
|
|
|
|
<xmp> .`` "'. </xmp>
|
|
|
|
<xmp> .` _.---.. /--| '. </xmp>
|
|
|
|
<xmp> /`` || | </xmp>
|
|
|
|
<xmp> /` /--| || | </xmp>
|
|
|
|
<xmp>/ / | || `/----\, </xmp>
|
|
|
|
<xmp>| | | .-`.-/- __. \ </xmp>
|
|
|
|
<xmp>| \ `-.`` ..-` \ |</xmp>
|
|
|
|
<xmp>\ ```` ~.^` | | |</xmp>
|
|
|
|
<xmp> \.____.-``'|| | / / </xmp>
|
|
|
|
<xmp> | || |_.- / </xmp>
|
|
|
|
<xmp> | || / </xmp>
|
|
|
|
<xmp> . |_-` `------~``. </xmp>
|
|
|
|
<xmp> `.. ..` </xmp>
|
|
|
|
<xmp> ``--______-'` </xmp>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!--qutebrowser title-->
|
|
|
|
<p style="color:#''+config.lib.stylix.colors.base01+''">Welcome to Qutebrowser</p>
|
|
|
|
<br>
|
2023-10-01 20:44:45 +05:30
|
|
|
<p><b>Bard Profile</b></p>
|
2023-09-30 08:44:00 +05:30
|
|
|
<br>
|
|
|
|
<!--basic keyboard commands-->
|
|
|
|
<div>
|
|
|
|
<p class="open"> [o] [Search] </p>
|
|
|
|
<p class="quickmarks"> [b] [Quickmarks] </p>
|
|
|
|
<p class="history"> [S h] [History] </p>
|
|
|
|
<p class="newtab"> [t] [New tab] </p>
|
|
|
|
<p class="close"> [x] [Close tab] </p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
2023-10-01 20:44:45 +05:30
|
|
|
|
2023-09-28 06:47:55 +05:30
|
|
|
}
|