Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.sys.laptops > #1120

Re: scan apps fail to detect scanner device with headset plugged in - please help

From "Jonathan N. Little" <lws4art@gmail.com>
Newsgroups alt.os.linux.ubuntu, comp.sys.laptops
Subject Re: scan apps fail to detect scanner device with headset plugged in - please help
Date 2012-02-06 17:34 -0500
Organization LITTLE WORKS STUDIO
Message-ID <jgpkh6$9ji$1@dont-email.me> (permalink)
References (1 earlier) <jg9mms$e9m$1@dont-email.me> <jgodi1$ltu$1@reader1.panix.com> <jgp4fa$7fp$1@dont-email.me> <slrnjj08a0.8cm.jedi@nomad.mishnet> <jgpid5$sub$1@dont-email.me>

Cross-posted to 2 groups.

Show all headers | View raw


BillW50 wrote:

> This feature is wonderful for viewing web pages that are set for larger
> displays on smaller resolution screens like for 800x480. And this always
> worked well for me under Windows. Although Linux doesn't have a clue how
> to do this.

What? Do you mean when you have a small screen such as a netbook, to 
have the ability to enlarge the desktop to allow you to pan a larger 
virtual desktop? Sure you can. I did not like the netbook addition of 
Ubuntu so I have the standard GNOME 2. Even the the top and bottom panel 
auto-hiding sometimes the 1024x600 will not accommodate some dialogs. So 
I installed xrandr and created a small script with a button on my top 
panel so I can toggle 1024x600 to 1024x768 and back.

#!/bin/bash
#  panning.sh
#+ script that toggles panning mode for netbooks

DEFAULT=1024x600
EXPANDED=1024x768
QUIET=false

if ! XRANDR=`which xrandr`
then
   echo "ERROR: xrandr was not found and is required to run this script"
   exit
fi

ON=`${XRANDR} | grep -c "connected ${EXPANDED}"`

if [ "$1" == "-q" ]; then
   QUIET=true
fi

if [ "${ON}" -ne "0" ]; then
    if [ $QUIET == false ]; then
     echo "Panning currently on, tuning it off"
   fi
   ${XRANDR} --fb ${DEFAULT} --output LVDS1 --panning ${DEFAULT}
else
   if [ $QUIET == false ]; then
     echo "Panning currently off, turning it on"
   fi
   ${XRANDR} --fb ${EXPANDED} --output LVDS1 --panning ${EXPANDED}
fi

exit 0


-- 
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com

