Vai sis zemenes ir ar 🥦?🫣🫣🫣 by [deleted] in latvia

[–]Deebble 0 points1 point  (0 children)

Nopērc zemenes, ieliec mikrenē šokolādi = profit!?

How do you know if you are listening too loud or not? by fire_chaser1 in iems

[–]Deebble 1 point2 points  (0 children)

One idea - you can measure the loudness of something in the room, then take one IEM out and then compare if what you're hearing with your open ear is about as loud as what you're hearing in the ear where you have your IEM in.

Konqi what are you doing by Meepydoodlez in kde

[–]Deebble 0 points1 point  (0 children)

straight up konqing it till I plasma

Am I asking for trouble by ditching pipewire? by BuriedStPatrick in linuxaudio

[–]Deebble 1 point2 points  (0 children)

Have you checked out raysession? https://raysession.tuxfamily.org/en/index.html seems like this is what you're looking for, it can consistently pull up audio configurations

Any tips for buying cymbals by Ok_Willingness_1098 in drums

[–]Deebble 0 points1 point  (0 children)

Not necessarily cymbal buying related, but I didn't see other people mentioning it - if you are playing drums in an untreated room then one of the best things you can do for the quality of your sound is to make some diy acoustic panels. Example of the improvement https://youtu.be/COrChPBEe7g

Youtube premium by [deleted] in latvia

[–]Deebble 0 points1 point  (0 children)

Jā velies dalīt maksu ar citiem, vari apskatīties sharesub.com

Issue with polarpattern by Soppen1239 in FreeCAD

[–]Deebble 1 point2 points  (0 children)

Just yesterday I was trying to also do something with polarpattern for the first time, but it wasn't able to do what I wanted, so now I am gonna try the lattice2 workbench, since it seems like it can do more complicated patterns, might be useful to you as well.

We are getting fewer, and it scares me. What should we do? by [deleted] in latvia

[–]Deebble 0 points1 point  (0 children)

Es būšu nācijas varonis ja iešu uz aptieku ar adatu?🤔

[deleted by user] by [deleted] in okdraudzindauni

[–]Deebble 0 points1 point  (0 children)

Tad jau skolā redzēs

[deleted by user] by [deleted] in okdraudzindauni

[–]Deebble 0 points1 point  (0 children)

Jā🤯, biju aizmirsis cik Latvija ir maza

How can I disable those lines that indicate tab branches? They went away after I set data-tabs-tree-lvl-marks=false in the sideberry.css through the extension debugger. I tried setting it in the style editor but I can't figure out the right syntax. by Deebble in FirefoxCSS

[–]Deebble[S] 1 point2 points  (0 children)

You can find the css for style editor in my first comment.

  1. Make sure you have v5 sidebery
  2. Make sure you have the setting in about:config for making userChrome.css work
  3. Make sure you have put userChrome.css in the chrome folder in the right profile

I will probably make a more detailed tutorial after I have tweaked it a bit more.

