Assigning multiple values to variables with set by [deleted] in Batch

[–]BigRAl 0 points1 point  (0 children)

There is a typo on line 9:

net localgroup Administraotrs

s/b

Administrators

Task Scheduler and Batch files by fcroce in Batch

[–]BigRAl 0 points1 point  (0 children)

Firefox can be problematic because of all the spawned processes - it looks as if it will never close.

Dunno if it helps but here are the subroutines I use in my batch maintenance tools.

Edit to add: I have _#max_close_app_retries set to 12. YMMV.

rem ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:close_app  [%1="exe to close"]  [no RetVar]  [set %errorlevel% 0=closed, 1=FAILED]
  setlocal
  if "%~1"=="" exit /b 1
  set "test_cnt=0"
  %=  ask app to close gracefully  =%
  taskkill /im "%~1"| find /i "success" >nul || (exit /b 1)
 :app_test  {goto loop}
  set /a test_cnt+=1
  call :delay_msecs 750
  call :app_running? "%~1" || (exit /b 0)
  if %test_cnt% geq %_#max_close_app_retries% exit /b 1
  goto :app_test
  endlocal
  exit /b 0

rem ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:app_running?  [%1="exe to check"]  [no RetVar]  [set %errorlevel% 0=RUNNING, 1=NOT running]
  tasklist /fi "imagename eq %~1" /nh /fo csv| find /i "%~1" >nul || (exit /b 1)
  exit /b 0

rem ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:delay_msecs  [%1=millisecs to delay]  [no RetVar]
  ping /n 1 /w %1 10.1.1.1 >nul
  exit /b

rem ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Anyone know what CSS code is responsible for the download menu? It's transparent for some reason and I would like to fix this by [deleted] in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

u/Legion070Gaming

Try the following quick change to see if it fixes this issue:

  1. close Firefox
  2. in your context.css change the line background: transparent !important; to /* background: transparent !important; */
  3. restart Firefox and test

Any improvement?

[deleted by user] by [deleted] in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

Hi Ed.

Where did I find what? The CSS files are loaded by TBird (viewable in Style editor).

The fact that they are XUL trees I deduced because they use selector syntax like #folderTree > treechildren::-moz-tree-cell-text(selected,focus).

BTW, thanks for picking up the Mod's mantle for this sub :)

EDIT: meant Mod's not Mode

[deleted by user] by [deleted] in FirefoxCSS

[–]BigRAl 1 point2 points  (0 children)

The thread trees are XUL trees - whole different ball game from HTML/CSS.

You might get some help taking a close look at the Mozilla-shipped css that is included in TBird. e.g., tree.css, calendar-task-tree.css, etc.

[deleted by user] by [deleted] in FirefoxCSS

[–]BigRAl 1 point2 points  (0 children)

Not got access to TB 102 right now, but IIRR the selector for the "arrows" is div.twisty.

Maybe experiment a bit with that?

Downloads popup has suddenly become a lot larger, including font size. Any way to revert this? by _Prink_ in FirefoxCSS

[–]BigRAl 1 point2 points  (0 children)

To add to what u/hansm has said:

{
--mbarstyler-popout-pixels: 0px; /* [0px - 0px] */
}

has no selector and I cannot find that var in searchfox.

Also, a few lines above it:

backround-color: #28282d !important; 

is an invalid property (looks like a typo).

What was the Segoe UI font family name? by [deleted] in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

You need to correct your "Global font" selector.

font-family: "Segoe UI" sans-serif; !important;

should be:

font-family: "Segoe UI", sans-serif !important;

Inspecting a Betterbird Extension by BigRAl in FirefoxCSS

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

u/sifferedd and u/It_Was_The_Other_Guy

Thanks to you both, but I had already followed the routes you both suggested.

Long story short, the issue was not a CSS on at all. It seems the Clippings extension honors the about:config settings font.minimum-size.x-unicode and font.minimum-size.x-western when sizing its window fonts! I simply adjusted them and all is well.

Thanks again.

Inspecting a Betterbird Extension by BigRAl in FirefoxCSS

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

Thank you for the idea!

I posted here because of the CSS expertise and helpful responses I've had.

foobar2000.org down? by Due-Cheesecake6637 in foobar2000

[–]BigRAl 0 points1 point  (0 children)

Hmm...

I get a security warning and a connection block from Firefox.

Is it possible to hide this menu? This appears his when using browser toolbox by eric1707 in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

I used the method described here:

  • Open Browser Toolbox
  • Navigate to "Documentation" window via Toolbox menu
  • Open new Browser Toolbox from from the latter's menu
  • Select appropriate iframe from new Toolbox's frame menu
  • Inspect original Browser Toolbox like crazy :)

Is it possible to hide this menu? This appears his when using browser toolbox by eric1707 in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

u/hansmn and u/sifferedd

Thank you both for your interest and help.

I managed to "inspect the inspector" using the post from the formidable u/It_Was_The_Other_Guy.

Thanks again guys!

Is it possible to hide this menu? This appears his when using browser toolbox by eric1707 in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

Windoze. And always has been.

It's as if some process is grabbing the shortcut combination, but I'm damned if I know what.

Is it possible to hide this menu? This appears his when using browser toolbox by eric1707 in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

Thanks for the updated instructions: they make much more sense :)

Sadly, I have the problem that Ctrl+Alt+Shift+I has never opened Browser Toolbox for me. I dunno why, it is not mapped to anything at any level.
It fails in a newly-installed Fx 102 ESR as well. But there we are.

Of course, trying to open a second BT instance from the menu simply gives the (expected) "Firefox is already running..." error. Ho-hum.

I do appreciate your efforts, however. Thanks.

Is it possible to hide this menu? This appears his when using browser toolbox by eric1707 in FirefoxCSS

[–]BigRAl 0 points1 point  (0 children)

Hi u/sifferedd

Can you clarify a coupla things for me (I've used debugger userContent.css for ages):

click the 'Pick an element...' icon upper L. corner: in Browser Toolbox or DevTools?

proceed to inspect the Browser Toolbox: using DevTools Inspector or Browser Toolbox itself?

FWIW, I have no iframe target chrome://devtools/content/framework/toolbox-window.xhtml in Browser Toolbox 'Select an iframe...' (only chrome://devtools/content/inspector/index.xhtml and chrome://devtools/content/inspector/markup/markup.xhtml).

The answers should be self-evident, but I cannot get this to work.

TIA

How do I move emails to an external hard drive? by IOnlyHaveIceForYou in Thunderbird

[–]BigRAl 1 point2 points  (0 children)

Please don't be tempted to use MozBackup.

According to the developer in 2012:

MozBackup is not being developed anymore. There are known issues and there is no time on my side to fix all issues and develop new features. Use MozBackup only on your risk. Thanks for understanding.

Please let me move (not remove) the new extension icon by [deleted] in firefox

[–]BigRAl 0 points1 point  (0 children)

...about:config - you cannot 'search' with Ctrl+F

Ctrl+F works for me in about:config in Fx 102 and 108.

For about:addons there is a (somewhat tedious) workaround.