| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| linux:distros:opensuse_tumbleweed_xfce [2026/09/16 18:14] – Sean Rhone | linux:distros:opensuse_tumbleweed_xfce [2026/09/17 00:33] (current) – [Fonts] Sean Rhone |
|---|
| |
| ===== Firefox ESR ===== | ===== Firefox ESR ===== |
| |
| * Removes main Firefox and config | |
| |
| sudo zypper remove --clean-deps 'MozillaFirefox' && sudo zypper addlock 'MozillaFirefox' | sudo zypper remove --clean-deps 'MozillaFirefox' && sudo zypper addlock 'MozillaFirefox' |
| |
| xfconf-query --channel 'xsettings' --property '/Xft/DPI' --type 'int' --set '96' --create | xfconf-query --channel 'xsettings' --property '/Xft/DPI' --type 'int' --set '96' --create |
| |
| xfconf-query --channel 'xsettings' --property '/Xft/HintStyle' --type 'string' --set 'hintnone' --create | |
| |
| xfconf-query --channel 'xsettings' --property '/Xft/Hinting' --type 'int' --set '0' --create | xfconf-query --channel 'xsettings' --property '/Xft/Hinting' --type 'int' --set '0' --create |
| | |
| | xfconf-query --channel 'xsettings' --property '/Xft/HintStyle' --type 'string' --set 'hintnone' --create |
| |
| xfconf-query --channel 'xsettings' --property '/Xft/RGBA' --type 'string' --set 'none' --create | xfconf-query --channel 'xsettings' --property '/Xft/RGBA' --type 'string' --set 'none' --create |
| |
| * [[#add_database_password_to_keyring|KeePassXC]] | * [[#add_database_password_to_keyring|KeePassXC]] |
| * [[#updater|Updater]] | * [[#scripts|Scripts]] |
| |
| xfce4-keyboard-settings | xfce4-keyboard-settings |
| |
| '/usr/bin/bash' -c "'/usr/bin/xfce4-terminal' -T 'openSUSE Updater' -I '/usr/share/icons/hicolor/scalable/apps/distributor.svg' --working-directory='/tmp' -e ~/'.local/scripts/opensuse-updater.sh'" | '/usr/bin/bash' -c "'/usr/bin/xfce4-terminal' -T 'openSUSE Updater' -I '/usr/share/icons/hicolor/scalable/apps/distributor.svg' --working-directory='/tmp' -e ~/'.local/scripts/opensuse-updater.sh'" |
| | |
| | '/usr/bin/bash' -c "'/usr/bin/xfce4-terminal' -T 'Max Performance' -I '/usr/share/icons/hicolor/scalable/apps/org.xfce.panel.systemload.svg' --working-directory='/tmp' -e ~/'.local/scripts/max-perf.sh'" |
| |
| ===== Firefox ===== | ===== Firefox ===== |
| |
| ====== Scripts ====== | ====== Scripts ====== |
| | |
| | * [[#keyboard_shortcuts|Keyboard shortcuts]] |
| |
| ===== Updater ===== | ===== Updater ===== |
| |
| * [[#keyboard_shortcuts|Keyboard shortcut]] | |
| |
| mkdir -p ~/'.local/scripts' && nano ~/'.local/scripts/opensuse-updater.sh' && chmod +x ~/'.local/scripts/opensuse-updater.sh' | mkdir -p ~/'.local/scripts' && nano ~/'.local/scripts/opensuse-updater.sh' && chmod +x ~/'.local/scripts/opensuse-updater.sh' |
| sudo '/usr/bin/zypper' dist-upgrade --details --allow-downgrade --allow-name-change --allow-arch-change --allow-vendor-change | sudo '/usr/bin/zypper' dist-upgrade --details --allow-downgrade --allow-name-change --allow-arch-change --allow-vendor-change |
| |
| rm -Rf ~/'.cache/mesa_shader_cache/'* ~/'.cache/thumbnails/'* | #rm -Rf ~/'.cache/mesa_shader_cache/'* |
| | rm -Rf ~/'.cache/thumbnails/'* |
| rm -Rf ~/'.cache/mozilla/firefox/'* ~/'.cache/thunderbird/'* | rm -Rf ~/'.cache/mozilla/firefox/'* ~/'.cache/thunderbird/'* |
| |
| |
| ~/'.local/scripts/opensuse-updater.sh' | ~/'.local/scripts/opensuse-updater.sh' |
| | |
| | ===== Max Performance ===== |
| | |
| | * [[linux:notes:x86_energy_perf_policy#opensuse|Dependencies]] |
| | |
| | mkdir -p ~/'.local/scripts' && nano ~/'.local/scripts/max-perf.sh' && chmod +x ~/'.local/scripts/max-perf.sh' |
| | |
| | <code> |
| | #!/bin/bash |
| | |
| | cd '/tmp' |
| | |
| | # CPU |
| | sudo '/usr/bin/x86_energy_perf_policy' --all 'performance' --turbo-enable '1' --force |
| | #sudo '/usr/bin/cpupower' frequency-set -g 'performance' -r |
| | |
| | echo 'Max performance states set!' |
| | sleep '3' |
| | |
| | # End</code> |
| | |
| | ~/'.local/scripts/max-perf.sh' |
| |
| ====== Notable Folders and Commands ====== | ====== Notable Folders and Commands ====== |