Back to comp.sys.laptops | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-01-31 12:58 -0800
  Re: scan apps fail to detect scanner device with headset plugged in - please help retsuhcs@xinap.moc (Mike S.) - 2012-01-31 21:18 +0000
    Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-01-31 13:30 -0800
      Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-01-31 19:09 -0800
    Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-01-31 14:44 -0800
  Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-01-31 15:33 -0600
    Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-01-31 16:07 -0600
      Re: scan apps fail to detect scanner device with headset plugged in - please help "Dirk T. Verbeek" <dverbeek@xs4all.nl> - 2012-02-01 14:45 +0100
    Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-01-31 23:55 +0100
      Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-01 04:17 -0800
        Re: scan apps fail to detect scanner device with headset plugged in - please help "BillW50" <BillW50@aol.kom> - 2012-02-01 17:08 -0600
          Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-01 18:33 -0800
          Re: scan apps fail to detect scanner device with headset plugged in - please help wrat@panix.com (the wharf rat) - 2012-02-06 12:07 +0000
    Re: scan apps fail to detect scanner device with headset plugged in - please help wrat@panix.com (the wharf rat) - 2012-02-06 11:29 +0000
      Re: scan apps fail to detect scanner device with headset plugged in - please help The_Giant_Rat_of_Sumatra <GeorgeTirebiter@drmemory.org> - 2012-02-06 04:12 -0800
      Re: scan apps fail to detect scanner device with headset plugged in - please help William Poaster <wp@induh-vidual.net> - 2012-02-06 12:46 +0000
        Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-06 11:09 -0600
          Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-06 12:42 -0800
      Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-06 12:00 -0600
        Re: scan apps fail to detect scanner device with headset plugged in - please help JEDIDIAH <jedi@nomad.mishnet> - 2012-02-06 12:51 -0600
          Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-06 15:57 -0600
            Re: scan apps fail to detect scanner device with headset plugged in - please help "Jonathan N. Little" <lws4art@gmail.com> - 2012-02-06 17:34 -0500
              Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-06 17:20 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Jonathan N. Little" <lws4art@gmail.com> - 2012-02-06 21:03 -0500
                Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-06 15:40 -0800
              Re: scan apps fail to detect scanner device with headset plugged in - please help "Harry Vaderchi" <admin@127.0.0.1> - 2012-02-23 09:08 +0000
            Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-07 01:38 +0100
              Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 17:34 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Jonathan N. Little" <lws4art@gmail.com> - 2012-02-07 19:10 -0500
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 18:26 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Alias <aka@maskedandanonymous.net.invlad> - 2012-02-08 01:30 +0100
                Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-07 16:59 -0800
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 19:49 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 06:38 +0100
                Re: scan apps fail to detect scanner device with headset plugged in - please help FatBytestard <PhatBytestard@somewheronyourharddrive.org> - 2012-02-07 18:44 -0800
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 21:37 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Jonathan N. Little" <lws4art@gmail.com> - 2012-02-07 23:01 -0500
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 22:24 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Jonathan N. Little" <lws4art@gmail.com> - 2012-02-08 00:10 -0500
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Cybe R. Wizard" <cybe_r_wizard@wizardstower> - 2012-02-08 00:20 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 06:44 +0100
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 06:35 +0100
              Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 20:42 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 06:57 +0100
        Re: scan apps fail to detect scanner device with headset plugged in - please help "Cybe R. Wizard" <cybe_r_wizard@wizardstower> - 2012-02-06 13:01 -0600
        Re: scan apps fail to detect scanner device with headset plugged in - please help Dan C <youmustbejoking@lan.invalid> - 2012-02-06 23:18 +0000
          Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-06 17:39 -0600
            Re: scan apps fail to detect scanner device with headset plugged in - please help Dan C <youmustbejoking@lan.invalid> - 2012-02-07 00:02 +0000
              Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-06 19:44 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Dan C <youmustbejoking@lan.invalid> - 2012-02-07 02:31 +0000
                Re: scan apps fail to detect scanner device with headset plugged in - please help Michael Black <et472@ncf.ca> - 2012-02-06 23:46 -0500
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 17:10 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 07:05 +0100
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Cybe R. Wizard" <cybe_r_wizard@wizardstower> - 2012-02-06 23:48 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 17:11 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help The_Giant_Rat_of_Sumatra <GeorgeTirebiter@drmemory.org> - 2012-02-07 18:35 -0800
                Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 22:25 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help The_Giant_Rat_of_Sumatra <GeorgeTirebiter@drmemory.org> - 2012-02-07 21:45 -0800
                Re: scan apps fail to detect scanner device with headset plugged in - please help "Cybe R. Wizard" <cybe_r_wizard@wizardstower> - 2012-02-08 00:21 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 07:10 +0100
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-07 09:26 +0100
            Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-07 01:46 +0100
            Re: scan apps fail to detect scanner device with headset plugged in - please help Michael Black <et472@ncf.ca> - 2012-02-06 23:43 -0500
              Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-07 09:40 +0100
              Re: scan apps fail to detect scanner device with headset plugged in - please help BillW50 <BillW50@aol.kom> - 2012-02-07 17:11 -0600
                Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-08 07:34 +0100
                Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-12 06:15 -0800
                Re: scan apps fail to detect scanner device with headset plugged in - please help "olfart" <olfart65@excite.com> - 2012-02-12 10:17 -0500
                Re: scan apps fail to detect scanner device with headset plugged in - please help Bob_Villa <pheeh.zero@gmail.com> - 2012-02-12 07:34 -0800
              Re: scan apps fail to detect scanner device with headset plugged in - please help wrat@panix.com (the wharf rat) - 2012-02-08 17:18 +0000
  Re: scan apps fail to detect scanner device with headset plugged in - please help MarkA <someone@somewhere.invalid> - 2012-02-01 14:45 -0500
    Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-02-01 12:25 -0800
      Re: scan apps fail to detect scanner device with headset plugged in - please help Aragorn <stryder@telenet.be.invalid> - 2012-02-01 22:02 +0100
  Re: scan apps fail to detect scanner device with headset plugged in - please help wrat@panix.com (the wharf rat) - 2012-02-01 22:06 +0000
    Re: scan apps fail to detect scanner device with headset plugged in - please help "Jonathan N. Little" <lws4art@gmail.com> - 2012-02-01 17:57 -0500
    Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-02-01 15:12 -0800
      Re: scan apps fail to detect scanner device with headset plugged in - please help "BillW50" <BillW50@aol.kom> - 2012-02-01 18:55 -0600
        Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-02-01 17:08 -0800
      Re: scan apps fail to detect scanner device with headset plugged in - please help wrat@panix.com (the wharf rat) - 2012-02-06 12:08 +0000
        Re: scan apps fail to detect scanner device with headset plugged in - please help The_Giant_Rat_of_Sumatra <GeorgeTirebiter@drmemory.org> - 2012-02-06 04:15 -0800
          Re: scan apps fail to detect scanner device with headset plugged in - please help "Adam" <adam@no_thanks.com> - 2012-02-06 13:35 -0800

csiph-web