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

https://github.com/0xtadash1/embarrassing_settings

Files that I somehow don't want to expose. Just because it's more convenient for me, here is Public.
https://github.com/0xtadash1/embarrassing_settings

Last synced: 10 months ago
JSON representation

Files that I somehow don't want to expose. Just because it's more convenient for me, here is Public.

Awesome Lists containing this project

README

          

# embarrassing\_settings

## Oneliners

I can get the following all without cloning this repo.

- Copy the passphrase to clipboard from Bitwarden:
```shell
bw get item 7feb205a-f989-4103-92e7-af4201156bf9 \
| sed -E 's/^.*"Passphrase","value":"|","type":.*$//g' \
| tee >(pbcopy || xclip -sel clip)
```
- Copy settings for **EnhancerForYoutube**:
```shell
curl -fsSL 'https://raw.githubusercontent.com/0xTadash1/embarrassing_settings/main/browser_extension/EnhancerForYoutube_settings.json.age' \
| age -d \
| (pbcopy || xclip -sel clip)
```
- Save settings for **AdGuard** as `/tmp/AdGuard.XXXXXXXXXX.json`:
```shell
curl -fsSL 'https://raw.githubusercontent.com/0xTadash1/embarrassing_settings/main/browser_extension/AdGuard_settings.json.age' \
| age -d > "$(mktemp -t AdGuard.XXXXXXXXXX).json"
```

### Prerequisites

- curl
- bw
- age