From 1f909217276359b57915ed70c94bfe585bed10b4 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Fri, 20 Nov 2020 00:33:33 +0100 Subject: [PATCH] Support raspbian --- README.md | 1 + myd0t.py | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index eea2400..c22a37c 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ submodules) and run `myd0t.py` yourself. - Gentoo - Ubuntu - Debian +- Raspbian (Raspberry Pi OS) - CentOS - Fedora - Arch Linux diff --git a/myd0t.py b/myd0t.py index 731bb70..0d47887 100755 --- a/myd0t.py +++ b/myd0t.py @@ -57,6 +57,12 @@ 'set_editor': ['update-alternatives', '--set', 'editor', '/usr/bin/vim.basic'], 'vimrc': '/etc/vim/vimrc.local', }, + 'raspbian': { + 'install': ['apt', 'install'], + 'packages': {'git': 'git', 'zsh': 'zsh', 'tmux': 'tmux', 'vim': 'vim'}, + 'set_editor': ['update-alternatives', '--set', 'editor', '/usr/bin/vim.basic'], + 'vimrc': '/etc/vim/vimrc.local', + }, }