Changeset 3215
- Timestamp:
- 01/16/10 00:28:42 (8 weeks ago)
- Location:
- trunk
- Files:
-
- 1 modified
- 1 moved
-
config/desktop (moved) (moved from trunk/data/desktop)
-
lua/main.lua (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lua/main.lua
r3214 r3215 11 11 gMainPluginDir = gMainWorkingDir.."plugins/" 12 12 gConfigPath = gMainWorkingDir.."config/" 13 gDesktopDir = gMainWorkingDir.."data/desktop/"14 13 gScreenshotDir = gMainWorkingDir.."screenshots/" 15 14 gMacroFile = "mymacros.lua" … … 20 19 gConfigPathFile_old = datapath..gConfigFile -- only as Fallback for old users 21 20 gIrisWidgetDir = libpath.."widgets/" 21 gDesktopDir = gConfigPath.."desktop/" -- old was data/desktop/ 22 22 gTempPath = datapath.."tmp/" 23 23 gSecondsSinceLastFrame = 0 … … 44 44 gConfigPathFile = gConfigPath..gConfigFile 45 45 gMacroPathFile = gConfigPath..gMacroFile 46 gDesktopDir = gConfigPath.."desktop/" 47 46 48 47 49 if (not file_exists(gHomeIrisPath)) then … … 51 53 mkdir(gScreenshotDir) 52 54 mkdir(gConfigPath) 53 MyCopyDir(gMainWorkingDir.."config/",gConfigPath) 55 mkdir(gDesktopDir) 56 CopyDir(gMainWorkingDir.."config/",gConfigPath) 54 57 end 55 58 end
