This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"info": [ | |
{ | |
"label": "CPU Temp", | |
"command": "/opt/vc/bin/vcgencmd measure_temp | cut -d = -f 2 | awk '{printf \"%s \", $1}'", | |
"interval": 5 | |
}, | |
{ | |
"label": "CPU Load", | |
"command": "top -bn1 | grep load | awk '{printf \"%.2f%%\", $(NF-2)}'", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################### | |
# | |
# Installation Script | |
# | |
########################################### | |
param ( | |
[string]$password = "", | |
[string]$pkg_url = $null, | |
[string]$pkg_file = ".\pkg.json", | |
[bool]$nochecks = $false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Script to get macOS apps info and write to CSV. | |
""" | |
import argparse | |
import csv | |
import os | |
import plistlib | |
import subprocess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
#### import httpx | |
import urllib | |
json_list = [ | |
"https://github.com/replete/obsidian-minimal-theme-css-snippets/blob/main/%5Bui%5D%20Compact%20Tabs.css", | |
"https://github.com/efemkay/obsidian-modular-css-layout/blob/main/MCL%20Gallery%20Cards.css", | |
"https://github.com/efemkay/obsidian-modular-css-layout/blob/main/MCL%20Multi%20Column.css", | |
"https://github.com/efemkay/obsidian-modular-css-layout/blob/main/MCL%20Wide%20Views.css", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | |
"logo": { | |
"type": "iterm", | |
"source": "~/.config/fastfetch/logo.png", | |
"padding": { | |
"right": 5, | |
"top": 5 | |
}, | |
"height": 16, |
OlderNewer