The time now is Tue 26 Jan 2021, 11:32
All times are UTC - 4 |
Page 13 of 38 [560 Posts] |
Goto page: Previous 1, 2, 3, ..., 11, 12, 13, 14, 15, ..., 36, 37, 38 Next |
Author |
Message |
mcewanw
Joined: 16 Aug 2007 Posts: 3200
|
Posted: Wed 23 Mar 2016, 06:31 Post subject:
Re: DebianDog64 - 64 bit DebianDog-Jessie Subject description: New iso uploaded - 20 - 03 - 2016 |
|
Thanks Fred,
I'm downloading it now. Autumn here now so I'll probably have more time soon for DD-related testing.
William
_________________ github mcewanw
|
Back to top
|
|
 |
Pelo
Joined: 10 Sep 2011 Posts: 12591 Location: Mer méditerrannée (1 kms°)
|
Posted: Wed 23 Mar 2016, 09:19 Post subject:
the frog can get bigger, but not so big as the beef Subject description: Jean de la Fontaine |
|
DEbian is not so much the problem. It's a big Linux distribution, it can be used in entreprises by thousand of employees, that makes necessary a lot of controls of security, data entered, updating... as Windows !
When a distro is mono-user, for home servicing, like Puppy everything is lighter.
Packages now are dowloaded from Debian as you tell, but when you dowload one kde application, debian install all KDE, even if only some parts would be enough.
The spirit of big linux is complete install, the spirit of puppy was to select only the just needed. i was a hard job to make pets, made by volunteers,
if packages dowload all dependancies, it's no more worth to build puppies of 130mb size, the first downloads of packages will submerge the poor Puppy.
In conclusion, if people need lighter than Debian, but bigger than Puppy, freedom to them.. the frog can get bigger, but not so big as the beef (Jean de La Fontaine, Pelo's translation)
_________________ Passenger Pelo ! don't ask him to repair the aircraft. Don't use him as a demining dog .... pleeease.
|
Back to top
|
|
 |
fredx181

Joined: 11 Dec 2013 Posts: 4481 Location: holland
|
Posted: Wed 23 Mar 2016, 18:22 Post subject:
|
|
Hi Dan,
Quote: | I understand you mean there's nothing in the menu to enable slim or something?
Yes, the instructions in the Jessie thread seemed to indicate there would be a menu entry to turn slim on and off. The version I used didn't have that. |
Yes, true, I knew there was a slim i386 .deb in the custom repository but totally forgot about the menu entry.
I modified now 64bit version, with menu entry to switch on/off and also when uninstalling slim the "old" automatic login will be restored.
It's newer version number then official Debian so just install with:
Code: | apt-get update
apt-get install slim |
To make it work properly with save-on-exit from console (porteus-boot) I modified /etc/slim.conf, line 6 by adding -novtswitch :
Code: | xserver_arguments -nolisten tcp -novtswitch |
The downside is that when you type exit as username (as you mentioned) you need to press Ctrl+Alt+F1 to get to the console login.
Behaving will be different when removing the -novtswitch option from line 6 (is default):
Code: | xserver_arguments -nolisten tcp |
But then console save-on-exit choice doesn't work well (GUI save or not-save choice works well in any case, btw).
Fred
|
Back to top
|
|
 |
mcewanw
Joined: 16 Aug 2007 Posts: 3200
|
Posted: Thu 24 Mar 2016, 20:10 Post subject:
|
|
Hi Fred,
Your DD64 appears to be a winner - my partner has requested it be installed on her machine. She needed a 64bit OS for program Viber, which is why I wasn't able to convince her to keep using other DDs or MintPup.
One problem I have so far with DD64 is that Timezone isn't setting the clock correctly here (it is one hour out). I think I read some earlier posts about the matter, but can't remember where. I don't want to muck around with the BIOS clock since that would upset time on other OS installed. I imagine it is something to do with UTC or Local time - I used to know about that kind of thing, but been to long since I played with it all and forget how.
Oh, the other thing is, we tried getting some Philippines radio stations on DogRadio in DD64, but none came up in search. They used to in previous DogRadio so I realise you must have a different search list - what was the large list you used before?
As I say, time will tell, but DD64 looking good. I was thinking of modifying Linux MInt 64 to provide the functionality of the various DDs and Mintpup, but don't know enough about all that has been done in DD and so much to search... Hence happy to have this DD64. I'm wondering how many changes you needed to make to its initrd to get porteus boot to work?
Cheers,
William
_________________ github mcewanw
|
Back to top
|
|
 |
fredx181

Joined: 11 Dec 2013 Posts: 4481 Location: holland
|
Posted: Sat 26 Mar 2016, 09:26 Post subject:
|
|
Hi William,
Quote: | Your DD64 appears to be a winner - my partner has requested it be installed on her machine. She needed a 64bit OS for program Viber, which is why I wasn't able to convince her to keep using other DDs or MintPup. |
Ah, Good
Myself I prefer not setting a specific time zone, standard on DD64 the timezone is set to UTC, see in /etc/timezone:
But in fact the time displayed by e.g. date command or conky is not the correct UTC time.
Code: | Sun Mar 26 13:50:07 UTC 2016
UTC, 13:50:07 |
UTC time officially at this moment is 1 hour earlier. (compared to my timezone, Amsterdam)
I don't mind that, it just reads the time from the hardware clock which I have set in the BIOS to my local time.
Probably the easiest way to do things by the book is to set your time zone and install ntp:
Code: | apt-get install ntp |
I'm struggling myself to understand exactly how this all works but I investigated a little so here some hints (for with or without having ntp installed).
To make things behave the same as Windows does (in case of dual boot):
In the file /etc/adjtime you can set LOCAL or UTC, set it to LOCAL
Code: | 63.851349 1458991920 0.000000
1458991920
LOCAL |
Same for file /etc/default/rcS, add a line:
Set your timezone:
Code: | dpkg-reconfigure tzdata |
Reboot and set the time in the BIOS to your local time (which I believe is 13 hours later than UTC (GMT/UTC +13) in your case (Auckland, New Zealand)
I think this is official Linux way:
Set to UTC in /etc/adjtime
Code: | 63.851349 1458991920 0.000000
1458991920
UTC |
Same for file /etc/default/rcS, add or change to line:
Set your timezone:
Code: | dpkg-reconfigure tzdata |
Reboot and set the time in the BIOS to UTC time (13 hours earlier than Auckland time, in your case, New Zealand)
This will give problems when dual booting with Windows as it will set the hardware clock to local time, resulting in wrong time when booting Linux.
Other options:
- Activate /etc/init.d/hwclock.sh :
Code: | insserv hwclock.sh
/etc/init.d/hwclock.sh start |
This will save the system time to the hardware clock at shutdown.
- Install ntp (get the time from the internet)
- Set the hardware clock from terminal, e.g:
Code: | hwclock --set --date "Sat Mar 26 13:50:07 2016" |
Please anyone correct me if I'm wrong with any of this!
About DogRadio, strange, I found some Philippines radio stations, and the search index hasn't changed, still from the RadioSure database.
Fred
|
Back to top
|
|
 |
anikin
Joined: 10 May 2012 Posts: 1020
|
Posted: Sat 26 Mar 2016, 12:30 Post subject:
|
|
Fred, please, don't be shy to refer to this DD Howto section:
Awhile ago, a good Samaritan, who goes by the forum name of anikin made an attempt to explain the issue here:
http://murga-linux.com/puppy/viewtopic.php?p=806203#806203
Let me just add a thought about ntp. In my view, Toni should not include it in official DD releases, because it makes things more complicated. Honestly, an average Joe Beercan doesn't need that kind of time precision on their machines. Which also comes at a price - a needless (surprise/unwanted) connection to a time server. Those who do, can easily install ntp themselves.
|
Back to top
|
|
 |
fredx181

Joined: 11 Dec 2013 Posts: 4481 Location: holland
|
Posted: Sat 26 Mar 2016, 15:03 Post subject:
|
|
sorry, deleted
Last edited by fredx181 on Sun 27 Mar 2016, 00:44; edited 1 time in total
|
Back to top
|
|
 |
mcewanw
Joined: 16 Aug 2007 Posts: 3200
|
Posted: Sun 27 Mar 2016, 00:38 Post subject:
|
|
Hello Fred,
Thanks, I'll try resetting time by one of the methods you suggests - should be fine.
Also, sorry, DogRadio is finding Philippine radio stations afterall - maybe after I re-indexed? Anyway, works... The radio is being used a lot here!
EDIT: Fred, turns out my BIOS clock was set wrongly and I didn't notice ... I am using Local time, and once I reset my BIOS clock all was fine...
Cheers, William
_________________ github mcewanw
|
Back to top
|
|
 |
mcewanw
Joined: 16 Aug 2007 Posts: 3200
|
Posted: Mon 28 Mar 2016, 04:22 Post subject:
|
|
Hello again Fred,
Whilst I know how to run, for example, Skype with apulse, I actually want to get pulseaudio itself running. However, after installing it via apt-get I can't get it to start the pulseaudio daemon with pulseaudio --start, or with pulseaudio --system. The first says it isn't designed to run as root user, and the daemon doesn't start, and the second gives permission error message:
Code: | root@jessie64:~# pulseaudio --start
W: [pulseaudio] main.c: This program is not intended to be run as root (unless --system is specified).
E: [pulseaudio] main.c: Daemon startup failed.
root@jessie64:~# pulseaudio --system
W: [pulseaudio] main.c: Running in system mode, but --disallow-exit not set!
W: [pulseaudio] main.c: Running in system mode, but --disallow-module-loading not set!
N: [pulseaudio] main.c: Running in system mode, forcibly disabling SHM mode!
N: [pulseaudio] main.c: Running in system mode, forcibly disabling exit idle time!
E: [pulseaudio] core-util.c: Failed to create secure directory (/var/lib/pulse): Permission denied |
I'm trying to run both Skype and similar program Viber (which has a different problem in that it can't find internet connection - but I won't bother you with that one since something stupid about Viber I think)
I'm wondering if you have tried to startup pulseaudio (or I missed something about it in this thread) and found a solution?
Cheers, William
_________________ github mcewanw
|
Back to top
|
|
 |
Atle
Joined: 19 Nov 2008 Posts: 604 Location: Oslo, Norway
|
Posted: Mon 28 Mar 2016, 13:21 Post subject:
|
|
Testing of new version and "quick install"...
Usually I download a puppy, click on the .ISO file and then copy them over to where i want them. Then i run Grub4Dos and reboot into the puppy for a look...
Now this method failed here. Grub4Dos could not pick it up.
Anything I could do different in order to try it without CD/USB?
Atle
|
Back to top
|
|
 |
oui
Joined: 20 May 2005 Posts: 3606 Location: near Woof (Germany) :-) - 3 PC's: DELL SX280 750 MB Pentium4, Acer emachines 2 GB AMD64. DELL XPS15
|
Posted: Mon 28 Mar 2016, 16:00 Post subject:
|
|
oh! Atle
DebianDog64 - 64 bit DebianDog-Jessie
is not really a Puppy... In my eyes, it is the next generation of Linux or OS! Puppy linux only hosts actually that new system with other possibilities: More possibilities as Debian, more as Puppy Linux did have. But, it is good so, DebianDog64 - 64 bit DebianDog-Jessie did learn a lot of Puppy Linux. So both are progressing a lot working together.
You really need to adapt your grub configuration file to start DebianDog64 - 64 bit DebianDog-Jessie...
it is so...
and you are not free to let all smudge you want on your disk: DebianDog64 - 64 bit DebianDog-Jessie will find and USE it!
but DebianDog64 - 64 bit DebianDog-Jessie is actually probably the best operating system even been created.
my actual grub.cfg (for the real actual GNU grub!):
Code: |
# Begin grub.cfg
# By default boot the first menu entry.
set default=1
# Allow 2 seconds before booting the default.
set timeout=2
set color_highlight=blue/white
set color_normal=cyan/black
# insmod all_video
# insmod jpeg
# terminal_output gfxterm
menuentry "Kubuntu sda6" {
set root=(hd0,6)
linux /vmlinuz root=/dev/sda6 ro
initrd /initrd.img
}
menuentry "Debian64 sda6" {
set root=(hd0,6)
linux /0deb64/live/vmlinuz1 noauto from=/0deb64/ changes=EXIT:/0deb64/live/
initrd /0deb64/live/initrd1.xz
}
menuentry "LYunicorn sda6" {
set root=(hd0,6)
linux /0LYunicorn/vmlinuz lpextsfs=no lpconfigsfs=no lpusersfs=no subdir=0LYunicorn pfix=ram # pmedia=cd
initrd /0LYunicorn/initrd.gz
}
menuentry "ReactOS" {
set root=(hd0,msdos1)
chainloader +1
parttool (hd0,msdos1) boot+
multiboot /freeldr.sys
}
menuentry 'FreeDOS (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-7C73-AEC9' {
insmod part_msdos
insmod fat
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 7C73-AEC9
else
search --no-floppy --fs-uuid --set=root 7C73-AEC9
fi
parttool ${root} hidden-
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry "slitaz frugal sda1" {
set root=(hd0,6)
#linux /0u/linux root=/dev/sda6 ro quiet
linux /0u/linux tasks=standard pkgsel/language-pack-patterns= pkgsel/install-language-support=false priority=low ---
initrd /0u/initrd.gz
}
|
good luck!
PS: I actually not have really Kubuntu 16.04 installed! Only the actual base of Ubuntu with xorg but also with some KDE app's having in my eyes no equivalent in other Linux like "kate". I use KDE and it is the reason why LazY Unicorn is also available: The KDE "part" that Jejy69 did extract of Slax and offer us in 32 bit (Slax has it also in 64 bit) as dotsfs is not available in 64 bit, so, if you want KDE, you have to commute to an old 32 bit system and LazY Unicorn is one of the Puppy's offering the most directly available dotsfs at all and over that to use the KDE-sfs from Jejy.. SliTaz frugal is the recovery Swiss knife on my system! It is on a different partition to be operable on the rest of the disk if needing. With only 44 bit and a 64 bit kernel can SlitTaz install in a few minutes all important things needing for that! That partition sda1 is very small...
|
Back to top
|
|
 |
fredx181

Joined: 11 Dec 2013 Posts: 4481 Location: holland
|
Posted: Mon 28 Mar 2016, 16:51 Post subject:
|
|
Hi William,
Quote: | I'm wondering if you have tried to startup pulseaudio (or I missed something about it in this thread) and found a solution? |
Not really, I've tried it long time ago and had some troubles (can't remember what).
I just tried now and it seems to work (at least I have sound, alsamixer won't run but volume can be adjusted with volumeicon slider):
Code: | root@jessie64:~# pulseaudio --system
W: [pulseaudio] main.c: Running in system mode, but --disallow-exit not set!
W: [pulseaudio] main.c: Running in system mode, but --disallow-module-loading not set!
N: [pulseaudio] main.c: Running in system mode, forcibly disabling SHM mode!
N: [pulseaudio] main.c: Running in system mode, forcibly disabling exit idle time!
W: [pulseaudio] main.c: OK, so you are running PA in system mode. Please note that you most likely shouldn't be doing that.
W: [pulseaudio] main.c: If you do it nonetheless then it's your own fault if things don't work as expected.
W: [pulseaudio] main.c: Please read http://pulseaudio.org/wiki/WhatIsWrongWithSystemMode for an explanation why system mode is usually a bad idea. |
But the above doesn't look good of course.
I don't know, sorry, maybe you need to install more, e.g. pavucontrol
As you may know, Skype is a i386 package, the easiest to run it on DD64 is to load the module "skype_apulse.squashfs"
https://dl.dropboxusercontent.com/u/36381953/DebDog64-Jessie/Extra-Modules/skype_apulse.squashfs
(or download with sfs-get)
Or see here (if you didn't notice already):
http://www.murga-linux.com/puppy/viewtopic.php?p=890430#890430
Fred
|
Back to top
|
|
 |
fredx181

Joined: 11 Dec 2013 Posts: 4481 Location: holland
|
Posted: Mon 28 Mar 2016, 17:03 Post subject:
|
|
Thanks oui!
@Atle
For porteus-boot grub4dos menu.lst entry:
Say you have created folder "debdog64" on the root of sda1, copy the "live" folder inside, so you get /debdog64/live
Code: | title DebianDog64 Porteus-boot changes to folder (hd0,0)/debdog64/live
root (hd0,0)
kernel /debdog64/live/vmlinuz1 from=/debdog64 noauto changes=EXIT:/debdog64/live/
initrd /debdog64/live/initrd1.xz |
Fred
|
Back to top
|
|
 |
oui
Joined: 20 May 2005 Posts: 3606 Location: near Woof (Germany) :-) - 3 PC's: DELL SX280 750 MB Pentium4, Acer emachines 2 GB AMD64. DELL XPS15
|
Posted: Mon 28 Mar 2016, 17:21 Post subject:
|
|
Hi Fred
writing my precedent answer for Atle, I did search and look for links... As I see, for us Jejy69, for SourceForge Loukitchou (in both cases Jerome out Perpignan/France), did create an home at SourceForge in 2014 before he did become student (he is now student and I did read somewhere it is the reason because his contributions to linux have to be reduce!).
I suppose it would be a real good thing DebianDog64 - 64 bit DebianDog-Jessie would get an home (as you know, I have an own remasterised version of it. It is now a big *.squashfs with now ab. 430 MB, finished the initial attempt to reduce the size to an only "one-bone" or somewhat at that. but it contains an extremely rich environment for my daily activities, is extremely fast, does not require some activity of the cooling fan, the laptop stay about completely cool also if I compile all the base of LinuxFromScratch (a lot of other systems warm the laptop without to do something interesting at all !), and better it remasterizing if needing daily is a real pleasure (on my second really powerful laptop; but the big system runs also problem less on my old absolutely not powerful laptop, the emachine of Acer named in the left rand of my messages...).
 |
Description |
|
Filesize |
46.4 KB |
Viewed |
523 Time(s) |

|
Description |
|
Filesize |
44.46 KB |
Viewed |
539 Time(s) |

|
Description |
|
Filesize |
41.25 KB |
Viewed |
530 Time(s) |

|
Description |
|
Filesize |
37.64 KB |
Viewed |
529 Time(s) |

|
Description |
|
Filesize |
90.44 KB |
Viewed |
536 Time(s) |

|
Description |
|
Filesize |
39.23 KB |
Viewed |
522 Time(s) |

|
Description |
|
Filesize |
28.55 KB |
Viewed |
528 Time(s) |

|
Description |
|
Filesize |
47.02 KB |
Viewed |
528 Time(s) |

|
Description |
|
Filesize |
69.99 KB |
Viewed |
528 Time(s) |

|
Description |
|
Filesize |
30.35 KB |
Viewed |
524 Time(s) |

|
|
Back to top
|
|
 |
oui
Joined: 20 May 2005 Posts: 3606 Location: near Woof (Germany) :-) - 3 PC's: DELL SX280 750 MB Pentium4, Acer emachines 2 GB AMD64. DELL XPS15
|
Posted: Mon 28 Mar 2016, 17:39 Post subject:
|
|
view on the JWM screen with hidden tray shown and on the subdir /usr/share/applications showing the resident applications (not coming from external dosquashfs files)
actual /etc/jwm/system.jwmrc
Code: |
<?xml version="1.0"?>
<JWM>
<!-- The root menu, if this is undefined you will not get a menu. -->
<!-- Additional RootMenu attributes: onroot, labeled, label -->
<RootMenu height="15" onroot="12">
<Program label="Dhcp" confirm="false">/usr/bin/frisbee</Program>
<Program icon="ed.png" label="Ed">leafpad</Program>
<Program icon="rox.png" label="File browser">rox</Program>
<Program icon="granule.png" label="Flash cards">granule</Program>
<Program icon="gramps.png" label="Genealogie">gramps</Program>
<Program icon="merkaartor.png" label="Land maps editor">merkaartor</Program>
<Program icon="marble.png" label="Marble">marble-qt</Program>
<Program icon="messenger.png" label="Messenger">ayttm</Program>
<Program label="Mixer" confirm="false">x-terminal-emulator -T "Mixer" -e sh -c "/usr/bin/alsamixer"</Program>
<!-- Program icon="mixer.png" label="Mixer">default_mixer</Program -->
<Program icon="paint.png" label="Paint">mtpaint</Program>
<Program icon="run.png" label="Run">gmrun</Program>
<Program label="Spreadsheet" confirm="false">x-terminal-emulator -T "SC" -e sh -c "/usr/bin/sc"</Program>
<!-- Program icon="sc.png" label="Spreadsheet">default_spreadsheet</Program -->
<Program icon="ted.png" label="Ted">Ted</Program>
<Program icon="terminal.png" label="Terminal">x-terminal-emulator</Program>
<Program icon="waveedit.png" label="WaveEd">mhwaveedit</Program>
<Program icon="seamonkey.png" label="Web, emails, Html ed">seamonkey</Program>
<Program label="HTML viewer light" confirm="false">x-terminal-emulator -T "retawq" -e sh -c "/usr/bin/retawq"</Program>
<Program label="Vim" confirm="false">x-terminal-emulator -T "vim" -e sh -c "/usr/bin/vim"</Program>
<Program label="Yap" confirm="false">x-terminal-emulator -T "yap" -e sh -c "/usr/bin/yap"</Program>
<Separator/>
<Include>/etc/jwm/debian-menu</Include>
<Separator/>
<Program icon="grun.png" label="grun">gmrun</Program>
<Program icon="xfce4-appfinder.png" label="appfinder">xfce4-appfinder</Program>
<Separator/>
<Program icon="lock.png" label="Lock">
xscreensaver-command -activate
</Program>
<Separator/>
<Program icon="reboot.png" label="Reboot">wmreboot</Program>
<Program icon="poweroff.png" label="Poweroff">wmpoweroff</Program>
<Restart label="Restart" icon="restart.png"/>
<Exit label="Exit" confirm="true" icon="quit.png"/>
</RootMenu>
<Group>
<Class>Pidgin</Class>
<Option>sticky</Option>
</Group>
<Group>
<Name>gkrellm</Name>
<Option>nolist</Option>
<Option>sticky</Option>
</Group>
<Group>
<Name>xterm</Name>
<Option>vmax</Option>
<Option>icon:terminal.png</Option>
</Group>
<!-- Additional tray attributes: autohide, width, border, layer, layout -->
<Tray x="0" y="-1" height="32" autohide="true">
<!-- Additional TrayButton attribute: label -->
<TrayButton label="JWM">root:1</TrayButton>
<TrayButton popup="grun" icon="/usr/share/pixmaps/grun.xpm">exec:gmrun</TrayButton>
<TrayButton popup="xfce4-appfinder" icon="/usr/share/pixmaps/xfce4-appfinder.xpm">exec:xfce4-appfinder</TrayButton>
<TrayButton popup="snapshot" icon="/usr/share/pixmaps/ksnapshot.png">exec:mtpaintsnapshot.sh</TrayButton>
<TrayButton popup="rox" icon="/usr/share/rox/images/application.png">exec:rox</TrayButton>
<TrayButton popup="browser" icon="/usr/share/icons/Faenza-minimal/apps/64/web-browser.png">exec:seamonkey</TrayButton>
<TrayButton popup="mixer" icon="/usr/share//pixmaps/mtpaint.png">exec:x-terminal-emulator -T "Screensnapshot" -e sh -c "/usr/bin/mtpaintsnapshot.sh"</TrayButton>
<TrayButton popup="mixer" icon="/usr/share//pixmaps/kmix.png">exec:x-terminal-emulator -T "Mixer" -e sh -c "/usr/bin/alsamixer"</TrayButton>
<TrayButton label="_">showdesktop</TrayButton>
<!-- Additional Pager attribute: labeled -->
<Pager labeled="true"/>
<TaskList maxwidth="256"/>
<Dock/>
<!-- Additional Swallow attribute: height -->
<Swallow name="xload" width="64">
xload -nolabel -bg black -fg red -hl white
</Swallow>
<Clock format="%H:%M">xclock</Clock>
</Tray>
<!-- Visual Styles -->
<WindowStyle>
<Font>-*-fixed-*-r-*-*-10-*-*-*-*-*-*-*</Font>
<Width>4</Width>
<Height>20</Height>
<Active>
<Text>white</Text>
<Title>gray30:gray60</Title>
<Outline>black</Outline>
<Opacity>1.0</Opacity>
</Active>
<Inactive>
<Text>#aaaaaa</Text>
<Title>#808488:#303438</Title>
<Outline>black</Outline>
<Opacity>0.5:0.9:0.1</Opacity>
</Inactive>
</WindowStyle>
<TaskListStyle>
<Font>-*-fixed-*-r-*-*-10-*-*-*-*-*-*-*</Font>
<ActiveForeground>black</ActiveForeground>
<ActiveBackground>gray80:gray90</ActiveBackground>
<Foreground>black</Foreground>
<Background>gray90:gray80</Background>
</TaskListStyle>
<!-- Additional TrayStyle attribute: insert -->
<TrayStyle>
<Font>-*-fixed-*-r-*-*-10-*-*-*-*-*-*-*</Font>
<Background>gray90</Background>
<Foreground>black</Foreground>
<Opacity>0.75</Opacity>
</TrayStyle>
<PagerStyle>
<Outline>black</Outline>
<Foreground>gray90</Foreground>
<Background>#808488</Background>
<ActiveForeground>#70849d</ActiveForeground>
<ActiveBackground>#2e3a67</ActiveBackground>
</PagerStyle>
<MenuStyle>
<Font>-*-fixed-*-r-*-*-10-*-*-*-*-*-*-*</Font>
<Foreground>black</Foreground>
<Background>gray90</Background>
<ActiveForeground>white</ActiveForeground>
<ActiveBackground>#70849d:#2e3a67</ActiveBackground>
<Opacity>0.85</Opacity>
</MenuStyle>
<PopupStyle>
<Font>-*-fixed-*-r-*-*-10-*-*-*-*-*-*-*</Font>
<Outline>black</Outline>
<Foreground>black</Foreground>
<Background>yellow</Background>
</PopupStyle>
<IconPath>
/usr/share/icons/wm-icons/32x32-gant
</IconPath>
<!-- Virtual Desktops -->
<!-- Desktop tags can be contained within Desktops for desktop names. -->
<Desktops width="4" height="2">
<Background type="image">/usr/share/images/default.jpg</Background>
</Desktops>
<!-- Double click speed (in milliseconds) -->
<DoubleClickSpeed>400</DoubleClickSpeed>
<!-- Double click delta (in pixels) -->
<DoubleClickDelta>2</DoubleClickDelta>
<!-- The focus model (sloppy or click) -->
<FocusModel>sloppy</FocusModel>
<!-- The snap mode (none, screen, or border) -->
<SnapMode distance="10">border</SnapMode>
<!-- The move mode (outline or opaque) -->
<MoveMode>opaque</MoveMode>
<!-- The resize mode (outline or opaque) -->
<ResizeMode>opaque</ResizeMode>
<StartupCommand>
xli -onroot -fillscreen /usr/share/images/default.jpg &
conky -c ~/.conkyrc-live &
setxkbmap us intl &
cp -a /mnt/home/0deb64/live/mozilla/* ~/.mozilla/
</StartupCommand>
<!-- Key bindings -->
<Key key="Up">up</Key>
<Key key="Down">down</Key>
<Key key="Right">right</Key>
<Key key="Left">left</Key>
<Key key="h">left</Key>
<Key key="j">down</Key>
<Key key="k">up</Key>
<Key key="l">right</Key>
<Key key="Return">select</Key>
<Key key="Escape">escape</Key>
<Key mask="A" key="Tab">next</Key>
<Key mask="A" key="F4">close</Key>
<Key mask="A" key="#">desktop#</Key>
<Key mask="A" key="F1">root:1</Key>
<Key mask="A" key="F2">window</Key>
<Key mask="A" key="F10">maximize</Key>
<Key mask="A" key="Right">rdesktop</Key>
<Key mask="A" key="Left">ldesktop</Key>
<Key mask="A" key="Up">udesktop</Key>
<Key mask="A" key="Down">ddesktop</Key>
</JWM>
|
 |
Description |
|
Filesize |
50.82 KB |
Viewed |
520 Time(s) |

|
Description |
|
Filesize |
58.88 KB |
Viewed |
538 Time(s) |

|
|
Back to top
|
|
 |
|
Page 13 of 38 [560 Posts] |
Goto page: Previous 1, 2, 3, ..., 11, 12, 13, 14, 15, ..., 36, 37, 38 Next |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|