notes
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| notes [2016/03/19 15:10] – josh | notes [2023/03/19 09:49] (current) – add KDE Plasma Task Manager button width josh | ||
|---|---|---|---|
| Line 221: | Line 221: | ||
| I was getting a " | I was getting a " | ||
| + | |||
| + | ====== Disable F1 keyboard shortcut in xfce4-terminal ====== | ||
| + | |||
| + | In '' | ||
| + | < | ||
| + | (gtk_accel_path "< | ||
| + | </ | ||
| + | |||
| + | ====== Building xscreensaver ====== | ||
| + | |||
| + | < | ||
| + | sudo apt install \ | ||
| + | libxml2-dev \ | ||
| + | libglade2-dev \ | ||
| + | libjpeg62-dev \ | ||
| + | libgl1-mesa-dev \ | ||
| + | libglu1-mesa-dev \ | ||
| + | libxmu-dev \ | ||
| + | libxpm-dev \ | ||
| + | libxt-dev | ||
| + | ./configure --prefix=$HOME/ | ||
| + | make | ||
| + | </ | ||
| + | |||
| + | ====== Changing gnome-terminal double-click to include colons ====== | ||
| + | |||
| + | From [[http:// | ||
| + | |||
| + | Run: | ||
| + | |||
| + | < | ||
| + | # Find profile ID: | ||
| + | dconf list / | ||
| + | # Set to $pid or replace $pid below: | ||
| + | dconf write / | ||
| + | </ | ||
| + | |||
| + | ====== Disable Windows 10 Lock Screen ====== | ||
| + | |||
| + | Disable the lock screen that appears before the login screen: [[http:// | ||
| + | |||
| + | * HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization | ||
| + | * NoLockScreen DWORD, value 1 | ||
| + | |||
| + | ====== Windows 10 Taskbar Never Combine Registry ====== | ||
| + | |||
| + | * HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced | ||
| + | * TaskbarGlomLevel DWORD | ||
| + | * 0 = Always combine, hide labels | ||
| + | * 1 = Combine when taskbar is full | ||
| + | * 2 = Never combine | ||
| + | |||
| + | ====== Mouse side button double-click ====== | ||
| + | |||
| + | $HOME/ | ||
| + | < | ||
| + | "/ | ||
| + | b:8 + Release | ||
| + | </ | ||
| + | |||
| + | ====== Mouse side button back ====== | ||
| + | |||
| + | $HOME/ | ||
| + | < | ||
| + | "/ | ||
| + | b:9 + Release | ||
| + | </ | ||
| + | |||
| + | ====== Finer Volume Adjustments ====== | ||
| + | |||
| + | $HOME/ | ||
| + | < | ||
| + | " | ||
| + | XF86AudioLowerVolume | ||
| + | " | ||
| + | XF86AudioRaiseVolume | ||
| + | </ | ||
| + | |||
| + | ====== Windows 10 VirtualBox Shared Folder File Access Problems ====== | ||
| + | |||
| + | Follow Cat_Is_Not_SP directions at [[https:// | ||
| + | |||
| + | ====== squid slow service start and shutdown ====== | ||
| + | |||
| + | See [[https:// | ||
| + | |||
| + | Edit squid config file and set: | ||
| + | |||
| + | < | ||
| + | shutdown_lifetime 3 seconds | ||
| + | </ | ||
| + | |||
| + | ====== Disable media controls on KDE Plasma 5 lockscreen ====== | ||
| + | |||
| + | Finally in Kubuntu 20.04 the settings GUI works to disable this! System Settings -> Workspace -> Workspace Behavior -> Screen Locking -> Appearance -> Media controls. | ||
| + | |||
| + | Previously: | ||
| + | |||
| + | See [[https:// | ||
| + | |||
| + | Edit ''/ | ||
| + | |||
| + | ====== APT Pinning a PPA Package ====== | ||
| + | |||
| + | For example, after installing the '' | ||
| + | |||
| + | < | ||
| + | Package: * | ||
| + | Pin: release o=LP-PPA-mythbuntu-0.28 | ||
| + | Pin-Priority: | ||
| + | </ | ||
| + | |||
| + | See [[https:// | ||
| + | |||
| + | ====== Install xubuntu from .iso file on a second drive with GRUB ====== | ||
| + | |||
| + | Boot into GRUB, then open GRUB command line and do: | ||
| + | |||
| + | < | ||
| + | loopback loop (hd0, | ||
| + | linux (loop)/ | ||
| + | initrd (loop)/ | ||
| + | boot | ||
| + | </ | ||
| + | |||
| + | ====== Fix Java for Minecraft in Ubuntu 18.04 ====== | ||
| + | |||
| + | See [[https:// | ||
| + | |||
| + | < | ||
| + | sudo apt install openjdk-8-jdk | ||
| + | sudo update-alternatives --set java / | ||
| + | / | ||
| + | / | ||
| + | </ | ||
| + | |||
| + | ====== KDE Plasma Task Manager button width ====== | ||
| + | |||
| + | When turning on Group by Program name but turning off Combine into a single button, the maximum task manager button size decreases. | ||
| + | I fixed this by editing preferredMaxWidth() in ''/ | ||
| + | |||
| + | <code javascript> | ||
| + | function preferredMaxWidth() { | ||
| + | if (tasks.iconsOnly) { | ||
| + | if (tasks.vertical) { | ||
| + | return tasks.width + verticalMargins(); | ||
| + | } else { | ||
| + | return tasks.height + horizontalMargins(); | ||
| + | } | ||
| + | } | ||
| + | |||
| + | // if (plasmoid.configuration.groupingStrategy != 0 && !plasmoid.configuration.groupPopups) { | ||
| + | // return preferredMinWidth(); | ||
| + | // } | ||
| + | |||
| + | return Math.floor(preferredMinWidth() * 1.6); | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | plasmashell can be restarted to see the change take effect with: | ||
| + | |||
| + | < | ||
| + | killall plasmashell; | ||
| + | </ | ||
notes.1458414643.txt.gz · Last modified: by josh
