Compare commits

...

2 Commits

Author SHA1 Message Date
53b43eda88 add desktop background 2026-07-19 16:11:49 -05:00
e28f15a0c2 fix a few formatting things 2026-07-19 16:11:35 -05:00
2 changed files with 10 additions and 3 deletions

View File

@@ -19,11 +19,12 @@ gsettings set org.cinnamon.gestures swipe-right-3 "WORKSPACE_PREVIOUS::start" #
gsettings set org.cinnamon.desktop.wm.preferences mouse-button-modifier "'<Super>'" gsettings set org.cinnamon.desktop.wm.preferences mouse-button-modifier "'<Super>'"
# hide annoying super menu icons # hide annoying super menu icons
echo "* hide annoying super menu icons" | tee todo.md -a
# startup programs - artha # startup programs - artha
mkdir -p $HOME/.config/autostart mkdir -p "$HOME/.config/autostart"
cp ./utils/artha-autostart.desktop $HOME/.config/autostart/artha.desktop cp ./utils/artha-autostart.desktop "$HOME/.config/autostart/artha.desktop"
chmod 755 $HOME/.config/autostart/artha.desktop chmod 755 "$HOME/.config/autostart/artha.desktop"
# disable calendar widget showing events too # disable calendar widget showing events too
# 13.json corresponds to the numerical (zero-indexed) position in the # 13.json corresponds to the numerical (zero-indexed) position in the
@@ -42,3 +43,9 @@ TASKBAR_LAYOUT='[
]' ]'
cat $FP | jq --argjson layout "$TASKBAR_LAYOUT" '.["pinned-apps"]["value"] = $layout' | tee tmp.json && mv tmp.json "$FP" cat $FP | jq --argjson layout "$TASKBAR_LAYOUT" '.["pinned-apps"]["value"] = $layout' | tee tmp.json && mv tmp.json "$FP"
# set desktop background image
IMAGE_NAME="smoky-mountains-background.jpg"
mkdir -p "$HOME/.local/share/backgrounds"
cp "./utils/$IMAGE_NAME" "$HOME/.local/share/backgrounds/$IMAGE_NAME"
gsettings set org.cinnamon.desktop.background picture-uri "file://$HOME/.local/share/backgrounds/$IMAGE_NAME"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB