summaryrefslogtreecommitdiff
path: root/.xinitrc
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-01-07 16:55:21 +0000
committerself <self@sateoki.xyz>2022-01-07 16:55:21 +0000
commite71c6ccddedaa8b7ea5f22ee176fe56b776fc6ba (patch)
tree28d588ed33ccaf1a9aa665a5a942175841dd4897 /.xinitrc
parentb2ccfbf3b732f30c403c9b09122dcac5142abea5 (diff)
Various additions
Diffstat (limited to '.xinitrc')
-rw-r--r--.xinitrc48
1 files changed, 37 insertions, 11 deletions
diff --git a/.xinitrc b/.xinitrc
index c78f35e..44cb796 100644
--- a/.xinitrc
+++ b/.xinitrc
@@ -4,21 +4,47 @@
setxkbmap gb # Set keyboard to gb layout
export SHELL=/bin/zsh # Set shell to zsh
wmname LG3D & # For getting Java applications, e.g. Pycharm, Rider to work.
+/usr/bin/prime-offload # For optimus-manager, nvidia
+
+# Daemons etc.
+mpd
# Programs for creating desktop
-dwmstatus & # Status bar
-picom & # Compositor
+# picom & # Compositor
+
+
+# Launch the Window Manager with a Parameter
+session=${1:-dwm}
+
+run_dwm() {
+ # Run all applications that go hand in hand w/ dwm
+ dwmblocks &
+
+ # Start-up apps for dwm
+ st &
+ librewolf &
+ keepassxc &
+ # discord &
+ firefox &
+
+ while true
+ do
+ dwm # Begin dwm wrapper
+ done
+}
-# Programs to boot on startup
-st &
-librewolf &
+run_kde() {
+ export DESKTOP_SESSION=plasma
+ exec startplasma-x11
+}
-# Must go last
-randombg & # Set a random background. Update to changebg & once theming is complete.
+case $session in
+ i3|i3wm ) exec i3;;
+ kde ) run_kde ;;
+ dwm ) run_dwm ;;
+ # No known session, try to run it as command
+esac
+sudo /usr/bin/prime-switch
-while true
-do
- dwm
-done