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:41] – 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 26: | Ligne 54: | ||
| </ | </ | ||
| - | **Update time and date from network clock** | + | ====Update time and date from network clock==== |
| <code bash> | <code bash> | ||
| Ligne 39: | Ligne 67: | ||
| </ | </ | ||
| - | **Update timezone** | + | ====Update timezone==== |
| - | + | ||
| - | `timedatectl list-timezones` | + | |
| - | `timedatectl set-timezone Europe/ | + | |
| - | + | ||
| - | **access grub2** | + | |
| - | + | ||
| - | appuyer sur `shift` pendant la phase de boot | + | |
| - | + | ||
| - | **install script** | + | |
| <code bash> | <code bash> | ||
| - | # | + | timedatectl list-timezones |
| - | ## 3D | + | timedatectl set-timezone Europe/ |
| - | sudo pacman | + | |
| - | ## base | + | |
| - | sudo pacman | + | |
| - | ## 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 | + | |
| </ | </ | ||
| - | **Signal** | + | ====access grub2==== |
| - | </ | + | |
| - | # NOTE: These instructions only work for 64 bit Debian-based | + | |
| - | # Linux distributions such as Ubuntu, Mint etc. | + | |
| - | # 1. Install our official public software signing key | + | appuyer sur '' |
| - | wget -O- https:// | + | |
| - | cat signal-desktop-keyring.gpg | sudo tee -a / | + | |
| - | + | ||
| - | # 2. Add our repository to your list of repositories | + | |
| - | echo 'deb [arch=amd64 signed-by=/ | + | |
| - | sudo tee -a / | + | |
| - | + | ||
| - | # 3. Update your package database and install signal | + | |
| - | sudo apt update && sudo apt install signal-desktop | + | |
| - | </ | + | |
| - | **[yaourt](https:// | ||
| + | ====yaourt==== | ||
| + | [[https:// | ||
| <code bash> | <code bash> | ||
| #!/bin/bash | #!/bin/bash | ||
| Ligne 98: | Ligne 94: | ||
| </ | </ | ||
| - | **Thèmes | + | ====Thèmes Kvantum==== |
| - | + | [[https:// | |
| - | `sudo pacman -S kvantum-qt5` | + | '' |
| - Select Kvantum from System Settings → Application Style → Widget Style and apply it. | - Select Kvantum from System Settings → Application Style → Widget Style and apply it. | ||
| - Select Kvantum from System Settings → Color → Scheme and click Apply. You could change the color scheme later if you choose another Kvantum theme with Kvantum Manager (see "Using Other Themes" | - Select Kvantum from System Settings → Color → Scheme and click Apply. You could change the color scheme later if you choose another Kvantum theme with Kvantum Manager (see "Using Other Themes" | ||
| - | 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==== |
| show the process : | show the process : | ||
| - | `ps axf | grep <process name> | grep -v grep | awk ' | + | '' |
| pipe to sh to kill it | pipe to sh to kill it | ||
| - | `ps axf | grep <process name> | grep -v grep | awk ' | + | '' |
| - | [source](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> | ||
| + | # | ||
| + | |||
| + | 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> | ||
| + | # | ||
| + | cd "/ | ||
| + | wl-paste > / | ||
| + | #launching in a detached terminal to make it work with shortcuts | ||
| + | xfce4-terminal -e ' | ||
| + | rm / | ||
| + | </ | ||
| - | **bash tools** | + | ====bash tools==== |
| <code bash> | <code bash> | ||