diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | draksnapshot-applet | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ - applet: o check only every 5s + o ligther check Version 0.3 - 6 March 2008, Thierry Vignaud diff --git a/draksnapshot-applet b/draksnapshot-applet index 09aa55a..ce95772 100755 --- a/draksnapshot-applet +++ b/draksnapshot-applet @@ -147,7 +147,7 @@ sub silentCheck() { # force refreshing cache: detect_devices::probeall_update_cache(); - @discs = grep { $_->{usb_bus} } detect_devices::hds(); + @discs = grep { $_->{usb_bus} && detect_devices::may_be_a_hd($_) } detect_devices::getSCSI(); go2State('okay') if !@discs; # are there any updates ? |