Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/default_profiles/desktops/dwm.py
diff options
context:
space:
mode:
authorSumit Patel <89197795+Dark-Kernel@users.noreply.github.com>2023-06-28 23:34:32 +0530
committerGitHub <noreply@github.com>2023-06-28 20:04:32 +0200
commit2450c7bdff093aafba4a227156234ceed1887c31 (patch)
tree6d0c5593a232c3550f1d628465739b76e9333b7e /archinstall/default_profiles/desktops/dwm.py
parent0785b35eb4fb5ce9a1182f3579ed673aa96b8f9f (diff)
Created dwm.py (#1902)
Created dwm.py for suckless users.
Diffstat (limited to 'archinstall/default_profiles/desktops/dwm.py')
-rw-r--r--archinstall/default_profiles/desktops/dwm.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/archinstall/default_profiles/desktops/dwm.py b/archinstall/default_profiles/desktops/dwm.py
new file mode 100644
index 00000000..3a7c0348
--- /dev/null
+++ b/archinstall/default_profiles/desktops/dwm.py
@@ -0,0 +1,35 @@
+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()