Mint: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== Mint 22.3 == | == Mint 22.3 == | ||
* [[Linux/Firefox]] | |||
* [[Linux/Thunderbird]] | |||
* [[Linux/Ghostty]] | |||
=== Display DPI (for 4K Monitor) === | === Display DPI (for 4K Monitor) === | ||
| Line 23: | Line 26: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | === Remove Bluetooth Taskbar Icon === | ||
* Startup Applications - Disable Blueman Applet | |||
* | |||
=== Google-Chrome === | |||
= | * <syntaxhighlight lang="bash"> | ||
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |||
sudo dpkg -i google-chrome-stable_current_amd64.deb | |||
sudo apt-get install -f | |||
google-chrome | |||
</syntaxhighlight> | |||
=== Clipboard manager === | |||
* <code>sudo apt install gpaste-2 gir1.2-gpaste-2</code> | |||
< | |||
</ | |||
=== Emoji Manager === | |||
< | * <syntaxhighlight lang="bash">flatpak run com.tomjwatson.Emote</syntaxhighlight><syntaxhighlight lang="bash">Keyboard / Shortcuts / Custom shortcuts | ||
Command: "/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=emote com.tomjwatson.Emote" | |||
Keyboard bindings: Super+.</syntaxhighlight> | |||
=== Nextcloud Client === | |||
* <syntaxhighlight lang="bash"> | |||
sudo add-apt-repository ppa:nextcloud-devs/client | |||
sudo apt update | |||
sudo apt install nextcloud-client | |||
</syntaxhighlight> | |||
=== Wide scrolbars === | |||
* ~/.profile<syntaxhighlight lang="bash"> | |||
# fix tiny scrollbars | |||
export GTK_OVERLAY_SCROLLING=0 | |||
</syntaxhighlight> | |||
[[Category:Linux/Distribution]] | [[Category:Linux/Distribution]] | ||
[[Category:Linux]] | [[Category:Linux]] | ||
Latest revision as of 12:59, 7 April 2026
Mint 22.3
Display DPI (for 4K Monitor)
- Display settings: 100%
- Font Selection:
- 12/12/12/12/14
- Text Scaling Factor: 1,3
Logitech M575 Buttons (Switch workspaces)
sudo apt install xbindkeys xdotool x11-utilsxbindkeys --defaults > ~/.xbindkeysrc# Button 9 → Next workspace "xdotool key ctrl+alt+Right" b:9 # Button 8 → Previous workspace "xdotool key ctrl+alt+Left" b:8
Remove Bluetooth Taskbar Icon
- Startup Applications - Disable Blueman Applet
Google-Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb sudo apt-get install -f google-chrome
Clipboard manager
sudo apt install gpaste-2 gir1.2-gpaste-2
Emoji Manager
flatpak run com.tomjwatson.Emote
Keyboard / Shortcuts / Custom shortcuts Command: "/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=emote com.tomjwatson.Emote" Keyboard bindings: Super+.
Nextcloud Client
sudo add-apt-repository ppa:nextcloud-devs/client sudo apt update sudo apt install nextcloud-client
Wide scrolbars
- ~/.profile
# fix tiny scrollbars export GTK_OVERLAY_SCROLLING=0