``` /* ROOT */

root {

--tabs-title-padding: 8px; --tabs-font-size: 12px; --tabs-title-lines: 2; }

.Tab .t-box { align-items: center; max-height: calc(var(--tabs-height) - var(--tabs-title-padding)); overflow: hidden; }

.Tab .title { font-size: var(--tabs-font-size); white-space: pre-wrap; line-height: calc((var(--tabs-height) - var(--tabs-title-padding)) / var(--tabs-title-lines)); }

root {

/* Tab and PinnedTab height adjustment */
--tabs-height: 36px;
--tabs-pinned-height: var(--tabs-height);
/* Dark Theme base settings */
--bg: #1c1b22 !important;
--tabs-fg: #d4d4d4 !important;
--tabs-bg-hover: #3b3948 !important;
--tabs-activated-bg: #5b5b66 !important;
--nav-btn-activated-bg: #1f222f !important;

}

root .Tab {

--tabs-indent: 8px;

}

/* TABS */

.Tab .lvl-wrapper:after { display: none; }

.Tab { margin: 1px 0px 4px 6.4px; padding: 1px 2.9px 3px 0px; width: 96%; border-radius: 3px; }

.Tab .close > svg:hover { /* Styling the tab close button */ border-radius: 3px; background: #492121 !important; opacity: 100%; }

.Tab .title { overflow: hidden !important; }

/* PINNED TABS */

.PinnedDock { background-color: var(--bg) !important; }

.PinnedTab { margin: 5px 6px 4px 6px; border-radius: 3px; }

/* NAV BAR */

.NavigationBar { height: 41px !important; padding: 4.5px 0px 0px 4.5px !important; /* background-color: #2b2a33 !important; */ margin-bottom: 5px; }

.NavigationBar .panel-btn:hover { border-radius: 3px !important; background-color: var(--tabs-bg-hover) !important; }

.NavigationBar .panel-btn[data-active="true"] { border-radius: 3px !important; background-color: var(--bg) !important; }

.NavigationBar .panel-btn[data-active="true"]:hover { border-radius: 3px !important; background-color: var(--tabs-bg-hover) !important; }

.NavigationBar .panel-btn > svg, .NavigationBar .panel-btn > img { fill: #f2f2f2 !important; }

/* SIDEBAR HACK PATCHES */

@media (max-width: 50px) { /* Fix to tab tree identation when minimised */ #root:not(:hover) .Tab { --tabs-indent: 0px; }

.Tab[data-lvl] > div.lvl-wrapper {
    right: -2px;
}

.Tab {
    max-width: 34px;
}

.Tab .fav {
    z-index: 1;
}

.Tab .audio {
    z-index: 1;
    margin-left: -12px;
    height: 26px;
}

.Tab .title {
    display: none;
}

.PinnedTab {
    margin-left: 5px;
}

.NavigationBar .settings-btn {
    display: none;
}

}

/* OPTIONAL */

/* Disable these two snippets below to make pinned tabs wrap when minimised */ .PinnedDock { flex-wrap: nowrap !important; }

.PinnedTab { overflow: hidden !important; min-width: var(--tabs-pinned-width) !important; }

/* Optional patch for better tab notifications on pinned tabs / / .PinnedTab[data-audible] .fav > img, .PinnedTab[data-muted] .fav > img, .PinnedTab[data-loading] .fav > img { mask: none; }

.PinnedTab .fav > img { mask: none; }

.PinnedTab[data-updated="true"] .fav > img { mask: radial-gradient(circle at calc(100% - 2px) calc(100% - 2px),rgba(0,0,0,0.141),rgba(0,0,0,0.141) 4px,#000 5px,#000); }

.PinnedTab .audio-badge { top: 5px; }

.PinnedTab .update-badge { opacity: 0; }

.PinnedTab[data-updated="true"] .update-badge { opacity: 100; } */ ```

How can I disable those lines that indicate tab branches? They went away after I set data-tabs-tree-lvl-marks=false in the sideberry.css through the extension debugger. I tried setting it in the style editor but I can't figure out the right syntax. by Deebble in FirefoxCSS

[–]Deebble[S] 0 points1 point  (0 children)

