{"id":15020123,"url":"https://github.com/claytontdm/scripts","last_synced_at":"2025-10-29T10:31:34.644Z","repository":{"id":164871762,"uuid":"622082271","full_name":"ClaytonTDM/scripts","owner":"ClaytonTDM","description":"Random scripts I've whipped up from time to time","archived":false,"fork":false,"pushed_at":"2023-11-24T22:31:51.000Z","size":68,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-12-16T16:22:18.951Z","etag":null,"topics":["bash","bash-script","batch","batch-script","cmd","cmd-batch","cmd-scripts","kali-linux","linux","linux-mint","powershell","powershell-script","ubuntu","windows","windows-10","windows-11","windows10","windows11","winget","winget-cli"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ClaytonTDM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-01T04:17:07.000Z","updated_at":"2024-04-22T09:06:22.000Z","dependencies_parsed_at":"2023-11-24T23:25:41.538Z","dependency_job_id":"77fa5273-2453-47a2-8fed-288a76bb17a9","html_url":"https://github.com/ClaytonTDM/scripts","commit_stats":{"total_commits":67,"total_committers":1,"mean_commits":67.0,"dds":0.0,"last_synced_commit":"f6a82e1b1a4c83ce721ca1cbe9c0a6fd0a25da7b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaytonTDM%2Fscripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaytonTDM%2Fscripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaytonTDM%2Fscripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaytonTDM%2Fscripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ClaytonTDM","download_url":"https://codeload.github.com/ClaytonTDM/scripts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230782977,"owners_count":18279557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","bash-script","batch","batch-script","cmd","cmd-batch","cmd-scripts","kali-linux","linux","linux-mint","powershell","powershell-script","ubuntu","windows","windows-10","windows-11","windows10","windows11","winget","winget-cli"],"created_at":"2024-09-24T19:54:37.159Z","updated_at":"2025-10-29T10:31:34.640Z","avatar_url":"https://github.com/ClaytonTDM.png","language":"Shell","readme":"## install.sh\n\nInstalls the tools and customizations I use daily. Intended for a fresh Linux Mint install running Cinnamon.\n\n```sh\ncurl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/install.sh -o install.sh \u0026\u0026 sudo chmod +x ./install.sh \u0026\u0026 ./install.sh\n```\n\nLast tested on Linux Mint 22.1 Cinnamon, LMDE 6 Faye\n\n## asus_fan.sh\n\n**Only intended for ASUS laptops with `asus_wmi` firmware.** Installs a script to send a notification every time the fan boost mode is changed (often using an FN key combo).\n\n```sh\ncurl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/asus_fan.sh -o asus_fan.sh \u0026\u0026 sudo bash ./asus_fan.sh \u0026\u0026 rm -rf ./asus_fan.sh\n```\n\nLast tested on Linux Mint 22.1 Cinnamon, LMDE 6 Faye\n\n## asus_fan_uninstall.sh\n\nUninstalls the above script.\n\n```sh\ncurl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/asus_fan_uninstall.sh -o asus_fan_uninstall.sh \u0026\u0026 sudo bash ./asus_fan_uninstall.sh \u0026\u0026 rm -rf ./asus_fan_uninstall.sh\n```\n\nLast tested on Linux Mint 22.1 Cinnamon, LMDE 6 Faye\n\n## line-count.sh\n\nOutputs the line count of all files in the current directory and all subdirectories in an XML-like format, excluding `.git` and `node_modules`. Useful for GitHub Copilot.\n\n```sh\ncurl -s https://raw.githubusercontent.com/ClaytonTDM/scripts/refs/heads/main/line-count.sh | bash\n```\n\n---\n\n\u003e [!WARNING]\n\u003e The below scripts have been unmaintained for years and are likely useless \u0026 broken. Proceed with caution\n\n\u003cdetails\u003e\n  \u003csummary\u003eClick me\u003c/summary\u003e\n\n  ## Kali Cinnamon\n\n  Very simple script to install the Cinnamon desktop environment on Kali Linux, along with the default cursors, icons, \u0026 themes.\n  \n  ```sh\n  curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/kali-cinnamon.sh | bash\n  ```\n\n  Last tested on Kali Linux 2023.4\n\n  ## Ubuntu Essentials\n\n  Most of the apps me and many others use daily, now in a convenient bash script.\n\n  ```sh\n  curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/ubuntu-essentials.sh | bash\n  ```\n\n  Last tested on Linux Mint 21.1 Cinnamon\n\n  ## Windows Essentials\n\n  Same as Ubuntu Essentials, but for Windows 10 (1809+) and Windows 11.\n\n  To execute this, copy the command, then paste it in `cmd.exe`.\n\n  ```cmd\n  curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/windows-essentials.bat -o windows-essentials.bat\n  windows-essentials.bat\n  del windows-essentials.bat\n  ```\n\n  Last tested on Windows 11 22H2\n\n\u003c/details\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaytontdm%2Fscripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclaytontdm%2Fscripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaytontdm%2Fscripts/lists"}