Some Useful Scripts in Bash&Python
shell_scripts/
├── auto_mount_devices.sh # script for auto mounting usb devices
├── check-cpu.sh # get your cpu (amd/intel)
├── check-gpu.sh # get your gpu (amd/intel)
├── check_disk_space.sh # check disk usage
├── check_high_cpu_usage.sh # check high cpu usage
├── check_wifi_connection.sh # check connection to WiFi
├── check_wifi_status.sh # check status of WiFi
├── clean_arch.sh # clean arch linux
├── clean_broken_links.sh # clear broken symlinks
├── delete_old_temp_files.sh # delete old file in /tmp/
├── detect_network_changes.sh # detect changes in network
├── detect_new_devices_in_net.sh # detect new devices in network
├── detect_usb_ejection.sh # detect USB ejection
├── kill_undead_processes.sh # kill frozed processes
├── list_of_wifi_nes.sh # get list of wifi networks
├── monitoring_cpu_gpu_temp.sh # monitoring cpu gpu temperature (PR #1)
├── monitoring_net_activity.sh # monitoring network activity
└── optimize_arch_linux.sh # script for fully optimized arch linux
python_scripts/
├── clean_downloads_dir.py # clean and sort files in downloads (or other) directory
├── check_website_access.py # check access to website
├── check_website_ssl_cert.py # check SSL certificate of website
├── create_short_url.py # create shorted URL
├── format-code.py # format-code with black, ruff, isort
├── full_files_renamer.py # fully files auto renamer
└── requirements.txt # requirements for pep
Big thanks to:
- shell_scripts/monitoring_cpu_gpu.sh - qdiaps