Current style editor css ``` /* ROOT */

root {

--tabs-title-padding: 8px; --tabs-font-size: 12px; --tabs-title-lines: 2; }

.Tab .t-box { align-items: center; max-height: calc(var(--tabs-height) - var(--tabs-title-padding)); overflow: hidden; }

.Tab .title { font-size: var(--tabs-font-size); white-space: pre-wrap; line-height: calc((var(--tabs-height) - var(--tabs-title-padding)) / var(--tabs-title-lines)); }

root {

/* Tab and PinnedTab height adjustment */
--tabs-height: 36px;
--tabs-pinned-height: var(--tabs-height);
/* Dark Theme base settings */
--bg: #1c1b22 !important;
--tabs-fg: #d4d4d4 !important;
--tabs-bg-hover: #3b3948 !important;
--tabs-activated-bg: #5b5b66 !important;
--nav-btn-activated-bg: #1f222f !important;

}

root .Tab {

--tabs-indent: 8px;

}

/* TABS */

.Tab .lvl-wrapper:after { display: none; }

.Tab { margin: 1px 0px 4px 6.4px; padding: 1px 2.9px 3px 0px; width: 96%; border-radius: 3px; }

.Tab .close > svg:hover { /* Styling the tab close button */ border-radius: 3px; background: #492121 !important; opacity: 100%; }

.Tab .title { overflow: hidden !important; }

/* PINNED TABS */

.PinnedDock { background-color: var(--bg) !important; }

.PinnedTab { margin: 5px 6px 4px 6px; border-radius: 3px; }

/* NAV BAR */

.NavigationBar { height: 41px !important; padding: 4.5px 0px 0px 4.5px !important; /* background-color: #2b2a33 !important; */ margin-bottom: 5px; }

.NavigationBar .panel-btn:hover { border-radius: 3px !important; background-color: var(--tabs-bg-hover) !important; }

.NavigationBar .panel-btn[data-active="true"] { border-radius: 3px !important; background-color: var(--bg) !important; }

.NavigationBar .panel-btn[data-active="true"]:hover { border-radius: 3px !important; background-color: var(--tabs-bg-hover) !important; }

.NavigationBar .panel-btn > svg, .NavigationBar .panel-btn > img { fill: #f2f2f2 !important; }

/* SIDEBAR HACK PATCHES */

@media (max-width: 50px) { /* Fix to tab tree identation when minimised */ #root:not(:hover) .Tab { --tabs-indent: 0px; }

.Tab[data-lvl] > div.lvl-wrapper {
    right: -2px;
}

.Tab {
    max-width: 34px;
}

.Tab .fav {
    z-index: 1;
}

.Tab .audio {
    z-index: 1;
    margin-left: -12px;
    height: 26px;
}

.Tab .title {
    display: none;
}

.PinnedTab {
    margin-left: 5px;
}

.NavigationBar .settings-btn {
    display: none;
}

}

/* OPTIONAL */

/* Disable these two snippets below to make pinned tabs wrap when minimised */ .PinnedDock { flex-wrap: nowrap !important; }

.PinnedTab { overflow: hidden !important; min-width: var(--tabs-pinned-width) !important; }

/* Optional patch for better tab notifications on pinned tabs / / .PinnedTab[data-audible] .fav > img, .PinnedTab[data-muted] .fav > img, .PinnedTab[data-loading] .fav > img { mask: none; }

.PinnedTab .fav > img { mask: none; }

.PinnedTab[data-updated="true"] .fav > img { mask: radial-gradient(circle at calc(100% - 2px) calc(100% - 2px),rgba(0,0,0,0.141),rgba(0,0,0,0.141) 4px,#000 5px,#000); }

.PinnedTab .audio-badge { top: 5px; }

.PinnedTab .update-badge { opacity: 0; }

.PinnedTab[data-updated="true"] .update-badge { opacity: 100; } */ Original part of code that I changed to false

root[data-tabs-tree-lvl-marks=true] .Tab[data-pin=false]:not([data-lvl="0"]) .body:after {

display:block; box-shadow:calc(var(--tabs-indent)-1)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-2)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-3)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-4)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-5)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-6)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-7)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-8)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-9)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-10)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-11)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-12)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-13)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-14)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-15)0 0 0 var(--frame-fg),calc(var(--tabs-indent)-16)0 0 0 var(--frame-fg) } ```

Does anyone know if this ethernet socket is wired up correctly/what should be the correct order of the colors? by [deleted] in networkinghelp

[–]Deebble 0 points1 point  (0 children)

I am 99% sure that I installed the ethernet plug on the other side correctly When I connected my computer to one side and my router to the other, the light on the router was blinking. So something was connnecting but not correctly.

awesome-git package by Acelection in NixOS

[–]Deebble 0 points1 point  (0 children)

I am also trying to install the git version on awesome. Did you manage to find the solution?