initial commit
This commit is contained in:
commit
23d4795228
99 changed files with 6691 additions and 0 deletions
1
config/zen/containers.json
Normal file
1
config/zen/containers.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":5,"lastUserContextId":5,"identities":[{"icon":"fingerprint","color":"blue","l10nId":"user-context-personal","public":true,"userContextId":1},{"icon":"briefcase","color":"orange","l10nId":"user-context-work","public":true,"userContextId":2},{"icon":"dollar","color":"green","l10nId":"user-context-banking","public":true,"userContextId":3},{"icon":"cart","color":"pink","l10nId":"user-context-shopping","public":true,"userContextId":4},{"public":false,"icon":"","color":"","name":"userContextIdInternal.thumbnail","accessKey":"","userContextId":5},{"userContextId":4294967295,"public":false,"icon":"","color":"","name":"userContextIdInternal.webextStorageLocal","accessKey":""}]}
|
||||
4
config/zen/extensions.txt
Normal file
4
config/zen/extensions.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{446900e4-71c2-419f-a6a7-df9c091e268b}: Bitwarden Password Manager
|
||||
addon@darkreader.org: Dark Reader
|
||||
jid1-D7momAzRw417Ag@jetpack: Wikiwand - knowledge, with context
|
||||
uBlock0@raymondhill.net: uBlock Origin
|
||||
1
config/zen/handlers.json
Normal file
1
config/zen/handlers.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"defaultHandlersVersion":{},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]},"image/jxl":{"action":3,"extensions":["jxl"]}},"schemes":{"mailto":{"stubEntry":true,"handlers":[null,{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]},"io.element.desktop":{"action":4},"element":{"action":4}},"isDownloadsImprovementsAlreadyMigrated":false}
|
||||
11
config/zen/user.js
Normal file
11
config/zen/user.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
user_pref("browser.urlbar.shortcuts.bookmarks", false);
|
||||
user_pref("browser.urlbar.shortcuts.history", false);
|
||||
user_pref("browser.urlbar.shortcuts.tabs", false);
|
||||
user_pref("zen.tabs.show-newtab-vertical", false);
|
||||
user_pref("zen.theme.border-radius", 0);
|
||||
user_pref("zen.theme.content-element-separation", 0);
|
||||
user_pref("zen.view.compact.enable-at-startup", false);
|
||||
user_pref("zen.view.compact.hide-toolbar", true);
|
||||
user_pref("zen.view.compact.toolbar-hide-after-hover.duration", 0);
|
||||
user_pref("zen.view.experimental-no-window-controls", true);
|
||||
user_pref("zen.workspaces.continue-where-left-off", true);
|
||||
50
config/zen/userChrome.css
Normal file
50
config/zen/userChrome.css
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
#vertical-pinned-tabs-container > .zen-workspace-tabs-section[hidden="true"] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
tabs {
|
||||
counter-reset: tab-counter;
|
||||
}
|
||||
|
||||
hbox.zen-essentials-container tab:not([zen-glance-tab="true"]),
|
||||
zen-workspace[active] tab:not([zen-glance-tab="true"]) {
|
||||
counter-increment: tab-counter;
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
||||
tab:not([zen-glance-tab="true"]) > .tab-stack > .tab-content::before {
|
||||
content: counter(tab-counter);
|
||||
font-weight: normal;
|
||||
font-size: 100%;
|
||||
color: inherit;
|
||||
z-index: -100;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
margin-left: 3px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
||||
tab:not([zen-glance-tab="true"]) > .tab-stack > .tab-content::before {
|
||||
content: counter(tab-counter) "";
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 1px;
|
||||
z-index: -100;
|
||||
font-weight: normal;
|
||||
font-size: 100%;
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
.zen-current-workspace-indicator {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#zen-media-controls-toolbar {
|
||||
display: none !important;
|
||||
}
|
||||
1
config/zen/zen-keyboard-shortcuts.json
Normal file
1
config/zen/zen-keyboard-shortcuts.json
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue