Linux Mint Resources
763 subscribers
26 photos
2 files
168 links
Announcements, notes, resources related to Linux Mint. Please use @linux_mint_users group for discussions.
Download Telegram
Installing Materia GTK Theme from source on any Linux distro.

# Install dependencies (names might differ on distros using dnf and pacman)
sudo apt install -y git meson sassc gnome-themes-extra gtk2-engines-murrine

# Get theme source
git clone https://github.com/nana-4/materia-theme

# Move into theme folder
cd materia-theme

# Compile and install theme
meson _build
meson install -C _build

# To remove the installed theme files, delete all folders named Materia from:
/usr/share/themes/
πŸ‘3
Mint Monthly News – January 2022
LMDE5 progress - BETA this month.
https://blog.linuxmint.com/?p=4276
Linux Crash Course for Beginners by freecodecamp.org

https://youtu.be/ROjZy1WbCIA
πŸ”₯6πŸ‘3
Monthly News – February 2022
https://blog.linuxmint.com/?p=4285
LMDE 5 is now released https://blog.linuxmint.com/?p=4287
πŸ‘10
Monthly News – March 2022
https://blog.linuxmint.com/?p=4293
LM 21 will be called Vanessa
LMDE 4 reaches EOL in August
Slow download speeds
Warpinator beta for iOS
πŸ‘5πŸ‘1
Monthly News – April 2022
Mutter rebase for Cinnamon 5.4.
Work started on the Linux Mint 21 base.
The upgrade tool is passing a final test today and should be officially announced in LMDE tomorrow.
https://blog.linuxmint.com/?p=4317
πŸ”₯8πŸ‘1
How to upgrade to LMDE 5
https://blog.linuxmint.com/?p=4320
πŸŽ‰7πŸ‘2
Monthly News – May 2022

https://blog.linuxmint.com/?p=4323
πŸ‘3πŸ”₯3πŸ‘1
Linux Mint 21 Pre-Alpha Release
πŸ”₯4❀2
Mint Monthly News – June 2022
Linux Mint 21 is almost ready for BETA.
https://blog.linuxmint.com/?p=4336
Improve font rendering on Linux

Font Settings
- Hinting: Enabled
- Hinting Method: Slight
- Antialiasing: Enabled
- Antialiasing Method: Subpixel (RGBA)
- RGBA Order: RGB

Enable thicker fonts on Linux (MacOS like)

Freetype Settings (GUI Method)
1. Backup .profile file in your home folder
2. Open .profile file with a text editor.
3. Add the following line at the end, save the file and reboot.
export FREETYPE_PROPERTIES="truetype:interpreter-version=40 cff:no-stem-darkening=0 autofitter:no-stem-darkening=0"

Freetype Settings (CLI Method)
$ cp -v ~/.profile ~/.profile.bak
$ echo -e '\n\nexport FREETYPE_PROPERTIES="truetype:interpreter-version=40 cff:no-stem-darkening=0 autofitter:no-stem-darkening=0"' >> ~/.profile
πŸ‘5πŸ‘1