/usr/share/codeblocks/scripts/startup.script is in codeblocks-common 16.01+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /*
* This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
* http://www.gnu.org/licenses/gpl-3.0.html
*
* $Revision: 7649 $
* $Id: startup.script 7649 2011-12-29 20:02:04Z tpetrov $
* $HeadURL: http://svn.code.sf.net/p/codeblocks/code/branches/release-16.xx/src/scripts/startup.script $
*/
Log(_T("Running startup script"));
// #include any script plugins; this will register them too
// un-comment the line below to register a pointless sample plugin
// Include(_T("sample_plugin.script"));
Include(_T("plugin_find_broken_files.script"));
// add a menu entry to edit this script
GetScriptingManager().RegisterScriptMenu(_("&Settings") + _T("/-") + _("Edit startup script"), _T("edit_startup_script.script"), false);
|