From e422e873847ef1188ccc9da60971c237c863660c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20D=C3=B6rr?= Date: Sat, 4 Sep 2021 16:33:21 +0200 Subject: [PATCH] theme: adds new themes (rudolfs dark / light) --- themes/rudolfs-dark.omp.json | 84 +++++++++++++++++++++++++++++++++++ themes/rudolfs-light.omp.json | 81 +++++++++++++++++++++++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 themes/rudolfs-dark.omp.json create mode 100644 themes/rudolfs-light.omp.json diff --git a/themes/rudolfs-dark.omp.json b/themes/rudolfs-dark.omp.json new file mode 100644 index 00000000..8c824376 --- /dev/null +++ b/themes/rudolfs-dark.omp.json @@ -0,0 +1,84 @@ +{ + "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", + "blocks": [ + { + "type": "prompt", + "alignment": "left", + "segments": [ + { + "type": "root", + "style": "plain", + "foreground": "#ffffff", + "background": "#BF231D" + }, + { + "type": "os", + "style": "plain", + "background": "#0A703E", + "foreground": "#ffffff", + "properties": { + "wsl": "", + "wsl_separator": "", + "prefix": " ", + "postfix": " " + + } + }, + { + "type": "session", + "style": "plain", + "background": "#0A703E", + "foreground": "#ffffff", + "properties": { + "display_host": false, + "prefix": "", + "postfix": " " + } + }, + { + "type": "path", + "style": "plain", + "foreground": "#ffffff", + "background": "#256C9D", + "properties": { + "max_depth": 2, + "folder_icon": "\uF115", + "folder_separator_icon": " \uE0B1 ", + "style": "agnoster_short", + "postfix": " " + } + }, + { + "type": "git", + "style": "plain", + "foreground": "#ffffff", + "background": "#256C9D", + "properties": { + "branch_max_length": 30, + "display_stash_count": false, + "display_upstream_icon": true, + "display_status": true, + "status_colors_enabled": false, + "color_background": true, + "local_changes_color": "#ffffff", + "working_color": "#ffffff", + "staging_color": "#ffffff", + "ahead_color": "#ffffff", + "behind_color": "#ffffff", + "prefix": "[ ", + "postfix": " ]" + } + }, + { + "type": "text", + "style": "plain", + "foreground": "#256C9D", + "properties": { + "prefix": "", + "text": "\uE0B0" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/themes/rudolfs-light.omp.json b/themes/rudolfs-light.omp.json new file mode 100644 index 00000000..7eb5a762 --- /dev/null +++ b/themes/rudolfs-light.omp.json @@ -0,0 +1,81 @@ +{ + "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", + "blocks": [ + { + "type": "prompt", + "alignment": "left", + "segments": [ + { + "type": "root", + "style": "plain", + "background": "#E0E0E0", + "foreground": "#BF231D" + }, + { + "type": "os", + "style": "plain", + "background": "#E0E0E0", + "foreground": "#EF7D00", + "properties": { + "wsl": "", + "wsl_separator": "", + "prefix": " ", + "postfix": " " + + } + }, + { + "type": "session", + "style": "plain", + "background": "#E0E0E0", + "foreground": "#424242", + "properties": { + "display_host": false, + "prefix": "", + "postfix": "" + } + }, + { + "type": "git", + "style": "plain", + "background": "#E0E0E0", + "foreground": "#424242", + "properties": { + "display_stash_count": false, + "branch_max_length": 30, + "display_upstream_icon": true, + "display_status": true, + "status_colors_enabled": true, + "color_background": false, + "local_changes_color": "#053F22", + "working_color": "#BD6200", + "staging_color": "#053F22", + "ahead_color": "#0A703E", + "behind_color": "#0A703E", + "prefix": " [", + "postfix": "] " + } + }, + { + "type": "path", + "style": "plain", + "background": "#E0E0E0", + "foreground": "#424242", + "properties": { + "style": "full", + "postfix": "" + } + }, + { + "type": "text", + "style": "plain", + "foreground": "#E0E0E0", + "properties": { + "prefix": "", + "text": "\uE0B0" + } + } + ] + } + ] +} \ No newline at end of file