From 87ddf27e27b689a85b19f46e3fa5a02bf6600ba6 Mon Sep 17 00:00:00 2001 From: Edwin Noorlander Date: Wed, 5 Nov 2025 15:33:52 +0100 Subject: [PATCH] first commit --- .gitignore | 3 ++ README.md | 0 kde-plasma-theme.omp.json | 107 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 kde-plasma-theme.omp.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..79c33af --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +!./kde-plasma-theme.omp.json +!./README.com +!./.gitignore diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/kde-plasma-theme.omp.json b/kde-plasma-theme.omp.json new file mode 100644 index 0000000..a0c12a1 --- /dev/null +++ b/kde-plasma-theme.omp.json @@ -0,0 +1,107 @@ +{ + // "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", + "profiles":{ + "defaults":{ + "font":{ + "face": "Nerd Font" + } + } + }, + "palette": { + "bg-1": "#232627", + "bg-2": "#3c4045", + "git": "#f67400", + "light-grey": "#cccccc", + "os": "#6a0dad", + "path": "#eff0f1", + "python": "#3daee9", + "shell": "#d0a0e0", + "time": "#eff0f1" + }, + "transient_prompt": { + "template": "❯ ", + "foreground": "#888888", + "background": "transparent" + }, + "blocks": [ + { + "type": "prompt", + "alignment": "left", + "segments": [ + { + "properties": { + "cache_duration": "none" + }, + "leading_diamond": "\ue0b6", + "template": " {{ .Icon }} ", + "foreground": "p:bg-1", + "background": "p:os", + "type": "os", + "style": "diamond" + }, + { + "properties": { + "cache_duration": "none" + }, + "template": " {{ if eq .Name \"bash\" }}\uebca{{ else }}\ue795{{ end }} ", + "foreground": "p:bg-1", + "powerline_symbol": "\ue0b0", + "background": "p:shell", + "type": "shell", + "style": "powerline" + }, + { + "properties": { + "cache_duration": "none", + "style": "full" + }, + "template": " \ue5ff {{ .Path }} ", + "foreground": "p:os", + "powerline_symbol": "\ue0b0", + "background": "p:light-grey", + "type": "path", + "style": "powerline" + } + ] + }, + { + "type": "rprompt", + "alignment": "right", + "segments": [ + { + "type": "git", + "style": "diamond", + "leading_diamond": "\ue0b2", + "foreground": "p:bg-1", + "background": "p:light-grey", + "properties": { + "fetch_status": true + }, + "template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if .Staging.IsDirty }} \uf044 {{ .Staging.String }}{{ end }}{{ if .Working.IsDirty }} \uf044 {{ .Working.String }}{{ end }} " + }, + { + "type": "python", + "style": "diamond", + "leading_diamond": "\ue0b2", + "foreground": "p:bg-1", + "background": "p:light-grey", + "template": "\ue235 {{ .Venv }} " + }, + { + "type": "time", + "style": "diamond", + "leading_diamond": "\ue0b2", + "trailing_diamond": "\ue0b4", + "foreground": "p:bg-1", + "background": "p:os", + "properties": { + "time_format": "15:04:05" + }, + "template": " {{ .CurrentDate | date \"15:04:05\" }} " + } + ] + } + ], + "version": 3, + "final_space": true +}