Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/default_profiles
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2023-06-29 09:49:22 +0200
committerGitHub <noreply@github.com>2023-06-29 09:49:22 +0200
commit58bccccd5d2048dd002ec0f2efeb185e480a72bd (patch)
tree10ff53e6891da1e9a66a780e293e54cfc4c5bb97 /archinstall/default_profiles
parent025ee8f064f6a142aa3de702c42c52101e8da9f6 (diff)
Revert "Created dwm.py (#1902)" - This reverts commit 2450c7bdff093aafba4a227156234ceed1887c31. (#1905)
Diffstat (limited to 'archinstall/default_profiles')
-rw-r--r--archinstall/default_profiles/desktops/dwm.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/archinstall/default_profiles/desktops/dwm.py b/archinstall/default_profiles/desktops/dwm.py
deleted file mode 100644
index 6b9ca6bc..00000000
--- a/archinstall/default_profiles/desktops/dwm.py
+++ /dev/null
@@ -1,35 +0,0 @@
-from typing import List, Optional, Any, TYPE_CHECKING
-
-from archinstall.default_profiles.profile import ProfileType, GreeterType
-from archinstall.default_profiles.xorg import XorgProfile
-
-if TYPE_CHECKING:
- _: Any
-
-
-class BspwmProfile(XorgProfile):
- def __init__(self):
- super().__init__('Bspwm', ProfileType.WindowMgr, description='')
-
- @property
- def packages(self) -> List[str]:
- return [
- 'dwm',
- 'st',
- 'dmenu',
- 'picom',
- 'xorg-xsetroot',
- 'xorg-xset',
- 'pywal',
- 'xdo',
- 'dunst',
- 'slock'
- ]
-
- @property
- def default_greeter_type(self) -> Optional[GreeterType]:
- return GreeterType.Lightdm
-
- def preview_text(self) -> Optional[str]:
- text = str(_('Environment type: {}')).format(self.profile_type.value)
- return text + '\n' + self.packages_text()