-
Senior Member
registered user
Wanted: Bash program idea, or application suggestion
.
I would like to create a small bash program that would
monitor my keystroke activity and if no keystrokes are noted
within a fixed small time, then any currently active
internet connection would be disconnected.
I currently use a Knoppix LiveUSB and wifi via a broadband router
with network connections handled by NetworkManager.
If there's 'an app for this' already, then that might also serve.
Thanks in advance.
-
Senior Member
registered user
Hi utu, I do not have a bash script for you, but I have got some suggestions. First of all, you can disable and enable the network from the commandline by using the commands
Code:
nmcli networking off
and
Code:
nmcli networking on
I think the task is similar to a screensaver because in both cases user inactivity starts a process. I read about a user who wanted to download torrents while the screensaver is active. His or her solution was to ask dbus whether the screensaver was active. He or she used the Gnomedesktop environment. Later I read the solution has to be modified if KDE is used instead of Gnome. Since xscreensaver does not seem to use dbus I think you should try to find out if power management provides an interface to run one shell script on times of user inactivity and another if the user is active again. The absence of keyboard events should start a bash script, but what about mouse events? How long is a 'small time'? Do you intend to reconnect to the network if there is any keystroke activity again?
-
Senior Member
registered user
.
Thanks for your responses, klaus2008.
nmcli is probably part of the solution; I'll study up on that.
I should have indicated keyboard and/or mouse events as an indication or
lack of user presence or attention to internet events.
I think 'a small time' might be some random number between 15 and 30 minutes
as a starting point.
If I know I'm not going to use Knoppix for a while, I manually disconnect.
If I'm interrupted, I might forget to do this; I'd like Linux to disconnect
automatically, if need be. Solution need not consider re-connect, since that's
easy enough to do manually with the NM panel applet.
You can't underestimate my programming prowess. At most I may be able to
figure out a line of bash script. I wouldn't have a prayer with C/C+/or C++
source, even if I had it to look at.
-
Senior Member
registered user
.
Two other building blocks seem to be
Code:
xscreensaver-command -watch
and the following perl program, which tracks the output of the -watch command
and reacts accordingly:
Code:
#!/usr/bin/perl
my $blanked = 0;
open (IN, "xscreensaver-command -watch |");
while (<IN>) {
if (m/^(BLANK|LOCK)/) {
if (!$blanked) {
# **** action to take when screensaver starts ****
$blanked = 1;
}
} elsif (m/^UNBLANK/) {
# **** action (if any) to take when screensaver is reset ****
$blanked = 0;
}
}
I don't think perl should be necessary, and there is probably a simpler
bash equivalent that would suffice.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Lenovo LOQ 15.6" FHD 144Hz Gaming Notebook R7-7435HS 16GB RAM 512GB SSD RTX 4070
$879.99
2024 Lenovo IdeaPad Laptop Notebook 15.6" Intel Processor Upto 20GB RAM 1TB SSD
$259.00
Lenovo Tiny Desktop PC i7 8th Gen, up to 64GB RAM, 4TB SSD, Windows 11/10 Pro
$256.35
Lenovo LOQ 15.6" FHD 144Hz Gaming Notebook R7-7435HS 16GB RAM 512GB SSD RTX 4050
$679.99
Lenovo LOQ 15.6" FHD 144Hz Gaming Laptop i5-12450HX 12GB RAM 512GB SSD RTX 3050
$599.99
Lenovo Yoga 6th Gen ThinkPad 11e 2-in-1 Laptop Windows 11 Pro. 8GB RAM 256GB SSD
$118.00
Lenovo ThinkPad T480 14" FHD i5 8350u 16GB 512gb NVME WIFI CAM WIN 11 PRO laptop
$269.99
Lenovo - IdeaPad 1i 15.6" FHD Touchscreen Laptop - Intel Core i5 - 8GB Memory...
$319.99
Lenovo Desktop i5 Computer PC SFF Up To 32GB RAM 1TB SSD Windows 10 Pro Wi-Fi
$131.98
Lenovo X1 Carbon Gen 6 14” Laptop Core i7 4.2GHz 16GB RAM 256GB SSD Windows 11
$259.99