bdh-linux 3.1.0__tar.gz → 3.2.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bdh-linux
3
- Version: 3.1.0
3
+ Version: 3.2.0
4
4
  Summary: bdh-linux — Backend Developer OS setup tool for Arch/Manjaro
5
5
  Author-email: Prabakaran <prabakaran20020430@gmail.com>
6
6
  License: MIT
@@ -27,13 +27,28 @@ def terminal():
27
27
  else:
28
28
  print("[yellow]⚡ Oh My Zsh already exists, skipping...[/yellow]")
29
29
 
30
+ # Powerlevel10
30
31
  # Powerlevel10k
31
- if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/themes/powerlevel10k")):
32
- print("[yellow]🎨 Installing Powerlevel10k...[/yellow]")
32
+
33
+ # Powerlevel10k
34
+ if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/themes/powerlevel10k"))
33
35
  run("git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k")
34
36
  else:
35
37
  print("[yellow]⚡ Powerlevel10k already exists, skipping...[/yellow]")
36
38
 
39
+ # zsh-autosuggestions
40
+ if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")):
41
+ run("git clone --depth=1 https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")
42
+ else:
43
+ print("[yellow]⚡ zsh-autosuggestions already exists, skipping...[/yellow]")
44
+
45
+ # zsh-syntax-highlighting
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
+
37
52
  # Plugins
38
53
  if not os.path.isdir(os.path.expanduser("~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")):
39
54
  run("git clone --depth=1 https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bdh-linux
3
- Version: 3.1.0
3
+ Version: 3.2.0
4
4
  Summary: bdh-linux — Backend Developer OS setup tool for Arch/Manjaro
5
5
  Author-email: Prabakaran <prabakaran20020430@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bdh-linux"
7
- version = "v3.1.0"
7
+ version = "v3.2.0"
8
8
  description = "bdh-linux — Backend Developer OS setup tool for Arch/Manjaro"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes