I'm using ~/.xinitrc (and startx) to start my window manager. It works just fine but some apps are taking a long time to open (i.e. thunar, nemo, etc). Can someone offer some advice on how to track the problem down?
~/.xinitrc:
#!/bin/sh
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
xrdb -merge ~/.Xresources &
exec berry
Thanks. I'm on Ubuntu 21.04. Let me know if more info is needed.
nemo
is part of a desktop environment itself; so your running it will cause a fair amount of the GNOME/Cinnamon desktop backend to be loaded beforenemo
can appear available for use. Light file-managers exist that aren't tied to desktops, so why have you chosen heavy ones linked to desktops you appear to not want to run ? (https://packages.ubuntu.com/hirsute/nemo). this may not be your "long" time but long is a little vague – guiverc Jul 28 '21 at 23:42