Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
| fr:tools:linux:misc-tools [2023/09/30 14:45] – [Kill process in 1 line] crunchyslime | fr:tools:linux:misc-tools [2024/01/28 12:44] (Version actuelle) – [Download youtube vidéo from clipboard] crunchyslime | ||
|---|---|---|---|
| Ligne 9: | Ligne 9: | ||
| * [[man> | * [[man> | ||
| * [[man> | * [[man> | ||
| - | * [[fr: | + | * [[fr: |
| + | * 3D-2D | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * Dev | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * Network | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * Communication | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * Utilitaires | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| + | * [[man> | ||
| ==== Captures ==== | ==== Captures ==== | ||
| Ligne 40: | Ligne 68: | ||
| ====Update timezone==== | ====Update timezone==== | ||
| - | + | <code bash> | |
| - | '' | + | timedatectl list-timezones |
| - | '' | + | timedatectl set-timezone Europe/ |
| + | </ | ||
| ====access grub2==== | ====access grub2==== | ||
| Ligne 48: | Ligne 77: | ||
| appuyer sur '' | appuyer sur '' | ||
| - | ====install script==== | ||
| - | |||
| - | <code bash> | ||
| - | #!/bin/bash | ||
| - | ## 3D | ||
| - | sudo pacman -S cura openscad freecad | ||
| - | ## base | ||
| - | sudo pacman -S base-devel git nethogs nmap mtr cmake noto-fonts-emoji unrar | ||
| - | ## Utilitaires | ||
| - | sudo pacman -S conky flameshot audacity htop gimp | ||
| - | ## productivity | ||
| - | sudo pacman -S thunderbird discord freerdp2-x11 openvpn | ||
| - | ## freerdp2-wayland | ||
| - | ## bonus | ||
| - | sudo pacman -S dolphin-emu signal-desktop obs-studio | ||
| - | </ | ||
| ====yaourt==== | ====yaourt==== | ||
| Ligne 90: | Ligne 103: | ||
| pour installer un thème, télécharger l' | pour installer un thème, télécharger l' | ||
| - | [source sweet](https:// | + | [[https:// |
| - | [source sweet ff](https:// | + | [[https:// |
| - | ====theme i3==== | ||
| - | [arch based](https:// | ||
| - | [other](https:// | ||
| ====Kill process in 1 line==== | ====Kill process in 1 line==== | ||
| Ligne 108: | Ligne 118: | ||
| [[https:// | [[https:// | ||
| + | |||
| + | ====Bookmarks==== | ||
| + | |||
| + | un outils de bookmark facile et rapide comme vu dans cette vidéo ([[https:// | ||
| + | Notre objectif est de pouvoir stocker ce qui est surligné (en utilisant [[man> | ||
| + | |||
| + | <code bash> | ||
| + | #!/bin/bash | ||
| + | |||
| + | bookmark=`xclip -o` | ||
| + | file=" | ||
| + | |||
| + | if grep -q " | ||
| + | notify-send " | ||
| + | else | ||
| + | notify-send " | ||
| + | echo " | ||
| + | fi | ||
| + | </ | ||
| + | puis dans mon '' | ||
| + | < | ||
| + | bindsym $mod+Shift+b exec ~/ | ||
| + | bindsym $mod+b exec xdotool type " | ||
| + | bindsym $mod+n exec xdotool type " | ||
| + | </ | ||
| + | |||
| + | //⚠️ ce script a été rédigé pour i3 sous X, sous Wayland il conviendra de remplacer '' | ||
| + | |||
| + | ====Download youtube vidéo from clipboard==== | ||
| + | Avec X en utilisant [[man> | ||
| + | Avec wayland en utilisant [[man> | ||
| + | <code bash> | ||
| + | #!/bin/bash | ||
| + | cd "/ | ||
| + | wl-paste > / | ||
| + | #launching in a detached terminal to make it work with shortcuts | ||
| + | xfce4-terminal -e ' | ||
| + | rm / | ||
| + | </ | ||
| ====bash tools==== | ====bash tools==== | ||