mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
Updates docs to try allow better customising and removes announcment banner. (#2448)
* Updates styling for WinUtil. * Removes announcement and fixes grammar * Revert "Deploying to main from @ ChrisTitusTech/winutil@8a6116cea1 🚀" This reverts commitdf2fe4a4c6
. * Revert "Deploying to main from @ ChrisTitusTech/winutil@e82870da89 🚀" This reverts commit8a6116cea1
. * Revert "Deploying to main from @ ChrisTitusTech/winutil@e784604a1a 🚀" This reverts commite82870da89
. * Revert "Update pre-release.yaml" This reverts commite784604a1a
. * Revert "Fixes release log (#2377)" This reverts commit5d3d47eeb5
. * Reapply "Fixes release log (#2377)" This reverts commit86f8d567b9
. * Reapply "Update pre-release.yaml" This reverts commit8761f3b815
. * Reapply "Deploying to main from @ ChrisTitusTech/winutil@e784604a1a 🚀" This reverts commit673f416257
. * Update README.md
This commit is contained in:
parent
601e338929
commit
499848d643
@ -82,7 +82,8 @@ graph LR
|
|||||||
|
|
||||||
|
|
||||||
### Testing your changes
|
### Testing your changes
|
||||||
* To test to see if your changes work as intended, run the following commands in a powershell terminal:
|
|
||||||
|
* To test to see if your changes work as intended run following commands in a powershell teminal as admin:
|
||||||
|
|
||||||
* Change the directory where you are running the commands to the forked project.
|
* Change the directory where you are running the commands to the forked project.
|
||||||
* `cd {path to the folder with the compile.ps1}`
|
* `cd {path to the folder with the compile.ps1}`
|
||||||
|
13
docs/stylesheets/extra.css
Normal file
13
docs/stylesheets/extra.css
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
/* Custom styles for MkDocs Material */
|
||||||
|
body {
|
||||||
|
background-color: #c22525;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-nav__link {
|
||||||
|
color: #ff5722;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-typeset h1 {
|
||||||
|
font-size: 2.5em;
|
||||||
|
color: #3f51b5;
|
||||||
|
}
|
@ -26,7 +26,6 @@
|
|||||||
* This will scan for and select all installed programs in WinUtil that WinGet supports.
|
* This will scan for and select all installed programs in WinUtil that WinGet supports.
|
||||||
|
|
||||||
=== "Clear Selection"
|
=== "Clear Selection"
|
||||||
|
|
||||||
* Click the `Clear Selection` button.
|
* Click the `Clear Selection` button.
|
||||||
* This will unselect all checked programs.
|
* This will unselect all checked programs.
|
||||||
|
|
||||||
@ -60,6 +59,7 @@ Advanced Tweaks are intended for experienced users who have a solid understandin
|
|||||||
|
|
||||||
### O&O Shutup
|
### O&O Shutup
|
||||||
|
|
||||||
|
|
||||||
[O&O ShutUp10++](https://www.oo-software.com/en/shutup10) can be launched from WinUtil with only one button click. It is a free privacy tool for Windows that lets users easily manage their privacy settings. It disables telemetry, controls updates, and manages app permissions to enhance security and privacy. The tool offers recommended settings for optimal privacy with just a few clicks.
|
[O&O ShutUp10++](https://www.oo-software.com/en/shutup10) can be launched from WinUtil with only one button click. It is a free privacy tool for Windows that lets users easily manage their privacy settings. It disables telemetry, controls updates, and manages app permissions to enhance security and privacy. The tool offers recommended settings for optimal privacy with just a few clicks.
|
||||||
|
|
||||||
<iframe width="640" height="360" src="https://www.youtube.com/embed/3HvNr8eMcv0" title="O&O ShutUp10++: For Windows 10 & 11, with Dark Mode" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
<iframe width="640" height="360" src="https://www.youtube.com/embed/3HvNr8eMcv0" title="O&O ShutUp10++: For Windows 10 & 11, with Dark Mode" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
15
mkdocs.yml
15
mkdocs.yml
@ -26,13 +26,22 @@ theme:
|
|||||||
logo: assets/favicon.png
|
logo: assets/favicon.png
|
||||||
favicon: assets/favicon.png
|
favicon: assets/favicon.png
|
||||||
palette:
|
palette:
|
||||||
|
# Palette toggle for automatic mode
|
||||||
|
- media: "(prefers-color-scheme)"
|
||||||
|
toggle:
|
||||||
|
icon: material/brightness-auto
|
||||||
|
name: Switch to light mode
|
||||||
|
|
||||||
|
# Palette toggle for light mode
|
||||||
- media: "(prefers-color-scheme: light)"
|
- media: "(prefers-color-scheme: light)"
|
||||||
scheme: default
|
scheme: default
|
||||||
|
|
||||||
|
|
||||||
toggle:
|
toggle:
|
||||||
icon: material/toggle-switch-off-outline
|
icon: material/brightness-7
|
||||||
name: Switch to dark mode
|
name: Switch to dark mode
|
||||||
primary: black
|
|
||||||
accent: purple
|
# Palette toggle for dark mode
|
||||||
- media: "(prefers-color-scheme: dark)"
|
- media: "(prefers-color-scheme: dark)"
|
||||||
scheme: slate
|
scheme: slate
|
||||||
toggle:
|
toggle:
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block header %}
|
|
||||||
{{ super() }}
|
|
||||||
<div style="color: red; text-align: center; padding: 10px; font-size: 20px;">
|
|
||||||
<strong>Announcement:</strong> This documentation is still in progress.
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block footer %}
|
{% block footer %}
|
||||||
{# Empty block to override the footer #}
|
{# Empty block to override the footer #}
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user