Jump to content

Mint: Difference between revisions

From Wiki
Marcluer (talk | contribs)
No edit summary
Marcluer (talk | contribs)
mNo edit summary
Line 1: Line 1:
== 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) ===
* <code>sudo apt install xbindkeys xdotool x11-utils</code>
* <code>xbindkeys --defaults > ~/.xbindkeysrc</code>
* <syntaxhighlight lang="bash">
# Button 9 → Next workspace
"xdotool key ctrl+alt+Right"
  b:9
# Button 8 → Previous workspace
"xdotool key ctrl+alt+Left"
  b:8
</syntaxhighlight>
== Old ==
== Mint 15 UEFI Boot ==
== Mint 15 UEFI Boot ==
* sudo add-apt-repository ppa:yannubuntu/boot-repair
* sudo add-apt-repository ppa:yannubuntu/boot-repair

Revision as of 10:35, 6 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-utils
  • xbindkeys --defaults > ~/.xbindkeysrc
  • # Button 9 → Next workspace
    "xdotool key ctrl+alt+Right"
      b:9
    
    # Button 8 → Previous workspace
    "xdotool key ctrl+alt+Left"
      b:8
    

Old

Mint 15 UEFI Boot

  • sudo add-apt-repository ppa:yannubuntu/boot-repair
  • sudo apt-get update
  • sudo apt-get install boot-repair
  • run boot-repair


Mint 17.1: Edge Snapping


shutdown dialog

shutdown -P +1 &
zenity --question --text="Shutdown now ? Automatic shutdown in 60 seconds" --ok-label="DOIT" 
if [ $? -eq 0 ];then
        shutdown -c
        shutdown -P now
else
        shutdown -c
fi


zenity --question --text="Shutdown now ? Autoshutdown in 60 seconds" \
    --cancel-label="DOIT" --ok-label="NOPE" --timeout=60 ||  
  dbus-send --system --print-reply --dest=org.freedesktop.login1 \
    /org/freedesktop/login1 "org.freedesktop.login1.Manager.PowerOff" boolean:true