Update
This commit is contained in:
parent
f961d333fa
commit
2b42b7a86e
@ -2,9 +2,9 @@
|
||||
<actions>
|
||||
<action>
|
||||
<icon>utilities-terminal</icon>
|
||||
<name>Open in Terminal</name>
|
||||
<name>Open Terminal Here</name>
|
||||
<unique-id>1499240572835265-1</unique-id>
|
||||
<command>exo-open --launch TerminalEmulator %f</command>
|
||||
<command>exo-open --launch TerminalEmulator</command>
|
||||
<description>Open terminal emulator in current directory</description>
|
||||
<patterns>*</patterns>
|
||||
<startup-notify/>
|
||||
|
0
home/.hushlogin
Normal file
0
home/.hushlogin
Normal file
@ -7,11 +7,9 @@ wireless_connected=""
|
||||
ethernet_connected=""
|
||||
|
||||
while true; do
|
||||
if ! (ping -c 1 archlabslinux.com || ping -c 1 google.com || ping -c 1 bitbucket.org) &>/dev/null; then
|
||||
if ! (ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then
|
||||
echo "$disconnected" ; sleep 0.6
|
||||
echo "$disconnected2" ; sleep 0.6
|
||||
fi
|
||||
if (ping -c 1 archlabslinux.com || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then
|
||||
echo "$disconnected" ; sleep 0.6
|
||||
echo "$disconnected2" ; sleep 0.6
|
||||
else
|
||||
# avoid checking what type of interface it is every loop
|
||||
if (( count < 1 )); then
|
||||
@ -20,9 +18,9 @@ while true; do
|
||||
fi
|
||||
|
||||
if [[ $ID == e* ]]; then
|
||||
echo "$ethernet_connected" ; sleep 20
|
||||
echo "$ethernet_connected" ; sleep 25
|
||||
else
|
||||
echo "$wireless_connected" ; sleep 20
|
||||
echo "$wireless_connected" ; sleep 25
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
@ -3,11 +3,9 @@
|
||||
BAR_ICON=""
|
||||
NOTIFY_ICON=/usr/share/icons/gnome/32x32/apps/system-software-update.png
|
||||
|
||||
get_total_updates() { UPDATES=$(checkupdates | wc -l); }
|
||||
get_total_updates() { UPDATES=$(checkupdates 2>/dev/null | wc -l); }
|
||||
|
||||
while true; do
|
||||
# we don't want to check for updates for liveuser, after we want to remove this
|
||||
[[ $(whoami) == "liveuser" ]] && { sleep 2000; continue; } || sed '/liveuser/d' $HOME/bin/updates.sh
|
||||
get_total_updates
|
||||
|
||||
# notify user with varying levels of urgency depending on amount of updates
|
||||
|
Reference in New Issue
Block a user