-
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.
- Loading branch information
1 parent
de46dc6
commit e093664
Showing
5 changed files
with
64 additions
and
20 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 |
---|---|---|
|
@@ -127,3 +127,5 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
id |
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,9 @@ | ||
#!/bin/bash | ||
|
||
sudo apt install xclip xsel | ||
cp octaned.service.sample /etc/systemd/system/octaned.service | ||
mkdir $HOME/.octane/ | ||
cp octane.py $HOME/.octane/ | ||
cp octane.sxhkdrc.sample %HOME/.octane/octane.sxhkdrc | ||
chmod 644 /etc/systemd/system/octaned.service | ||
systemctl enable octane.service |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
win + c | ||
octaine status put | ||
$HOME/.octane/octane.py room connect | ||
$HOME/.octane/octane.py status put | ||
$HOME/.octane/octane.py content put | ||
$HOME/.octane/octane.py room disconnect | ||
|
||
win + v | ||
octaine status get | xdotool type | ||
$HOME/.octane/octane.py status get | xdotool type |
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,12 @@ | ||
[Unit] | ||
Description=Quantilier Startup Service | ||
Wants=network-online.target | ||
After=network-online.target | ||
|
||
[Service] | ||
Type=simple | ||
WorkingDirectory=$HOME/.octane/ | ||
ExecStart=/usr/bin/sxhkd -c $HOME/.octane/octane.sxhkdrc | ||
|
||
[Install] | ||
WantedBy=multi-user.target |