diff options
author | adamstuck <adam.moloney.stuck@gmail.com> | 2021-08-05 18:44:52 +0200 |
---|---|---|
committer | adamstuck <adam.moloney.stuck@gmail.com> | 2021-08-05 18:44:52 +0200 |
commit | ed88a01516584e7be33cdbdb6df2035db9e8f3bf (patch) | |
tree | 9318c9f0eec0ed0dcca3147ede0078511d61c298 | |
parent | b842796f8f1dd4a3dd7d8adfaa2fd41c66dbd08f (diff) |
Reverted to using xinit instead of lightdm
-rw-r--r-- | .config/i3/config | 12 | ||||
-rw-r--r-- | .xinitrc | 24 |
2 files changed, 9 insertions, 27 deletions
diff --git a/.config/i3/config b/.config/i3/config index bd3a73d..d76fcdf 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -159,16 +159,6 @@ for_window [class="^Steam$" title="^Steam Guard - Computer Authorization Require for_window [title="^Steam Keyboard$"] floating enable -##### Misc/Exec +##### Exec -# NetworkManager is the most popular way to manage wireless networks on Linux, -# and nm-applet is a desktop environment-independent system tray GUI for it. -exec --no-startup-id nm-applet - -exec --no-startup-id nitrogen --restore -exec --no-startup-id greenclip daemon -exec --no-startup-id picom --config $HOME/.config/picom/picom.conf -b exec_always --no-startup-id $HOME/.config/polybar/launch.sh - -# Switch keyboard layout -exec --no-startup-id setxkbmap -option grp:win_space_toggle us,dk @@ -8,15 +8,7 @@ sysmodmap=/etc/X11/xinit/.Xmodmap # merge in defaults and keymaps if [ -f $sysresources ]; then - - - - - - - xrdb -merge $sysresources - fi if [ -f $sysmodmap ]; then @@ -24,15 +16,7 @@ if [ -f $sysmodmap ]; then fi if [ -f "$userresources" ]; then - - - - - - - xrdb -merge "$userresources" - fi if [ -f "$usermodmap" ]; then @@ -47,3 +31,11 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then done unset f fi + + +nitrogen --restore & +greenclip daemon & +picom --config $HOME/.config/picom/picom.conf -b & +setxkbmap -option grp:win_space_toggle us,dk & + +exec i3 |