-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor frontend and backend modules. Separate input handling into own
thread. Rename Displays to Screens. Add Clock screen.
- Loading branch information
Showing
12 changed files
with
831 additions
and
495 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
src/demo.rs | ||
todo.json | ||
.cargo | ||
desktopper.zip |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
BIN_DIR=../target/armv7-unknown-linux-gnueabihf/debug | ||
echo "Stopping/Removing job" | ||
systemctl stop desktopper task_api desktopper_display | ||
systemctl disable desktopper task_api desktopper_display | ||
echo "Moving files" | ||
mv systemd_files/* /etc/systemd/system/ | ||
mv $BIN_DIR/api_server /usr/local/bin/ | ||
mv $BIN_DIR/desktopper /usr/local/bin/ | ||
echo "Reloading service files" | ||
systemctl daemon-reload | ||
echo "Starting service" | ||
systemctl enable desktopper task_api desktopper_display | ||
systemctl start desktopper |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pub mod tasks; | ||
pub mod trello_api; |
File renamed without changes.
File renamed without changes.
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
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
Oops, something went wrong.