Updated files. UPdated live update script.
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
%wheel ALL=(ALL) NOPASSWD: /usr/bin/systemctl start fenrirscreenreader.service, /usr/bin/systemctl stop fenrirscreenreader.service
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
%wheel ALL=(ALL) NOPASSWD: ALL
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[Service]
|
||||||
|
ExecStart=
|
||||||
|
ExecStart=-/usr/bin/agetty --autologin stormux --noclear %I $TERM
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
"pkill -15 Xorg"
|
||||||
|
Control+Alt + BackSpace
|
||||||
|
|
||||||
|
"pgrep -c barnard &> /dev/null && echo 'talk' | sudo -u stormux tee /home/stormux/.config/barnard/cmd &> /dev/null"
|
||||||
|
Super_L
|
||||||
|
|
||||||
|
"pgrep -c barnard &> /dev/null && echo 'talk' | sudo -u stormux tee /home/stormux/.config/barnard/cmd &> /dev/null"
|
||||||
|
Super_R
|
||||||
|
|
||||||
|
"/usr/local/bin/ocr.py"
|
||||||
|
Alt + F5
|
||||||
|
|
||||||
|
"spd-say -C"
|
||||||
|
Shift + Alt + F5
|
||||||
|
|
||||||
|
"/usr/local/bin/record.sh"
|
||||||
|
Shift + F3
|
||||||
+4
-4
@@ -5,10 +5,10 @@ gitPath="${gitUrl##*/}"
|
|||||||
pushd /tmp
|
pushd /tmp
|
||||||
sudo -u stormux git clone "${gitUrl}"
|
sudo -u stormux git clone "${gitUrl}"
|
||||||
pushd "${gitPath}"
|
pushd "${gitPath}"
|
||||||
# Handle home directory files (preserve user ownership)
|
# Copy all files as root (preserves permissions properly)
|
||||||
find . -path './.git' -prune -o -path './home/stormux/*' -type f -exec bash -c 'for i ; do cp -av "${i}" "/${i#./}";done' _ {} \;
|
find . -path './.git' -prune -o -type f -exec bash -c 'for i ; do cp -av --preserve=all "${i}" "/${i#./}";done' _ {} \;
|
||||||
# Handle system files (will be root-owned)
|
# Fix ownership of home directory files
|
||||||
find . -path './.git' -prune -o -path './home' -prune -o -type f -exec bash -c 'for i ; do cp -v "${i}" "/${i#./}";done' _ {} \;
|
chown -R stormux:users /home/stormux
|
||||||
popd
|
popd
|
||||||
rm -rf "${gitPath}"
|
rm -rf "${gitPath}"
|
||||||
popd
|
popd
|
||||||
|
|||||||
Reference in New Issue
Block a user