Diemension9

  • Home
  • News
  • Fuckipred
  • Tiny gems
  • Htc Hero
  • Downloads
  • F13 lxde spin

    Just installed fedora 13 on one of my beloved lenovo x60s’s. after a

    sudo yum upgrade

    its a quite nice point-and-click distro! only problem i had was that X discovered, and expanded my desktop to, two monitors. quite odd as i only got the one (even more so as the x60s only got one video-out)!
    when checking the log i found it:

    cat /var/log/Xorg.0.log | grep monitor
    [    28.312] (**) |   |-->Monitor "<default monitor>"
    [    28.312] (==) No monitor specified for screen "Default Screen Section".
    	Using a default monitor configuration.
    [    28.672] (II) intel(0): Output LVDS1 using monitor section LVDS1
    [    28.787] (II) intel(0): Output VGA1 has no monitor section

    LVDS1?? simply disabling it worked as a charm tho

    sudo touch /etc/X11/xorg.conf.d/01-disable-DVI.conf
    # open it in your editor of choice and enter
    Section "Monitor"
    	Identifier		"LVDS1"
    	Option		"Ignore"	"true"
    EndSection

    When choosing a music-player i went with deadbeef, imo the best one as it does what its supposed to do and isnt trying to be something else! After installing it i plugged in my cheapest-on-the-shelf usb-speakers, to get em to work i messed around with alsa and asound.conf for about five minutes before i went the gui-way and installed pulse audio control

    sudo yum install pavucontrol

    and pointed and clicked my way there!

    // sluggo

    Posted

    2010/07/11 #

    Filed under

    Linux, News

    Tags

    deadbeef, DVI, fedora 13, linux, LVDS, pavucontrol, unknown monitor, xorg

    no comments

  • 2010!

    hey its 2010!
    anyone recalling a bad religion song?
    anywho, no updates for a while – been superbusy. some projects have been put on ice, im talking frozen nitrogen kinda ice. some others have been resurrected.. actually restarted. hopefully it will lead to something good (well.. that depends on how you look at it).

    // sluggo

    Posted

    2010/02/18 #

    Filed under

    News

    Tags

    aircrack-ng, dm9, fangs, fuck ipred, fuckipred, gtk, ipred, linux, News

    no comments

  • more plugins..

    NOTE: just moved to syntaxhighlighter evolved!

    actually i just wanted to try out my new fancy schmancy plugin “Developer Formatter” which can markup code. So heres my verry basic find-a-string-in-multiple-files bash script..

    #!/bin/bash
    # simple filesearching script by sluggo of dm9
    if [ -z "\$1" ]
    then
     printf "Usage: \$0 [options] \"<content pattern>\"\n"
     printf "\toptions:\n"
     printf "\t-r\t\t: recursive folder searching\n"
     printf "\t-t \"<pattern>\"\t: search only files matching pattern\n"
     exit 0
    fi
    
    # the only vars..
    fc_fp="*"
    fc_cp=$1
    fc_r="-maxdepth 1"
    
    # check for options
    if [ "\$1" == "-t" ]
    then
     fc_fp=$2
     fc_cp=$3
    elif [ "\$1" == "-r" ]
    then
     fc_r=""
     fc_cp=$2
    fi
    if [ "\$2" == "-t" ]
    then
     fc_fp=$3
     fc_cp=$4
    fi
    if [ "\$3" == "-r" ]
    then
     fc_r=""
     fc_cp=$4
    fi
    
    find . -mindepth 1 $fc_r -name "$fc_fp" -print0 | xargs -0 grep --color=auto -H -n "$fc_cp"
    
    exit 0

    isnt it awesome..?

    Posted

    2009/05/11 #

    Filed under

    News, Tiny Gems

    Tags

    bash, linux, plugin, script

    no comments

Top