Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.ActionCenter.SmartOptOut]
"Enabled"=dword:00000000
Install an App not targeted for Android 14 in a PowerShell Terminal .\adb install --bypass-low-target-sdk-block NAME.apk
Grant Permission for secure system settings, e.g. Keepass2Android Keyboard-Switch-Plugin .\adb shell pm grant keepass2android.plugin.keyboardswap2 android.permission.WRITE_SECURE_SETTINGS
It makes no sense to leave the monitor on when the device is locked. This PowerShell command sends the monitor to energy saving immediately.
Because I don’t know how to send powershell commands from a task, I used a bat 🙂
@echo off echo Der Bildschirm wird in den Ruhezustand geschickt! powershell (Add-Type '[DllImport(\"user32.dll\")]^public static extern int SendMessage(int hWnd, int hMsg, int wParam, int lParam);' -Name a -Pas)::SendMessage(-1,0x0112,0xF170,2)
If you have the microphone activated, the audio quality of your Jabra device will be piss poor. Corded is fine. It helps to deactivate/activate the headset-microphone. Maybe you just have to do it once or allways… Jabra says this is by design (half the bandwith when using the microphone). Thread on Reddit
Look at the usable properties: xinput –list-props [NUMMER]
Change a prop like this: xinput –set-prop 10 372 30
xserve / xorg
So I messed around with Linux on my old Lenovo 3000 N200. Zorin OS Lite works very well out of the box. The only thing that annoys me, is the super fast scroll speed.
Short version: This (ubuntu based) OS uses an old synaptics driver.
sudo apt-get install xserver-xorg-input-synaptics
Now we need to add or edit the ScrollDelta values in the config file. I need 200 and it’s still not sluggish.
cd /usr/share/X11/xorg.conf.d
sudo nano 70-synaptics.conf
How it should look:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "VertScrollDelta" "200"
Option "HorizScrollDelta" "200"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Save the file and close nano (CTRL+O, Enter, CTRL+X), Log the user out and back in to feel the changes.
It’s possible to invert the scroll (natural scroll?) with a negativ value, like „-200“.
Speed in Firefox
Open a new tab in Firefox, and enter into the address bar: about:config.
There may be a warning about the sensitivity of the advanced settings within, accept the risk and proceed. There will be a search bar at the top, search for:
mousewheel.default.delta_multiplier_y
The default value seems to be 100. Change it to something like 50, and save with the check mark on the right.