Recent content by das10


  1. Solved Classic Alt Tab (Reincarnation)

    Currently I have been testing with these ListView Styles: Gui, Add, ListView, +E0x200 +Border x4 y4 w580 h144 +LV0x3 +LV0x8000 +LV0x40 +LV0x10000 +AltSubmit +Icon +gOnListViewClick +BackgroundF1F1F1 ;=============================================================================== ; List...
  2. Solved Classic Alt Tab (Reincarnation)

    OK thank you very much. I hope you find a way to do it, otherwise it's good as is.
  3. Solved Classic Alt Tab (Reincarnation)

    @dacrone; Sorry to bother you, but is there any chance of reducing the column & row gaps between the icons, or are we at the limit of the capabilities of ahk? Thanks for your time.
  4. Solved Classic Alt Tab (Reincarnation)

    @dacrone; Just to say thanks for the effort you have put in those ahk scripts. I am still on W23H2, but now I know what to use after upgrading to 24H2.
  5. Firefox update restart issue

    There is bug report here for that kind of issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1941931 At the end of the report there is an interim solution which appears to work for some & not others - by toggling the about:config setting of app.update.multiSessionInstallLockout.enabled to...
  6. How to use findstr on a hidden Ollama app.log file?

    Is there also a missing closing quote for the search string "OLLAMA_MODEL: ? Also, to try & copy the hidden file, first try and remove its Attributes with Attrib, then after the copy you can reverse the Attrib if required on the source/destination file. try: rem This file seems to be hidden...
  7. Solved findstr : Why not found?

    Is it possible that the second file might be encoded using UTF-16, in which case findstr won't work with it? Instead, you could try "find" which appears to detect the presence/absence of "Mode=", or findtsr using regex also appears to work on UTF-16 files (with awkward string input & output!) ...
  8. Solved Google Chrome will not install

    Just in case for anyone else facing this issue currently on Intel / AMD PC's, it appears to be an error on Google's side re. the installer version. https://hothardware.com/news/chrome-wrong-build-error (The Offline Standalone Standard Chrome Setup can also be downloaded from here)...
  9. Recent entries

    This is just for reference: It is possible to add DuckDuckGo with custom search criteria as a default search engine. That way, it is possible to use that customized search engine in the Firefox Default Home page, the URL Search Bar, or from web page context menus. 1. In about:config, create the...
  10. Thunderbird 115: CSS Customization

    @click click; The comment section started at Line 1 got closed off at the end of line 3, not 10, leaving a hanging "*/" at the end of line 10. ....the first instance of "*/" that follows an instance of "/*" closes the comment. https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_syntax/Comments
  11. Thunderbird 115: CSS Customization

    This is what the code for the threadpane you tested shows. Make a backup of your userChrome.css file, and create a new one with just the code you posted, to see if it works. If it does, then there could be an error in your original file (eg. if it is being over-ridden by some other code, or...
  12. Thunderbird 115: CSS Customization

    Try: /* message pane background */ #threadPane > tree-view { background-color: var(--sidebar-background) !important; } (Again use either the variable as shown or use a specific color that you want there). In Cards view, the empty portion of the pane below the messages will work with the...
  13. Thunderbird 115: CSS Customization

    Do you mean the thin lightgrey Vertical line (splitter) ? If so try: /* change color of the folderPane splitter */ #folderPaneSplitter { border-color: var(--sidebar-background) !important; } Use either the variable var(--sidebar-background) or any specific color which you want. For the...
  14. Thunderbird 115: CSS Customization

    I don't think making multiple changes to userChrome.css would cause the issue you mentioned (I make lots of changes to it for testing, and it has never happened to me). The userChrome.css file cannot make any permanent changes to Thunderbird. It only gets loaded when you start Thunderbird - and...
  15. Solved Latest Version of Thunderbird Supernova released

    From March 2025, there will be an ESR as well as Release Channel.... https://thunderbird.topicbox.com/groups/planning/Td58a7d8581e7d60f
Back
Top Bottom