Table des matières

Tips & Tricks

.config/autostart

Liste des programmes qui sont lancés au démarrage.

Nemo: open folder with Atom

Pour avoir en entrée “Open folder with Atom” dans le menu contextuel de Nemo, créer le fichier suivant .local/share/nemo/actions/Atom.nemo_action

[Nemo Action]
Name=Open folder with Atom
Comment=Open folder with Atom editor
Quote=double
Exec=atom %F
Selection = s
Extensions = any;

dconf-editor

Utilitaire qui permet de configurer un certain nombre d'applications :

sudo apt-get install -y dconf-editor

Exemple

Pour afficher systématiquement les fichiers en liste dans Némo :

dconf-editor puis aller dans org > nemo > preferences

Positionner default-forlder-viewer à 'liste-view'

VLC

Installer un addon VLC :

Les addons sont à installer dans :

Installer un skin VLC :

Les skins sont à installer dans :

VLC ne démarre plus ! Essayer de supprimer le dossier ~./.config/vlc

Lanceur dédié pour Free

Créez un lanceur; Dans le champ Commande, mettez:

/usr/bin/vlc http://mafreebox.freebox.fr/freeboxtv/playlist.m3u

Firewall

sudo ufw allow out 554/tcp

sudo ufw allow in 212.27.38.253/UDP

http://www.leshirondellesdunet.com/pare-feu-ufw

Renommer USB drive

GParted fait cela très bien.

Selon le type de partition il faut utiliser une commande spécifique :

Identifier la partition en question :

sudo blkid

Démonter la partition :

sudo umount </dev/xxx>

Renommer :

sudo ntfslabel </dev/xxx> <nouveau-nom>

RIP audio CD to Mp3

# All in one: query, rip, encode, cleanup:
jack -Q --remove-files

Flac to Mp3

sudo apt-get install flac lame

# Then in the folder with all the .flac files:

for f in *.flac; do flac -cd "$f" | lame -b 128 - "${f%.*}".mp3; done

WAV to Mp3

# Then in the folder with all the .wav files:
for f in *.wav; do lame -b 128 "$f" "${f%.*}".mp3; done

Media concat

ffmpeg -i "concat:input1.mpg|input2.mpg|input3.mpg" -c copy output.mpg

Liste des services

systemctl list-unit-files --state enabled
systemctl list-unit-files