notes
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| notes [2018/01/28 13:59] – update Disable Windows 10 Lock Screen josh | notes [2023/03/19 09:49] (current) – add KDE Plasma Task Manager button width josh | ||
|---|---|---|---|
| Line 314: | Line 314: | ||
| ====== Disable media controls on KDE Plasma 5 lockscreen ====== | ====== 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:// | See [[https:// | ||
| Edit ''/ | 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.1517165979.txt.gz · Last modified: by josh
