Skip to content

Instantly share code, notes, and snippets.

@imchoyoung
Last active February 6, 2023 12:44
Show Gist options
  • Save imchoyoung/a68b7692eb6c0bbe7b790f70981fda43 to your computer and use it in GitHub Desktop.
Save imchoyoung/a68b7692eb6c0bbe7b790f70981fda43 to your computer and use it in GitHub Desktop.
wishfully-temporary work environment tweaks

🌿 fka_tweaks

🌱 windows 10, natural scroll setting

needed at 640122

change the value of FlipFlopWheel from 0 to 1 in the registry editor

Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\{devicepath}\Device Parameters\FlipFlopWheel

It might be necessary to remove other registries on the same directory called FlipFlop.*


🌱 firefox, color of the blank page

needed at 640122

change the value of the setting from #ffffff to #000000 to make page black and focus_text_color from #000000 to #ffffff

about:config/browser.display.background_color
about:config/browser.display.foreground_color

🌱 gnome, login page with multiple monitor

needed at 640124

copy the user monitor setting to gdm

sudo cp ~/.config/monitors.xml ~gdm/.config/monitors.xml
sudo chown gdm:gdm ~gdm/.config/monitors.xml

🌱 wayland, scolling on a firefox out of focus

needed at 640219

workaround

disable the alt + scroll tab switching shortcut

about:config/mousewheel.with_alt.action

set to 0

🌱 firefox, mousewheel acceleration

needed at 641105

workaround

change setting in config

about:config/mousewheel.acceleration.start

set to 3

🌱 gnome, delay at keyboard layout switch

needed at 641105

needed at 641226

workaround

open file

/usr/share/X11/xkb/symbols/br

comment modifier_map Mod3 { Scroll_Lock }; and restart the session (log out and in).

🌱 xubuntu, inconsistency at natural scrolling

needed at 650329

workaround

sudo apt remove xserver-xorg-input-synaptics
reboot

🌱 windows11, caps as backspace

needed at 660601

needed at 670206

#Requires AutoHotkey v2.0

!CapsLock::CapsLock
CapsLock::Backspace
^#z::{
  Send "{Volume_Down}"
}
^#x::{
  Send "{Volume_Up}"
}
^#c::{
  Send "{Volume_Mute}"
}
^#a::{
  Send "{Media_Prev}"
}
^#s::{
  Send "{Media_Play_Pause}"
}
^#d::{
  Send "{Media_Next}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment