summaryrefslogtreecommitdiff
path: root/mac/.config/fastfetch/config.jsonc
diff options
context:
space:
mode:
Diffstat (limited to 'mac/.config/fastfetch/config.jsonc')
-rw-r--r--mac/.config/fastfetch/config.jsonc167
1 files changed, 167 insertions, 0 deletions
diff --git a/mac/.config/fastfetch/config.jsonc b/mac/.config/fastfetch/config.jsonc
new file mode 100644
index 0000000..9d17de6
--- /dev/null
+++ b/mac/.config/fastfetch/config.jsonc
@@ -0,0 +1,167 @@
+// I literally was like most of you guys, a dotfiles scavenger, and got this
+// config from https://github.com/waytoabv/Dotfiles/blob/main/.config/fastfetch/config.jsonc
+// So the credit belongs to "waytoabv"
+//
+// kitten icat ~/github/dotfiles-latest/fastfetch/images/link-green.webp
+{
+ "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
+ "logo": {
+ // If working with tmux, you need to use kitty-icat instead of kitty-direct
+ // https://discord.com/channels/1005603569187160125/1324828708128821271/1327261766014599218
+ // "type": "kitty-icat",
+ "type": "auto",
+ "height": 20,
+ "width": 35,
+ "position": "left",
+ "padding": {
+ "top": 4,
+ "right": 3,
+ },
+ },
+ "display": {
+ "separator": " ",
+ },
+ "modules": [
+ "break",
+ {
+ "type": "custom",
+ "format": "┌──────────── Hardware ────────────┐",
+ "outputColor": "cyan",
+ },
+ {
+ "type": "host",
+ "key": " PC ",
+ "keyColor": "light_red",
+ },
+ {
+ "type": "cpu",
+ "key": "│ ├ ",
+ "keyColor": "red",
+ },
+ {
+ "type": "gpu",
+ "key": "│ ├ ",
+ "keyColor": "red",
+ },
+ {
+ "type": "disk",
+ "key": "│ ├ ",
+ "folders": "/",
+ "format": "{size-used} / {size-total} ({size-percentage})",
+ "keyColor": "red",
+ },
+ {
+ "type": "memory",
+ "key": "└ └ ",
+ "keyColor": "red",
+ },
+ {
+ "type": "custom",
+ "format": "└──────────────────────────────────┘",
+ "outputColor": "cyan",
+ },
+ {
+ "type": "custom",
+ "format": "┌──────────── Software ────────────┐",
+ "outputColor": "cyan",
+ },
+ {
+ "type": "os",
+ "key": " OS ",
+ "keyColor": "light_green",
+ },
+ {
+ "type": "kernel",
+ "key": "│ ├ ",
+ "keyColor": "green",
+ },
+ {
+ "type": "initsystem",
+ "key": "│ ├ ",
+ "keyColor": "green",
+ },
+ {
+ "type": "packages",
+ "key": "│ ├󰏖 ",
+ "keyColor": "green",
+ },
+ {
+ "type": "localip",
+ "key": "└ └󰩠 ",
+ "keyColor": "green",
+ },
+ {
+ "type": "lm",
+ "key": "󰍂 IN ",
+ "keyColor": "blue",
+ },
+ {
+ "type": "de",
+ "key": " DE ",
+ "keyColor": "blue",
+ },
+ {
+ "type": "wm",
+ "key": "│ ├ ",
+ "keyColor": "blue",
+ },
+ {
+ "key": "│ ├ ",
+ "keyColor": "blue",
+ "type": "command",
+ "text": "pgrep dwmblocks &> /dev/null && echo dwmblocks || echo Quartz Compositor",
+ },
+ {
+ "type": "terminal",
+ "key": "│ ├ ",
+ "keyColor": "blue",
+ },
+ {
+ "type": "terminalfont",
+ "key": "└ └ ",
+ "keyColor": "blue",
+ },
+ {
+ "type": "shell",
+ "key": "TERM",
+ "keyColor": "yellow",
+ },
+ {
+ "type": "editor",
+ "key": "│ ├󱩽 ",
+ "keyColor": "yellow",
+ },
+ {
+ "key": "└ └󱧷 ",
+ "keyColor": "yellow",
+ "type": "command",
+ "text": "echo $FILE_MANAGER",
+ },
+ {
+ "type": "custom",
+ "format": "└──────────────────────────────────┘",
+ "outputColor": "cyan",
+ },
+ {
+ "type": "custom",
+ "format": "┌────────── Age / Uptime ──────────┐",
+ "outputColor": "cyan",
+ },
+ {
+ "type": "command",
+ "key": " OS Age",
+ "keyColor": "magenta",
+ "text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days",
+ },
+ {
+ "type": "uptime",
+ "key": " Uptime",
+ "keyColor": "magenta",
+ },
+ {
+ "type": "custom",
+ "format": "└──────────────────────────────────┘",
+ "outputColor": "cyan",
+ },
+ ],
+}