diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2021-08-05 18:44:52 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2021-08-05 18:44:52 +0200 |
commit | c1b97d0da3fc928698a7bd2d2770a1875b23fa25 (patch) | |
tree | 9318c9f0eec0ed0dcca3147ede0078511d61c298 | |
parent | dc86812f6ddf41decc20f4cd49780e93c9a7b455 (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 |