diff options
author | 2022-03-15 00:24:12 +0530 | |
---|---|---|
committer | 2022-03-15 00:24:12 +0530 | |
commit | 4e5d83326d0094b2c344abbf598c14d04c28260b (patch) | |
tree | 7bc790cede04f61860e3e5bf811f557c8a601253 /install | |
parent | ab19ed42e1495bf83434ea6dd68b8df755913320 (diff) | |
download | shopno-os-log-sync-4e5d83326d0094b2c344abbf598c14d04c28260b.tar.gz shopno-os-log-sync-4e5d83326d0094b2c344abbf598c14d04c28260b.zip |
(xprofile) | changing aproach to install/run watch_log script | adding install uninstall script
Diffstat (limited to 'install')
-rwxr-xr-x | install | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -0,0 +1,36 @@ +#!/bin/bash + +echo "[*] Thanks for landing here." +sleep 2s +echo "[*] First off all Watcher uses very less resources like alomost 10 MBs." +sleep 3s +echo "[*] Also some of the features are in development like AFK" +sleep 2s +echo "[*] So let's start installtion process... " + +sudo cp -r ./src/Watcher /usr/share/ +cp -r ./src/bin/watcher /usr/local/bin/ +sudo chmod +x /usr/local/bin/watcher + +# making directory for log-files (where all you daily logs are stored) +mkdir -p ~/.cache/Watcher/ +mkdir -p ~/.cache/Watcher/raw_data/ +mkdir -p ~/.cache/Watcher/Analysis/ + +# checking wherther is ~/.xprofile is sourced in ~/.xintrc or not +count1=$(grep -c "xprofile" $HOME/.xinitrc) +echo $count1 +# checking whether user have used watcher before +count2=$(grep -c "watcher --start" $HOME/.xprofile) + +if [[ $count1 > 0 ]];then + if [[ $count2 = 0 ]];then + echo "killall watcher" >> $HOME/.xprofile + echo "watcher --start &" >> $HOME/.xprofile + fi +else + echo "[ -f /etc/xprofile ] && . /etc/xprofile" >> $HOME/.xinitrc + echo "[ -f ~/.xprofile ] && . ~/.xprofile" >> $HOME/.xinitrc +fi + +echo "Now you can use Watcher after restart. and see you around if anything goes wrong do PR or smth else" |