An open API service indexing awesome lists of open source software.

https://github.com/claytontdm/scripts

Random scripts I've whipped up from time to time
https://github.com/claytontdm/scripts

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

Last synced: 3 months ago
JSON representation

Random scripts I've whipped up from time to time

Awesome Lists containing this project

README

          

## install.sh

Installs the tools and customizations I use daily. Intended for a fresh Linux Mint install running Cinnamon.

```sh
curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/install.sh -o install.sh && sudo chmod +x ./install.sh && ./install.sh
```

Last tested on Linux Mint 22.1 Cinnamon, LMDE 6 Faye

## asus_fan.sh

**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).

```sh
curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/asus_fan.sh -o asus_fan.sh && sudo bash ./asus_fan.sh && rm -rf ./asus_fan.sh
```

Last tested on Linux Mint 22.1 Cinnamon, LMDE 6 Faye

## asus_fan_uninstall.sh

Uninstalls the above script.

```sh
curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/asus_fan_uninstall.sh -o asus_fan_uninstall.sh && sudo bash ./asus_fan_uninstall.sh && rm -rf ./asus_fan_uninstall.sh
```

Last tested on Linux Mint 22.1 Cinnamon, LMDE 6 Faye

## line-count.sh

Outputs 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.

```sh
curl -s https://raw.githubusercontent.com/ClaytonTDM/scripts/refs/heads/main/line-count.sh | bash
```

---

> [!WARNING]
> The below scripts have been unmaintained for years and are likely useless & broken. Proceed with caution

Click me

## Kali Cinnamon

Very simple script to install the Cinnamon desktop environment on Kali Linux, along with the default cursors, icons, & themes.

```sh
curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/kali-cinnamon.sh | bash
```

Last tested on Kali Linux 2023.4

## Ubuntu Essentials

Most of the apps me and many others use daily, now in a convenient bash script.

```sh
curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/ubuntu-essentials.sh | bash
```

Last tested on Linux Mint 21.1 Cinnamon

## Windows Essentials

Same as Ubuntu Essentials, but for Windows 10 (1809+) and Windows 11.

To execute this, copy the command, then paste it in `cmd.exe`.

```cmd
curl https://raw.githubusercontent.com/ClaytonTDM/scripts/main/windows-essentials.bat -o windows-essentials.bat
windows-essentials.bat
del windows-essentials.bat
```

Last tested on Windows 11 22H2