Hello.
im running raspbian buster. i have pcmanfm configured to open the side pane in Places. It always defaults to Filesystem Root. Can't figure out how to get it to start on Home Folder.
hmm. so i am running raspbian headless and i have a VNC server set up on it. looks like when i open a terminal it defaults to /
Code: Select all
alias rpi="ssh pi@192.168.1.7 'vncserver -geometry 1900x1080 -depth 24 :1' ; vncviewer 192.168.1.7:1 -passwd /home/callmejoe/.vnc/passwd"Code: Select all
systemctl status vncserver@1.serviceCode: Select all
[Unit]
Description=Start tightvnc server
After=syslog.target network.target
[Service]
Type=forking
User=pi
WorkingDirectory=/home/pi
PAMName=login
# Clean any existing files in /tmp/.X11-unix environment
ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill :%i > /dev/null 2>&1 || :'
ExecStart=/usr/bin/vncserver :%i -geometry 1900x1080 -depth 24
PIDFile=/home/pi/.vnc/%H%i.pid
ExecStop=/bin/sh -c '/usr/bin/vncserver -kill :%i > /dev/null 2>&1 || :'
[Install]
WantedBy=multi-user.target