bdh-linux 3.2.0__tar.gz → 3.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/PKG-INFO +1 -1
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux/commands/setup.py +9 -9
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux.egg-info/PKG-INFO +1 -1
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/pyproject.toml +1 -1
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux/__init__.py +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux/commands/install.py +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux/commands/remove.py +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux/main.py +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux.egg-info/SOURCES.txt +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux.egg-info/dependency_links.txt +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux.egg-info/entry_points.txt +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux.egg-info/requires.txt +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/bdh_linux.egg-info/top_level.txt +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/setup.cfg +0 -0
- {bdh_linux-3.2.0 → bdh_linux-3.2.2}/setup.py +0 -0
|
@@ -32,22 +32,22 @@ def terminal():
|
|
|
32
32
|
|
|
33
33
|
# Powerlevel10k
|
|
34
34
|
if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/themes/powerlevel10k"))
|
|
35
|
-
|
|
35
|
+
run("git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k"):
|
|
36
36
|
else:
|
|
37
|
-
|
|
37
|
+
print("[yellow]⚡ Powerlevel10k already exists, skipping...[/yellow]")
|
|
38
38
|
|
|
39
39
|
# zsh-autosuggestions
|
|
40
40
|
if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")):
|
|
41
|
-
|
|
41
|
+
run("git clone --depth=1 https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")
|
|
42
42
|
else:
|
|
43
|
-
|
|
43
|
+
print("[yellow]⚡ zsh-autosuggestions already exists, skipping...[/yellow]")
|
|
44
44
|
|
|
45
45
|
# zsh-syntax-highlighting
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting")):
|
|
47
|
+
run("git clone --depth=1 https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting")
|
|
48
|
+
else:
|
|
49
|
+
print("[yellow]⚡ zsh-syntax-highlighting already exists, skipping...[/yellow]")
|
|
50
|
+
|
|
51
51
|
|
|
52
52
|
# Plugins
|
|
53
53
|
if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|