Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
linux:astuces [2024/12/09 10:34] – [Destruction d'interface Cinnamon] minimilinux:astuces [2024/12/11 08:21] (Version actuelle) – [Restaurer le gestionnaire de fichiers Nemo] minimi
Ligne 30: Ligne 30:
   * moins bourrin   * moins bourrin
 <code> <code>
- if [[ $(grep ooSetupFactoryWindowAttributes registrymodifications.xcu | grep -o "value>[0-9]*,[0-9]*,[0-9]*,[0-9]*" | grep -o "[0-9].*" | cut -d , -f 3 | sort -h | tail -n 1) -lt 800 ]] + if [[ $(grep ooSetupFactoryWindowAttributes ~/.config/libreoffice/4/user/registrymodifications.xcu | grep -o "value>[0-9]*,[0-9]*,[0-9]*,[0-9]*" | grep -o "[0-9].*" | cut -d , -f 3 | sort -h | tail -n 1) -lt 800 ]] 
 then  then 
       sed -ie '/.*ooSetupFactoryWindowAttributes.*/d' ~/.config/libreoffice/4/user/registrymodifications.xcu       sed -ie '/.*ooSetupFactoryWindowAttributes.*/d' ~/.config/libreoffice/4/user/registrymodifications.xcu
Ligne 103: Ligne 103:
     gsettings set org.nemo.window-state start-with-location-bar true     gsettings set org.nemo.window-state start-with-location-bar true
 fi fi
-gsettings set org.nemo.preferences show-location-entry true+# Montre la barre d’adresse en mode cliquable 
 +gsettings set org.nemo.preferences show-location-entry false
  
 # Panneau lateral activation mode emplacements deplies # Panneau lateral activation mode emplacements deplies
Ligne 129: Ligne 130:
 then then
     rm ~/.local/share/gvfs-metadata/home     rm ~/.local/share/gvfs-metadata/home
 +fi
 +
 + if [[ $(grep  ooSetupFactoryWindowAttributes ~/.config/libreoffice/4/user/registrymodifications.xcu | grep -o "value>[0-9]*,[0-9]*,[0-9]*,[0-9]*" | grep -o "[0-9].*" | cut -d , -f 3 | sort -h | tail -n 1) -lt 800 ]] 
 +then 
 +      sed -ie '/.*ooSetupFactoryWindowAttributes.*/d' ~/.config/libreoffice/4/user/registrymodifications.xcu
 fi fi
  
Ligne 135: Ligne 141:
  
 </file> </file>
 +
 +== Retablir une taille de menu correcte A TESTER==
 +<code>
 +menu_config_file="~/.config/cinnamon/sipices/menu@cinnamon.org/0.json"
 +if [[ $(echo "$(jq '."popup-width".value' $menu_config_file )/1" |_bc) -lt 1000 ]]
 +then
 +      rm -rf tmp.json
 +      jq -r '."popup-width".value = "590" | ."popup-width".value = "590"' > tmp.json
 +      mv tmp.json $menu_config_file
 +fi      
 +</code>
 ===== compresser en parallèle ===== ===== compresser en parallèle =====