feat: dwm at startup
This commit is contained in:
parent
a6b96285b9
commit
f1fdfb2eb2
@ -1 +1 @@
|
||||
Subproject commit 6b43ce561d97412cc512b569db6938e44529293e
|
||||
Subproject commit 0687eaacc634a82f4832599653ad1305fdf0c941
|
@ -1 +1 @@
|
||||
Subproject commit b67822bf58b0fbf0c496ae21a177d02fa8388edf
|
||||
Subproject commit 28baed769815c54b243f0df606ccb4114287e772
|
@ -1 +1 @@
|
||||
Subproject commit a503ff2930e0f1a8a8dde9fd2a74fa8dad4c22e9
|
||||
Subproject commit 94e171daba4dd76fbf89c6245c69bea949a94b10
|
@ -15,7 +15,7 @@ input type:touchpad {
|
||||
}
|
||||
|
||||
output {
|
||||
eDP-1 mode --custom 1920x1080@120Hz
|
||||
eDP-1 position 0 0 mode --custom 1920x1080@120Hz
|
||||
DP-3 position 1920 0
|
||||
DP-2 position 3840 0
|
||||
* bg $wallpapers/landscape.png fill
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
#[ "$XDG_VTNR" = 1 ] && exec startx
|
||||
[ "$XDG_VTNR" = 1 ] && exec sway 2> "$HOME/sway.log"
|
||||
[ "$XDG_VTNR" = 1 ] && exec startx
|
||||
#[ "$XDG_VTNR" = 1 ] && exec sway 2> "$HOME/sway.log"
|
||||
|
@ -7,7 +7,7 @@ alias vi='$EDITOR'
|
||||
# conf
|
||||
alias config='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
|
||||
alias viconf='(cd $XDG_CONFIG_HOME/nvim && $EDITOR .)'
|
||||
alias wconf='(cd $HOME/.config/sway && $EDITOR .)'
|
||||
alias wconf='(cd $HOME/.config/suckless/dwm* && $EDITOR .)'
|
||||
alias zconf='(cd $ZDOTDIR/ && $EDITOR . && . $ZDOTDIR/.zshrc)'
|
||||
|
||||
# dev
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 55e4e6c73b2bb067974c6d49ba9da2ba1ee3295c
|
||||
Subproject commit 3fca9c8933afc5c118a73cedb171a3c7b8e92730
|
21
.xinitrc
21
.xinitrc
@ -1,8 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
xrandr \
|
||||
--output eDP-1 --auto --primary \
|
||||
--output DP-1-2 --auto --pos 1920x0 \
|
||||
--output DP-1-3 --auto --pos 3840x0
|
||||
# keyboard
|
||||
setxkbmap us altgr-intl
|
||||
|
||||
# mouse
|
||||
(
|
||||
PROP='libinput Accel Profile Enabled'
|
||||
|
||||
for id in $(xinput list --id-only); do
|
||||
xinput set-prop "$id" "$PROP" 0, 1 2> /dev/null
|
||||
done
|
||||
)
|
||||
|
||||
# display
|
||||
xrandr \
|
||||
--output eDP-1 --auto --primary \
|
||||
--output DisplayPort-1-2 --auto --pos 1920x0 \
|
||||
--output DisplayPort-1-1 --auto --pos 3840x0
|
||||
|
||||
exec dwm
|
||||
|
Loading…
Reference in New Issue
Block a user