This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # rev .2 2/11/25 | |
| # Check if the script is run as root | |
| if [ "$EUID" -ne 0 ]; then | |
| echo "Please run as root." | |
| exit 1 | |
| fi | |
| # Ensure a username is provided |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Run the following from a shell: | |
| echo "export PLASMA_USE_QT_SCALING=1" >> ~/.profile | |
| or add this line maunualy to ${USER}/.profile: | |
| export PLASMA_USE_QT_SCALING=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| For reasons unknown, there exists a 'hidden' option in the KDE application Yakuake. If you wish to add more delay to | |
| the time between when the mouse pointer reaches the screen edge and Yakuake detects the event, make the following change: | |
| Edit your yakuakerc file [usually in '/home/${USER}/.config/yakuakerc' and add the following: | |
| [AutoOpen] | |
| PollInterval=1500 | |
| If the AutoOpen group already exists you only need to append the PollInterval line. Internally, the default value is | |
| 500. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Allow access to anything for remote users] | |
| Identity=unix-user:* | |
| Action=* | |
| ResultAny=yes | |
| ResultInactive=yes | |
| ResultActive=yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias perms='stat -c "%A %a %n"' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| cls | |
| set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe" | |
| set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe" | |
| echo Closing OneDrive process. | |
| echo. | |
| taskkill /f /im OneDrive.exe > NUL 2>&1 | |
| ping 127.0.0.1 -n 5 > NUL 2>&1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Valid as of 1/16/2022 | |
| You will need SSH enabled. After you have logged in, gain root access via sudo. The file you want to edit is | |
| "/etc.default/synoinfo.conf" and you are looking for a line that reads 'supports_disk_compatibility="yes" ' that needs | |
| to be changed to 'supports_disk_compatibility="yes"'. Once you haved saved and exited yor editor all that is required | |
| is a reboot. |