Getting configs ready for DTOS launch.

This commit is contained in:
Derek Taylor
2025-04-12 18:20:12 -05:00
parent 3914ee6eea
commit c03f073c0c
3 changed files with 17 additions and 4 deletions

0
.config/emacs/agenda.org Normal file
View File

View File

@@ -770,7 +770,7 @@ Neotree is a file tree viewer. When you open neotree, it jumps to the current f
* ORG MODE
** Agenda
#+begin_src emacs-lisp
(setq org-agenda-files '("~/nc/Org/agenda.org"))
(setq org-agenda-files '("~/.config/emacs/agenda.org"))
#+end_src
** Bullets

View File

@@ -3,13 +3,22 @@
COLORSCHEME=DoomOne
### AUTOSTART PROGRAMS ###
lxsession &
picom --daemon &
/usr/bin/emacs --daemon &
if systemd-detect-virt --quiet; then
lxsession &
sleep 1
killall picom
xrandr -s 1920x1080 &
else
lxsession &
fi
nm-applet &
"$HOME"/.screenlayout/layout.sh &
sleep 1
conky -c "$HOME"/.config/conky/qtile/01/"$COLORSCHEME".conf || echo "Couldn't start conky."
sleep 1
/usr/bin/emacs --daemon &
### UNCOMMENT ONLY ONE OF THE FOLLOWING THREE OPTIONS! ###
# 1. Uncomment to restore last saved wallpaper
@@ -18,3 +27,7 @@ xargs xwallpaper --stretch < ~/.cache/wall &
# find /usr/share/backgrounds/dtos-backgrounds/ -type f | shuf -n 1 | xargs xwallpaper --stretch &
# 3. Uncomment to set wallpaper with nitrogen
# nitrogen --restore &
if [ ! -d "$HOME"/.cache/betterlockscreen/ ]; then
betterlockscreen -u /usr/share/backgrounds/dtos-backgrounds/0277.jpg &
fi