Created
October 23, 2023 18:30
-
-
Save datavikingr/912f1dffa8412bed8f88e3a6c669d7b8 to your computer and use it in GitHub Desktop.
Chromebook Crostini (Linux) Titlebars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Open a terminal on your chromebook | |
# Create the service file | |
mkdir -p ~/.config/systemd/user/sommelier-x@0.service.d | |
# Populate the service with the color override of choice | |
echo -e '[Service]\nEnvironment="SOMMELIER_FRAME_COLOR=#3c3f41"' > ~/.config/systemd/user/sommelier-x@0.service.d/override.conf | |
# REBOOT THE CHROMEBOOK | |
# reload service objects | |
systemctl --user daemon-reload | |
# restart the service | |
systemctl --user restart sommelier-x@0.service | |
# To edit later, crack open ~/.config/systemd/user/sommelier-x@0.service.d/override.conf in your favorite text editor. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment