adding new tridactyl css
This commit is contained in:
parent
6eba4de3c9
commit
eabac7dcfa
|
@ -5,3 +5,4 @@
|
||||||
cpu="$(mpstat 1 1 | rg Average | awk '{print $3+$4+$5}' | sed 's/\(.*\)/\1%/g')"
|
cpu="$(mpstat 1 1 | rg Average | awk '{print $3+$4+$5}' | sed 's/\(.*\)/\1%/g')"
|
||||||
|
|
||||||
echo " $cpu | color=#ff9f43 font='VictorMono Nerd Font' size=11"
|
echo " $cpu | color=#ff9f43 font='VictorMono Nerd Font' size=11"
|
||||||
|
# echo " $cpu | color=#D75F00 font='VictorMono Nerd Font' size=11"
|
||||||
|
|
|
@ -8,3 +8,4 @@ mem=$(awk -v u=$used -v t=$total -v p=$percent 'BEGIN {printf "%sMi/%sMi %.1f% "
|
||||||
|
|
||||||
|
|
||||||
echo " $mem | color=#9aedfe font='VictorMono Nerd Font' size=11"
|
echo " $mem | color=#9aedfe font='VictorMono Nerd Font' size=11"
|
||||||
|
# echo " $mem | color=#007687 font='VictorMono Nerd Font' size=11"
|
||||||
|
|
|
@ -2,3 +2,4 @@
|
||||||
muunread="$(mu find flag:unread AND NOT flag:trashed AND NOT maildir:\"/outlook/Junk\" AND NOT maildir:\"/office/Junk Email\" AND NOT maildir:\"/outlook/Deleted\" AND NOT maildir:\"/office/Deleted Items\" | wc -l)"
|
muunread="$(mu find flag:unread AND NOT flag:trashed AND NOT maildir:\"/outlook/Junk\" AND NOT maildir:\"/office/Junk Email\" AND NOT maildir:\"/outlook/Deleted\" AND NOT maildir:\"/office/Deleted Items\" | wc -l)"
|
||||||
|
|
||||||
echo " $muunread | color=#f3f99d font='VictorMono Nerd Font' size=11"
|
echo " $muunread | color=#f3f99d font='VictorMono Nerd Font' size=11"
|
||||||
|
# echo " $muunread | color=#AF8700 font='VictorMono Nerd Font' size=11"
|
||||||
|
|
7
scripts/theme-switch.sh
Normal file
7
scripts/theme-switch.sh
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
clockTimeFormat1='<font color="#005F00">' ddd MMM d, h:mm AP
|
||||||
|
sed 's/005F00/5af78e'
|
||||||
|
sed 's/5af78e/005F00'
|
||||||
|
|
||||||
|
lookandfeeltool -a Acario
|
||||||
|
emacsclient -e '(load-theme \'doom-acario-light t)'
|
155
tridactyl/themes/acario.css
Normal file
155
tridactyl/themes/acario.css
Normal file
|
@ -0,0 +1,155 @@
|
||||||
|
:root { /* Acario-Light Tridactyl theme created by Chris Cochrun chris@tfcconnection.org */
|
||||||
|
--base00: #F5F5F9;
|
||||||
|
--base01: #E9E9F2;
|
||||||
|
--base02: #C0CCD0;
|
||||||
|
--base03: #9EA6B0;
|
||||||
|
--base04: #585C6C;
|
||||||
|
--base05: #0F1019;
|
||||||
|
--base06: #3A3A3A;
|
||||||
|
--base07: #303030;
|
||||||
|
--base08: #D70000;
|
||||||
|
--base09: #D75F00;
|
||||||
|
--base0A: #AF8700;
|
||||||
|
--base0B: #009B7C;
|
||||||
|
--base0C: #005F00;
|
||||||
|
--base0D: #007687;
|
||||||
|
--base0E: #AF005F;
|
||||||
|
--base0F: #1F55A0;
|
||||||
|
|
||||||
|
--tridactyl-fg: var(--base05);
|
||||||
|
--tridactyl-bg: var(--base00);
|
||||||
|
--tridactyl-url-fg: var(--base08);
|
||||||
|
--tridactyl-url-bg: var(--base00);
|
||||||
|
--tridactyl-highlight-box-bg: var(--base0D);
|
||||||
|
--tridactyl-highlight-box-fg: var(--base00);
|
||||||
|
|
||||||
|
/* Hint character tags */
|
||||||
|
--tridactyl-hintspan-fg: var(--base00) !important;
|
||||||
|
--tridactyl-hintspan-bg: var(--base0B) !important;
|
||||||
|
|
||||||
|
/* Element Highlights */
|
||||||
|
--tridactyl-hint-active-fg: none;
|
||||||
|
--tridactyl-hint-active-bg: none;
|
||||||
|
--tridactyl-hint-active-outline: none;
|
||||||
|
--tridactyl-hint-bg: none;
|
||||||
|
--tridactyl-hint-outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#command-line-holder { order: 1;
|
||||||
|
/*border: 2px solid var(--base0B);*/
|
||||||
|
color: var(--tridactyl-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#tridactyl-input { color: var(--tridactyl-fg);
|
||||||
|
width: 90%;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
background: var(--tridactyl-bg);
|
||||||
|
opacity: 0.85;
|
||||||
|
padding-left: unset;
|
||||||
|
padding: 0.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions table { font-size: 1.0rem;
|
||||||
|
font-weight: 500;
|
||||||
|
border-spacing: 0;
|
||||||
|
table-layout: fixed;
|
||||||
|
padding: 1rem;
|
||||||
|
padding-top: 0.2rem;
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions > div { max-height: calc(30 * var(--option-height));
|
||||||
|
min-height: calc(10 * var(--option-height));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* COMPLETIONS */
|
||||||
|
|
||||||
|
#completions { --option-height: 1.4em;
|
||||||
|
color: var(--tridactyl-fg);
|
||||||
|
background: var(--tridactyl-bg);
|
||||||
|
display: inline-block;
|
||||||
|
font-size: unset;
|
||||||
|
font-weight: 200;
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
border-top: unset;
|
||||||
|
order: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Olie doesn't know how CSS inheritance works */
|
||||||
|
#completions .HistoryCompletionSource { max-height: unset;
|
||||||
|
min-height: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions .HistoryCompletionSource table { width: 100%;
|
||||||
|
font-size: 9pt;
|
||||||
|
border-spacing: 0;
|
||||||
|
table-layout: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* redundancy 2: redundancy 2: more redundancy */
|
||||||
|
#completions .BmarkCompletionSource { max-height: unset;
|
||||||
|
min-height: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions table tr td.prefix,#completions table tr td.privatewindow,#completions table tr td.container,#completions table tr td.icon { display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions .BufferCompletionSource table { width: unset;
|
||||||
|
font-size: unset;
|
||||||
|
border-spacing: unset;
|
||||||
|
table-layout: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions table tr .title { width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions table tr { white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions .sectionHeader { background: unset;
|
||||||
|
font-weight: 200;
|
||||||
|
border-bottom: unset;
|
||||||
|
padding: 1rem !important;
|
||||||
|
padding-left: unset;
|
||||||
|
padding-bottom: 0.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cmdline_iframe { position: fixed !important;
|
||||||
|
bottom: unset;
|
||||||
|
top: 25% !important;
|
||||||
|
left: 10% !important;
|
||||||
|
z-index: 2147483647 !important;
|
||||||
|
width: 80% !important;
|
||||||
|
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px !important;
|
||||||
|
border-radius: 30px !important;
|
||||||
|
/*filter: blur(15px);*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.TridactylStatusIndicator { position: fixed !important;
|
||||||
|
bottom: 0 !important;
|
||||||
|
background: var(--tridactyl-bg) !important;
|
||||||
|
border: unset !important;
|
||||||
|
border: 1px var(--base0D) solid !important;
|
||||||
|
font-size: 7pt !important;
|
||||||
|
font-weight: 600 !important;
|
||||||
|
padding: 0.7ex !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions .focused { background: var(--base0B);
|
||||||
|
color: var(--base00);
|
||||||
|
}
|
||||||
|
|
||||||
|
#completions .focused .url { background: var(--base0B);
|
||||||
|
color: var(--base00);
|
||||||
|
}
|
||||||
|
/* #Ocean-normal { */
|
||||||
|
/* border-color: green !important; */
|
||||||
|
/* } */
|
||||||
|
|
||||||
|
/* #Ocean-insert { */
|
||||||
|
/* border-color: yellow !important; */
|
||||||
|
/* } */
|
|
@ -36,46 +36,45 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#command-line-holder { order: 1;
|
#command-line-holder { order: 1;
|
||||||
/*border: 2px solid var(--base0B);*/
|
/*border: 2px solid var(--base0B);*/
|
||||||
color: var(--tridactyl-bg);
|
color: var(--tridactyl-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
#tridactyl-input { padding: 1rem;
|
#tridactyl-input { color: var(--tridactyl-fg);
|
||||||
color: var(--tridactyl-fg);
|
width: 90%;
|
||||||
width: 90%;
|
font-size: 1.3rem;
|
||||||
font-size: 1.5rem;
|
line-height: 1.5;
|
||||||
line-height: 1.5;
|
background: var(--tridactyl-bg);
|
||||||
background: var(--tridactyl-bg);
|
opacity: 0.85;
|
||||||
opacity: 0.85;
|
padding-left: unset;
|
||||||
padding-left: unset;
|
padding: 0.4rem;
|
||||||
padding: 1rem;
|
}
|
||||||
|
|
||||||
|
#completions table { font-size: 1.0rem;
|
||||||
|
font-weight: 500;
|
||||||
|
border-spacing: 0;
|
||||||
|
table-layout: fixed;
|
||||||
|
padding: 1rem;
|
||||||
|
padding-top: 0.2rem;
|
||||||
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#completions table { font-size: 0.8rem;
|
#completions > div { max-height: calc(30 * var(--option-height));
|
||||||
font-weight: 200;
|
min-height: calc(10 * var(--option-height));
|
||||||
border-spacing: 0;
|
|
||||||
table-layout: fixed;
|
|
||||||
padding: 1rem;
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#completions > div { max-height: calc(20 * var(--option-height));
|
|
||||||
min-height: calc(10 * var(--option-height));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* COMPLETIONS */
|
/* COMPLETIONS */
|
||||||
|
|
||||||
#completions { --option-height: 1.4em;
|
#completions { --option-height: 1.4em;
|
||||||
color: var(--tridactyl-fg);
|
color: var(--tridactyl-fg);
|
||||||
background: var(--tridactyl-bg);
|
background: var(--tridactyl-bg);
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: unset;
|
font-size: unset;
|
||||||
font-weight: 200;
|
font-weight: 600 !important;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-top: unset;
|
border-top: unset;
|
||||||
order: 2;
|
order: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Olie doesn't know how CSS inheritance works */
|
/* Olie doesn't know how CSS inheritance works */
|
||||||
|
@ -137,7 +136,7 @@
|
||||||
border: 1px var(--base0D) solid !important;
|
border: 1px var(--base0D) solid !important;
|
||||||
font-size: 7pt !important;
|
font-size: 7pt !important;
|
||||||
/*font-weight: 200 !important;*/
|
/*font-weight: 200 !important;*/
|
||||||
padding: 0.1ex !important;
|
padding: 0.7ex !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#completions .focused { background: var(--base0B);
|
#completions .focused { background: var(--base0B);
|
||||||
|
|
|
@ -5,7 +5,7 @@ set update.nag true
|
||||||
set update.nagwait 7
|
set update.nagwait 7
|
||||||
set update.lastnaggedversion 1.14.0
|
set update.lastnaggedversion 1.14.0
|
||||||
set update.checkintervalsecs 86400
|
set update.checkintervalsecs 86400
|
||||||
set theme snazzy
|
set theme acario
|
||||||
set searchurls.gh https://github.com/search?utf8=✓&q=
|
set searchurls.gh https://github.com/search?utf8=✓&q=
|
||||||
set searchurls.y https://www.yewtu.be/search?q=
|
set searchurls.y https://www.yewtu.be/search?q=
|
||||||
set searchurls.aw https://wiki.archlinux.org/index.php?search=
|
set searchurls.aw https://wiki.archlinux.org/index.php?search=
|
||||||
|
|
Loading…
Reference in a new issue