From 59165f54c609888eb3f04838ace3586728892933 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Thu, 1 Jul 2021 09:19:20 +0200 Subject: [PATCH] wip --- bundles/oh-my-zsh/files/bw.zsh-theme | 31 ++++++++++++++++++++ bundles/oh-my-zsh/files/zshrc | 6 ++++ bundles/oh-my-zsh/items.py | 43 ++++++++++++++++++++++++++++ bundles/zsh/items.py | 14 +++++++++ bundles/zsh/metadata.py | 17 +++++++++++ groups/all.py | 1 + nodes/htz.mails.py | 3 +- 7 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 bundles/oh-my-zsh/files/bw.zsh-theme create mode 100644 bundles/oh-my-zsh/files/zshrc create mode 100644 bundles/oh-my-zsh/items.py create mode 100644 bundles/zsh/items.py create mode 100644 bundles/zsh/metadata.py diff --git a/bundles/oh-my-zsh/files/bw.zsh-theme b/bundles/oh-my-zsh/files/bw.zsh-theme new file mode 100644 index 0000000..bc0e5d7 --- /dev/null +++ b/bundles/oh-my-zsh/files/bw.zsh-theme @@ -0,0 +1,31 @@ +function spwd { + paths=(${(s:/:)PWD}) + + cur_path='/' + cur_short_path='/' + for directory in ${paths[@]} + do + cur_dir='' + for (( i=0; i<${#directory}; i++ )); do + cur_dir+="${directory:$i:1}" + matching=("$cur_path"/"$cur_dir"*/) + if [[ ${#matching[@]} -eq 1 ]]; then + break + fi + done + cur_short_path+="$cur_dir/" + cur_path+="$directory/" + done + + printf %q "${cur_short_path: : -1}" + echo +} + +indicator="$(hostname -s)" +local ret_status="%(?:%{$fg_bold[green]%}$indicator:%{$fg_bold[red]%}$indicator)" +PROMPT='${ret_status} %{$fg[cyan]%}$(spwd)%{$reset_color%} $(git_prompt_info)' + +ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗" +ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" diff --git a/bundles/oh-my-zsh/files/zshrc b/bundles/oh-my-zsh/files/zshrc new file mode 100644 index 0000000..35ee7f6 --- /dev/null +++ b/bundles/oh-my-zsh/files/zshrc @@ -0,0 +1,6 @@ +export ZSH=~/.zsh/oh-my-zsh +ZSH_THEME=bw +plugins=( + zsh-autosuggestions +) +source $ZSH/oh-my-zsh.sh diff --git a/bundles/oh-my-zsh/items.py b/bundles/oh-my-zsh/items.py new file mode 100644 index 0000000..84320ea --- /dev/null +++ b/bundles/oh-my-zsh/items.py @@ -0,0 +1,43 @@ +from os.path import join + +for name, user_config in node.metadata.get('users').items(): + if user_config.get('shell', None) != '/usr/bin/zsh': + continue + + directories = { + join(user_config['home'], '.zsh'): { + 'owner': name, + }, + join(user_config['home'], '.zsh/oh-my-zsh'): { + 'owner': name, + }, + join(user_config['home'], '.zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions'): { + 'owner': name, + }, + } + + + git_deploy = { + join(user_config['home'], '.zsh/oh-my-zsh'): { + 'repo': 'git://github.com/ohmyzsh/ohmyzsh.git', + 'rev': 'master', + }, + join(user_config['home'], '.zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions'): { + 'repo': 'git://github.com/zsh-users/zsh-autosuggestions.git', + 'rev': 'master', + }, + } + + files = { + join(user_config['home'], '.zshrc'): { + 'owner': name, + 'source': 'zshrc', + }, + join(user_config['home'], '.zsh/oh-my-zsh/themes/bw.zsh-theme'): { + 'owner': name, + 'needs': [ + f"git_deploy:{join(user_config['home'], '.zsh/oh-my-zsh')}", + ] + }, + } + diff --git a/bundles/zsh/items.py b/bundles/zsh/items.py new file mode 100644 index 0000000..fa85dda --- /dev/null +++ b/bundles/zsh/items.py @@ -0,0 +1,14 @@ +from os.path import join + +for name, user_config in node.metadata.get('users').items(): + print(user_config) + if 'oh_my_zsh' in user_config: + directories = { + join(user_config['home'], '.zsh'): {}, + join(user_config['home'], '.zsh/oh-my-zsh'): {}, + } + + git_deploy[join(user_config['home'], '.zsh/oh-my-zsh')] = { + 'repo': 'git://github.com/ohmyzsh/ohmyzsh.git', + 'rev': 'master', + } diff --git a/bundles/zsh/metadata.py b/bundles/zsh/metadata.py new file mode 100644 index 0000000..314d52a --- /dev/null +++ b/bundles/zsh/metadata.py @@ -0,0 +1,17 @@ +defaults = { + 'apt': { + 'packages': { + 'zsh': {}, + } + } +} + +@metadata_reactor.provides( + 'users' +) +def users(metadata): + return { + 'users': { + 'user' + } + } diff --git a/groups/all.py b/groups/all.py index 84da83a..c2e5292 100644 --- a/groups/all.py +++ b/groups/all.py @@ -9,6 +9,7 @@ ], 'users': { 'root': { + 'shell': '/usr/bin/zsh', 'authorized_keys': [ 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEU1l2ijW3ZqzFGZcdWg2ESgTGehdNfBTfafxsjWvWdS mwiegand@macbook', ], diff --git a/nodes/htz.mails.py b/nodes/htz.mails.py index a2f9918..c1038d4 100644 --- a/nodes/htz.mails.py +++ b/nodes/htz.mails.py @@ -12,13 +12,14 @@ ], 'bundles': [ 'nextcloud', + 'oh-my-zsh', 'wireguard', 'zfs', ], 'metadata': { 'nextcloud': { 'domain': 'cloud.sublimity.de', - 'version': '20.0.0', + 'version': '21.0.0', }, 'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae', 'bind': {