To make rclone work, copy rclone.conf to ~/.config/rclone/ — this is what you need to enable the mount to Google Drive.
You can import a GitHub Light colour scheme for GNOME Terminal to make it easier to visually distinguish environments (e.g. staging).
uuid=$(uuidgen)
echo $uuidSave this value — you’ll use it in the following steps.
dconf write /org/gnome/terminal/legacy/profiles:/list "['$uuid']"If a list already exists, append your new UUID manually:
dconf read /org/gnome/terminal/legacy/profiles:/listUpdate it so it looks like:
['existing-uuid', 'new-uuid']Then write it back:
dconf write /org/gnome/terminal/legacy/profiles:/list "['existing-uuid', '$uuid']"dconf write /org/gnome/terminal/legacy/profiles:/:$uuid/visible-name "'GitHub Light'"Make sure you have github-light.dconf in your current directory, then run:
dconf load /org/gnome/terminal/legacy/profiles:/:$uuid/ < github-light.dconfOpen GNOME Terminal → Preferences → select GitHub Light. You can set it as default or switch manually when connecting to staging.
This will give you a terminal with a pure white background and GitHub-inspired colours, which works well with tmux’s staging overrides.