carolina-003..how to move drive icons on desktop

For talk and support relating specifically to Puppy derivatives
Post Reply
Message
Author
User avatar
phil66
Posts: 42
Joined: Wed 26 Dec 2007, 02:30
Location: Texas

carolina-003..how to move drive icons on desktop

#1 Post by phil66 »

Drive icons are now vertical on desktop

I want to move them to horizontal just above the panel

Drag and drop does not move these icons

musher0
Posts: 14629
Joined: Mon 05 Jan 2009, 00:54
Location: Gatineau (Qc), Canada

#2 Post by musher0 »

Hi, phil66 !

Season's Greetings!
To have the drive icon manager respect your choice,
  • right-click on any drive icon and click "Run Drive Icon Manager"
    at the bottom of the first left-hand panel, UN-tick "Tick to re-align... blabla"
    validate
An illustration is attached.
This applies to any Puppy, not just Carolina.
Best of luck.

musher0
Attachments
move-drive-icons.jpg
(44.23 KiB) Downloaded 441 times
musher0
~~~~~~~~~~
"You want it darker? We kill the flame." (L. Cohen)

User avatar
phil66
Posts: 42
Joined: Wed 26 Dec 2007, 02:30
Location: Texas

#3 Post by phil66 »

Hi Musher0

Thanks for the reply

In Carolina-003 I am not getting the panel you illustrated

When I right click a drive icon (sda1) etc all I get is :
open
mount volume
Properties-greyed out
Applications-This the same applications menu from right clicking the desktop

Searched for event manager in control panel,PPM and nothing found

I can move icons around in Lucid-528 but not in Lina-003

User avatar
Geoffrey
Posts: 2355
Joined: Sun 30 May 2010, 08:42
Location: Queensland

#4 Post by Geoffrey »

phil66 wrote:Hi Musher0

Thanks for the reply

In Carolina-003 I am not getting the panel you illustrated

When I right click a drive icon (sda1) etc all I get is :
open
mount volume
Properties-greyed out
Applications-This the same applications menu from right clicking the desktop

Searched for event manager in control panel,PPM and nothing found

I can move icons around in Lucid-528 but not in Lina-003
Hi phil66,

xfce desktop icons are a pain, but you can work around the problem, right-click the desktop and select Desktop Settings > Icons make the icon size so that it gives you a larger grid to work in, then you Should be able to drag the icons to where you want them, I found that it did not save the positions, so I made a script to save the positions and they can be restored at reboot, could most likely add the appropriate script sections to shutdown and startup to automate this, anyway here's the script to try.

Code: Select all

#!/bin/sh
#Save and restore XFCE Desktop icon positions
mkdir -p ~/.config/xfce4/desktop.bak
export XDesktop_Icon_Restorer_GUI='	
<window title="XDesktop Icon Restorer" icon-name="emblem-desktop" resizable="false" decorated="true">
<vbox>
 <hbox space-fill="true" expand="true" homogeneous="true">
	<button use-underline="true">
			<label>_Quit</label>
			<input file stock="gtk-quit"></input>
		</button>
		<button tooltip-text="Save the current desktop icon positions" use-underline="true">
			<label>_Save</label>
			<input file stock="gtk-apply"></input>
			<action>"xfdesktop --reload; sleep .5; cp -f ~/.config/xfce4/desktop/* ~/.config/xfce4/desktop.bak/"</action>
			<action type="exit">yes button clicked</action>
		</button>
		<button tooltip-text="Restore previously saved desktop icon positions" use-underline="true">
			<label>_Restore</label>
			<input file stock="gtk-refresh"></input>
			<action>"xfdesktop --reload; sleep .5; cp -f ~/.config/xfce4/desktop.bak/* ~/.config/xfce4/desktop/; sleep .5; xfdesktop --reload"</action>
			<action type="exit">yes button clicked</action>
		</button>
	</hbox>
</vbox>
</window>'
gtkdialog --center --program=XDesktop_Icon_Restorer_GUI
[b]Carolina:[/b] [url=http://smokey01.com/carolina/pages/recent-repo.html]Recent Repository Additions[/url]
[img]https://dl.dropboxusercontent.com/s/ahfade8q4def1lq/signbot.gif[/img]

Post Reply