NavigationUser loginWho's onlineThere are currently 1 user and 26 guests online.
Online users
Highest Users
Linux NewsClick the above for your daily dose of Linux news. Food for ThoughtIt will be a great day when our schools get all the money they need and the Navy has to hold a bake sale to buy a ship. Spam?See spam posts on this site? If so, please don't reply to the spam! Instead, just report the URL to the webmaster. |
script for Logitech G7 mouse#!/bin/sh #Usage: EVENTLINE=$(cat /proc/bus/input/devices|grep -A 3 "Logitech USB Receiver"|grep "Handlers=mouse0") EVENTSTR=$(echo $EVENTLINE|grep -o event.) XORGEVENTLINE=$(cat /etc/X11/xorg.conf|grep event) XORGEVENTSTR=$(echo $XORGEVENTLINE|grep -o event.) #To overwrite xorg.conf call the script with "edit" as the only argument. if [ "$1" = "edit" ]; then
|