Customize order of OS in grub menu if have dual booted, to install place these in terminal
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
| "workbench.editor.enablePreviewFromQuickOpen": false | |
| "breadcrumbs.enabled": true | |
| "explorer.openEditors.visible": 0 | |
| "editor.minimap.renderCharacters": false, | |
| "editor.minimap.maxColumn": 200, | |
| "editor.minimap.showSlider": "always" | |
| "editor.renderWhitespace": "all" | |
| "editor.smoothScrolling": true | |
| "editor.cursorBlinking": "phase" | |
| "editor.cursorSmoothCaretAnimation": true |
Check for existing SSH keys by ls -al ~/.ssh
ssh-keygen -t ed25519 -C "[email protected]"
| #!/usr/bin/env python3 | |
| # NOTE: This is only useful until Meson 0.38.0 which includes an `uninstall` target. | |
| import argparse | |
| from contextlib import suppress | |
| from os import path, remove | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--dry-run', action='store_true') |
ivrs_ioapic[32]=00:14.0 grub parameter. Sourceloglevel=3 iommu=pt acpi_backlight=native
iommu=pt Solves sudden freeze of graphics Arch Forum Linkacpi_backlight=native Solves back light "failed" message during boot Arch Wikiloglevel=3 iommu=pt acpi_backlight=native apparmor=1 security=apparmor quiet| [Desktop Entry] | |
| Version=1.0 | |
| Name=Firefox Developer Edition | |
| GenericName=Web Browser | |
| Exec=/opt/firefox/firefox %U | |
| Terminal=false | |
| StartupNotify=true | |
| Icon=/opt/firefox/browser/chrome/icons/default/default128.png | |
| Type=Application | |
| Categories=Network;WebBrowser;Favorites; |
| #!/bin/bash | |
| BACKUP_DIR="$HOME/Documents/conf/data/" | |
| LOG_DIR="$HOME/Documents/conf" | |
| LOG_FILE="backup-conf.log" | |
| function handleLog() { | |
| if [ $1 -eq 0 ]; then | |
| echo "$(date +"%Y-%m-%d %H:%M:%S") => SUCCESS: $3 backup successful" | tee -a "$LOG_DIR/$LOG_FILE" | |
| else |