-
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.
Merge pull request #18 from Linux-Academic-Group/tauri
Tauri
- Loading branch information
Showing
6 changed files
with
71 additions
and
18 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 +1,2 @@ | ||
tint2 & | ||
feh --bg-fill ~/.config/ducks.jpg & |
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,4 +1,4 @@ | ||
allow_anonymous true | ||
listener 9001 | ||
protocol websockets | ||
listener 1883 ip | ||
listener 1883 |
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,14 @@ | ||
--- rc.old.xml 2022-10-23 14:08:21.960000000 +0200 | ||
+++ rc.xml 2022-10-23 14:04:13.124000000 +0200 | ||
@@ -307,6 +307,11 @@ | ||
<keybind key="Print"> | ||
<action name="Execute"><command>scrot</command></action> | ||
</keybind> | ||
+ <keybind key="C-A-t"> | ||
+ <action name="Execute"> | ||
+ <command>xfce4-terminal</command> | ||
+ </action> | ||
+ </keybind> | ||
</keyboard> | ||
|
||
<mouse> |
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,21 @@ | ||
cp conf/pcc/bash_profile /target/home/pcc/.bash_profile | ||
in-target chown pcc:pcc /home/pcc/.bash_profile | ||
cp conf/etc/apt/sources.list /target/etc/apt/sources.list | ||
cp conf/etc/openbox/rc.xml.patch /target/tmp | ||
in-target patch /etc/xdg/openbox/rc.xml -i /tmp/rc.xml.patch | ||
cp -R conf/.config /target/home/pcc/ | ||
in-target chown -R pcc:pcc /home/pcc/.config | ||
mkdir -p /target/etc/mosquitto | ||
cp conf/etc/mosquitto/mosquitto.conf /target/etc/mosquitto/ | ||
cp conf/pcc/pcc.sh /target/home/pcc/ | ||
in-target chown pcc:pcc /home/pcc/pcc.sh | ||
wget -q -P /target/tmp https://www.mongodb.org/static/pgp/server-6.0.asc | ||
in-target apt-key add /tmp/server-6.0.asc | ||
cp conf/etc/apt/sources.list.d/mongodb-org-6.0.list /target/etc/apt/sources.list.d/mongodb-org-6.0.list | ||
in-target curl -sL https://deb.nodesource.com/setup_16.x > /target/tmp/setup.sh | ||
chmod +x /target/tmp/setup.sh | ||
/target/tmp/setup.sh | ||
wget -P /target/tmp wget https://downloads.mongodb.com/compass/mongodb-compass_1.28.1_amd64.deb | ||
in-target apt-get update | ||
in-target apt-get install -y nodejs mongodb-org /tmp/mongodb-compass_1.28.1_amd64.deb | ||
in-target systemctl enable mongod |
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