add todo
This commit is contained in:
Luca Bilke 2023-05-29 22:19:16 +02:00
parent 445bfaa764
commit a09ff841b9
No known key found for this signature in database
GPG Key ID: 7B77C51E8C779E75
2 changed files with 3 additions and 24 deletions

3
TODO.md Normal file
View File

@ -0,0 +1,3 @@
# TODO
- [ ] Integrate networkmanager-dmenu (this depends on how I will implement either polkit or sudoers changes)
- [ ] Bind to disable touchpad

24
test.sh
View File

@ -1,24 +0,0 @@
#!/bin/bash
#set -o xtrace
set -o errexit -o nounset -o pipefail -o errtrace
IFS=$'\n\t'
disp_num=1
disp=:$disp_num
Xephyr -screen 2560x1440 $disp -ac -br -sw-cursor &
pid=$!
while [ ! -e /tmp/.X11-unix/X${disp_num} ] ; do
sleep 0.1
done
export DISPLAY=$disp
xrdb "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xresources" & xrdbpid=$!
setbg &
remaps &
[ -n "$xrdbpid" ] && wait "$xrdbpid"
./dwm
kill $pid
exit 0