├── helal-website ├── js │ ├── main.js │ └── plugins.js ├── robots.txt ├── down.jpeg ├── down.png ├── favicon.ico ├── img │ ├── glyphicons-halflings.png │ └── glyphicons-halflings-white.png ├── humans.txt ├── css │ └── main.css ├── 404.html ├── download.html └── screenshots.html ├── helal-recorder ├── DEBIAN │ ├── copyright │ ├── postrm │ ├── postinst │ └── control └── usr │ ├── share │ ├── doc │ │ └── helal-recorder │ │ │ ├── AUTHORS │ │ │ └── COPYING │ ├── helal-recorder │ │ └── images │ │ │ ├── gtk-info.png │ │ │ ├── gtk-media-stop.png │ │ │ ├── gtk-media-record.png │ │ │ ├── application-delete.png │ │ │ └── gtk-media-play-ltr.png │ └── applications │ │ └── helal-recorder.desktop │ └── bin │ ├── helal-recorder-ar │ └── helal-recorder-en ├── helal-software-center ├── usr │ ├── lib │ │ └── sc │ │ │ ├── widgets │ │ │ ├── __init__.py │ │ │ ├── rgb.py │ │ │ └── searchentry.py │ │ │ ├── AptClient │ │ │ ├── __init__.py │ │ │ ├── ThreadedVar.py │ │ │ └── EventsObject.py │ │ │ ├── sc.png │ │ │ ├── categories │ │ │ ├── games-rts.list │ │ │ ├── graphics-publishing.list │ │ │ ├── graphics-scanning.list │ │ │ ├── games-fps.list │ │ │ ├── graphics-3d.list │ │ │ ├── games-tbs.list │ │ │ ├── internet-web.list │ │ │ ├── games-simulations.list │ │ │ ├── fonts.list │ │ │ ├── system-tools.list │ │ │ ├── graphics-photography.list │ │ │ ├── graphics-drawing.list │ │ │ ├── games-emulators.list │ │ │ ├── islamic-software.list │ │ │ ├── featured.list │ │ │ ├── internet-email.list │ │ │ ├── internet-chat.list │ │ │ ├── internet-filesharing.list │ │ │ ├── graphics.list │ │ │ ├── graphics-viewers.list │ │ │ ├── sound-video.list │ │ │ ├── games-board.list │ │ │ └── education.list │ │ │ ├── data │ │ │ ├── noise.png │ │ │ ├── available.png │ │ │ ├── installed.png │ │ │ ├── no-screenshot.png │ │ │ ├── emblem-installed.png │ │ │ └── templates │ │ │ │ ├── CategoriesView.html │ │ │ │ └── listView.html │ │ │ └── Classes.py │ ├── share │ │ ├── sc │ │ │ ├── release.id │ │ │ ├── data │ │ │ │ ├── icons │ │ │ │ │ └── categories │ │ │ │ │ │ ├── 154 │ │ │ │ │ │ ├── 155 │ │ │ │ │ │ ├── 156 │ │ │ │ │ │ ├── 157 │ │ │ │ │ │ ├── 158 │ │ │ │ │ │ ├── 159 │ │ │ │ │ │ ├── 160 │ │ │ │ │ │ ├── 161 │ │ │ │ │ │ ├── 162 │ │ │ │ │ │ ├── 163 │ │ │ │ │ │ ├── 164 │ │ │ │ │ │ ├── 165 │ │ │ │ │ │ ├── 166 │ │ │ │ │ │ ├── 167 │ │ │ │ │ │ ├── 168 │ │ │ │ │ │ ├── 169 │ │ │ │ │ │ ├── 170 │ │ │ │ │ │ ├── 171 │ │ │ │ │ │ ├── 172 │ │ │ │ │ │ ├── 173 │ │ │ │ │ │ ├── 174 │ │ │ │ │ │ ├── 175 │ │ │ │ │ │ ├── 176 │ │ │ │ │ │ ├── 177 │ │ │ │ │ │ ├── 178 │ │ │ │ │ │ ├── 179 │ │ │ │ │ │ ├── 180 │ │ │ │ │ │ ├── 181 │ │ │ │ │ │ ├── 182 │ │ │ │ │ │ ├── 183 │ │ │ │ │ │ ├── 184 │ │ │ │ │ │ ├── 185 │ │ │ │ │ │ ├── 186 │ │ │ │ │ │ ├── 187 │ │ │ │ │ │ ├── 188 │ │ │ │ │ │ ├── 189 │ │ │ │ │ │ ├── 190 │ │ │ │ │ │ ├── 191 │ │ │ │ │ │ ├── 192 │ │ │ │ │ │ ├── 193 │ │ │ │ │ │ ├── 194 │ │ │ │ │ │ ├── 195 │ │ │ │ │ │ ├── 196 │ │ │ │ │ │ ├── 197 │ │ │ │ │ │ └── icon-islam.svg │ │ │ │ └── details │ │ │ │ │ └── packages.list │ │ │ ├── featured_applications │ │ │ │ ├── amule.png │ │ │ │ ├── gimp.png │ │ │ │ ├── opera.png │ │ │ │ ├── skype.png │ │ │ │ ├── vlc.png │ │ │ │ ├── amarok.png │ │ │ │ ├── f-spot.png │ │ │ │ ├── picasa.png │ │ │ │ ├── scribus.png │ │ │ │ ├── acroread.png │ │ │ │ ├── audacity.png │ │ │ │ ├── filezilla.png │ │ │ │ ├── songbird.png │ │ │ │ ├── virtualbox.png │ │ │ │ ├── googleearth.png │ │ │ │ ├── msttcorefonts.png │ │ │ │ └── list.txt │ │ │ ├── portals.list │ │ │ └── sources.list │ │ ├── pixmaps │ │ │ └── sc.png │ │ ├── locale │ │ │ └── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ └── sc.mo │ │ ├── applications │ │ │ └── helal-software-center.desktop │ │ └── doc │ │ │ └── helal-software-center │ │ │ └── copyright │ └── bin │ │ └── helal-software-center └── DEBIAN │ └── control ├── helal-wysiwyg-editor ├── usr │ ├── share │ │ ├── doc │ │ │ └── helal-wysiwyg-editor │ │ │ │ ├── AUTHORS │ │ │ │ └── COPYING │ │ ├── pixmaps │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── InsertUnorderedList.png │ │ │ ├── format_list_ordered.png │ │ │ └── helal-wysiwyg-editor.png │ │ ├── applications │ │ │ └── helal-wysiwyg-editor.desktop │ │ └── helal-wysiwyg-editor │ │ │ ├── helal-wysiwyg-editor-ar.html │ │ │ └── helal-wysiwyg-editor.html │ └── bin │ │ └── helal-wysiwyg-editor └── DEBIAN │ └── control ├── helal-backgrounds ├── usr │ └── share │ │ ├── backgrounds │ │ ├── xfce │ │ │ ├── وصلة إلى hd1.jpg │ │ │ ├── وصلة إلى hd2.jpg │ │ │ ├── وصلة إلى hd4.jpg │ │ │ ├── وصلة إلى bg-10.jpg │ │ │ ├── وصلة إلى bg-11.jpg │ │ │ ├── وصلة إلى bg-12.jpg │ │ │ ├── وصلة إلى bg-13.jpg │ │ │ ├── وصلة إلى bg-14.jpg │ │ │ ├── وصلة إلى bg-15.jpg │ │ │ ├── وصلة إلى bg-16.jpg │ │ │ ├── وصلة إلى bg-19.jpg │ │ │ ├── وصلة إلى bg-2.png │ │ │ ├── وصلة إلى bg-20.jpg │ │ │ ├── وصلة إلى bg-21.jpg │ │ │ ├── وصلة إلى bg-6.png │ │ │ ├── وصلة إلى bg-7.jpg │ │ │ ├── وصلة إلى bg-8.jpg │ │ │ ├── وصلة إلى bg-9.jpg │ │ │ ├── وصلة إلى hd-3.jpg │ │ │ ├── وصلة إلى helal2.jpg │ │ │ └── وصلة إلى helal4.jpg │ │ ├── bg-2.png │ │ ├── bg-6.png │ │ ├── bg-7.jpg │ │ ├── bg-8.jpg │ │ ├── bg-9.jpg │ │ ├── hd-3.jpg │ │ ├── hd1.jpg │ │ ├── hd2.jpg │ │ ├── hd4.jpg │ │ ├── bg-10.jpg │ │ ├── bg-11.jpg │ │ ├── bg-12.jpg │ │ ├── bg-13.jpg │ │ ├── bg-14.jpg │ │ ├── bg-15.jpg │ │ ├── bg-16.jpg │ │ ├── bg-19.jpg │ │ ├── bg-20.jpg │ │ ├── bg-21.jpg │ │ ├── helal2.jpg │ │ └── helal4.jpg │ │ ├── doc │ │ └── helal-wallpapers │ │ │ └── README │ │ └── gnome-background-properties │ │ └── helal-wallpapers.xml └── DEBIAN │ └── control ├── helal-menu ├── DEBIAN │ ├── conffiles │ └── control ├── usr │ └── share │ │ ├── doc │ │ └── helal-menu │ │ │ └── COPYING │ │ ├── desktop-directories │ │ └── helallinux.directory │ │ └── icons │ │ └── hicolor │ │ └── scalable │ │ └── categories │ │ └── helal.svg └── etc │ └── xdg │ └── menus │ ├── applications-merged │ └── helal.menu │ └── applications-gnome-merged │ └── helal.menu ├── helal-control-center ├── frontend │ ├── icons │ │ ├── other.png │ │ ├── system.png │ │ ├── desktop.png │ │ ├── hardware.png │ │ ├── packages.png │ │ ├── sys_info.png │ │ └── modules │ │ │ ├── gdebi.png │ │ │ ├── time.png │ │ │ ├── displays.png │ │ │ ├── download.png │ │ │ ├── keyboard.png │ │ │ ├── network.png │ │ │ ├── notfound.png │ │ │ ├── orphaned.png │ │ │ ├── settings.png │ │ │ ├── sources.png │ │ │ ├── startup.png │ │ │ ├── synaptic.png │ │ │ └── softwarecenter.png │ ├── images │ │ ├── forum.png │ │ ├── help.png │ │ ├── bg-shadow.png │ │ ├── bg-wrapper.png │ │ ├── hcc_logo.png │ │ ├── icons-mono.png │ │ ├── bg-controls.png │ │ ├── button-active.png │ │ └── button-active_right.png │ ├── default.html │ └── css │ │ ├── all.css │ │ └── ar.css ├── usr │ ├── bin │ │ └── helal-control-center │ └── share │ │ ├── helal-control-center │ │ └── images │ │ │ ├── optimus.png │ │ │ ├── others.png │ │ │ ├── package.png │ │ │ ├── messagebox_info.png │ │ │ ├── system-network.png │ │ │ ├── bluetooth.svg │ │ │ ├── nvidia.svg │ │ │ └── ati.svg │ │ └── applications │ │ └── helal-control-center.desktop └── DEBIAN │ └── control ├── helal-welcome ├── usr │ ├── share │ │ ├── helal-welcome │ │ │ └── icons │ │ │ │ ├── sc.png │ │ │ │ ├── wiki.png │ │ │ │ ├── editor.png │ │ │ │ ├── facebook.gif │ │ │ │ ├── website.png │ │ │ │ ├── donate-icon1.gif │ │ │ │ └── helallinuxads.png │ │ ├── applications │ │ │ └── helal-welcome.desktop │ │ └── doc │ │ │ └── helal-welcome │ │ │ └── copyright │ └── bin │ │ └── helal-welcome └── DEBIAN │ └── control ├── README └── helal-shortener ├── README ├── usr ├── share │ ├── applications │ │ └── helal-shortener.desktop │ └── doc │ │ └── helal-shortener │ │ └── copyright └── bin │ └── helal-shortener └── DEBIAN └── control /helal-website/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /helal-recorder/DEBIAN/copyright: -------------------------------------------------------------------------------- 1 | Copyright: GPL 3 2 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/release.id: -------------------------------------------------------------------------------- 1 | 6 2 | 3 | -------------------------------------------------------------------------------- /helal-website/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /helal-recorder/DEBIAN/postrm: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | rm /bin/sh 3 | ln -s /bin/dash /bin/sh -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/AptClient/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['AptClient'] 2 | -------------------------------------------------------------------------------- /helal-recorder/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | rm /bin/sh 3 | ln -s /bin/bash /bin/sh -------------------------------------------------------------------------------- /helal-recorder/usr/share/doc/helal-recorder/AUTHORS: -------------------------------------------------------------------------------- 1 | M.Hanny Sabbagh 2 | -------------------------------------------------------------------------------- /helal-website/down.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-website/down.jpeg -------------------------------------------------------------------------------- /helal-website/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-website/down.png -------------------------------------------------------------------------------- /helal-website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-website/favicon.ico -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/doc/helal-wysiwyg-editor/AUTHORS: -------------------------------------------------------------------------------- 1 | M.Hanny Sabbagh 2 | -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى hd1.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/hd1.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى hd2.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/hd2.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى hd4.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/hd4.jpg -------------------------------------------------------------------------------- /helal-menu/DEBIAN/conffiles: -------------------------------------------------------------------------------- 1 | /etc/xdg/menus/applications-merged/helal.menu 2 | /etc/xdg/menus/applications-gnome-merged/helal.menu 3 | -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-10.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-10.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-11.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-11.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-12.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-12.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-13.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-13.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-14.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-14.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-15.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-15.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-16.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-16.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-19.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-19.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-2.png : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-2.png -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-20.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-20.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-21.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-21.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-6.png : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-6.png -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-7.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-7.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-8.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-8.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى bg-9.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/bg-9.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى hd-3.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/hd-3.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى helal2.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/helal2.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/xfce/وصلة إلى helal4.jpg : -------------------------------------------------------------------------------- 1 | /home/hanny/helallinux/helal-backgrounds/usr/share/backgrounds/helal4.jpg -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/lib/sc/sc.png -------------------------------------------------------------------------------- /helal-menu/usr/share/doc/helal-menu/COPYING: -------------------------------------------------------------------------------- 1 | Helal Menu is released under GPL 3 or later. 2 | By: M.Hanny Sabbagh 3 | -------------------------------------------------------------------------------- /helal-website/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-website/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/other.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/system.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/forum.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/help.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/pixmaps/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/pixmaps/sc.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/1.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/2.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/3.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/4.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/5.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/6.png -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-2.png -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-6.png -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-7.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-8.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-9.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/hd-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/hd-3.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/hd1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/hd1.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/hd2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/hd2.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/hd4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/hd4.jpg -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/desktop.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/hardware.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/packages.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/sys_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/sys_info.png -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/games-rts.list: -------------------------------------------------------------------------------- 1 | boson 2 | boswars 3 | glest 4 | glob2 5 | lightyears 6 | warzone2100 7 | widelands 8 | 9 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/lib/sc/data/noise.png -------------------------------------------------------------------------------- /helal-website/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-website/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-10.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-11.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-12.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-13.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-14.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-15.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-16.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-19.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-20.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/bg-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/bg-21.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/helal2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/helal2.jpg -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/backgrounds/helal4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-backgrounds/usr/share/backgrounds/helal4.jpg -------------------------------------------------------------------------------- /helal-control-center/frontend/images/bg-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/bg-shadow.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/bg-wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/bg-wrapper.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/hcc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/hcc_logo.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/icons-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/icons-mono.png -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics-publishing.list: -------------------------------------------------------------------------------- 1 | scribus 2 | fotowall 3 | kile 4 | scribus-ng 5 | gnome-specimen 6 | texmaker 7 | 8 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/lib/sc/data/available.png -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/lib/sc/data/installed.png -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/sc.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/gdebi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/gdebi.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/time.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/bg-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/bg-controls.png -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/wiki.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/displays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/displays.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/download.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/keyboard.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/network.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/notfound.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/orphaned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/orphaned.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/settings.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/sources.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/startup.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/synaptic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/synaptic.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/button-active.png -------------------------------------------------------------------------------- /helal-menu/usr/share/desktop-directories/helallinux.directory: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Directory 3 | Icon=helal 4 | Name=Helal Linux 5 | Name[ar]=هلال لينُكس 6 | 7 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics-scanning.list: -------------------------------------------------------------------------------- 1 | gscan2pdf 2 | hocr-gtk 3 | scantailor 4 | simple-scan 5 | skanlite 6 | xsane 7 | flegita 8 | 9 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/no-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/lib/sc/data/no-screenshot.png -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/editor.png -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/facebook.gif -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/website.png -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/emblem-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/lib/sc/data/emblem-installed.png -------------------------------------------------------------------------------- /helal-control-center/frontend/images/button-active_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/images/button-active_right.png -------------------------------------------------------------------------------- /helal-recorder/usr/share/helal-recorder/images/gtk-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-recorder/usr/share/helal-recorder/images/gtk-info.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/locale/ar/LC_MESSAGES/sc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/locale/ar/LC_MESSAGES/sc.mo -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/154: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/154 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/155: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/155 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/156 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/157 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/158: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/158 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/159: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/159 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/160: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/160 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/161: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/161 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/162: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/162 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/163: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/163 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/164: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/164 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/165: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/165 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/166: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/166 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/167: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/167 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/168: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/168 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/169: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/169 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/170 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/171 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/172 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/173: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/173 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/174: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/174 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/175: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/175 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/176: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/176 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/177: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/177 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/178: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/178 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/179: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/179 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/180: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/180 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/181: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/181 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/182: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/182 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/183: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/183 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/184: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/184 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/185: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/185 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/186: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/186 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/187: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/187 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/188: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/188 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/189: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/189 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/190 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/191: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/191 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/192 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/193: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/193 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/194: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/194 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/195 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/196: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/196 -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/197: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/data/icons/categories/197 -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/donate-icon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/donate-icon1.gif -------------------------------------------------------------------------------- /helal-welcome/usr/share/helal-welcome/icons/helallinuxads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-welcome/usr/share/helal-welcome/icons/helallinuxads.png -------------------------------------------------------------------------------- /helal-control-center/frontend/icons/modules/softwarecenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/frontend/icons/modules/softwarecenter.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/InsertUnorderedList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/InsertUnorderedList.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/format_list_ordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/format_list_ordered.png -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/pixmaps/helal-wysiwyg-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-wysiwyg-editor/usr/share/pixmaps/helal-wysiwyg-editor.png -------------------------------------------------------------------------------- /helal-recorder/usr/share/helal-recorder/images/gtk-media-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-recorder/usr/share/helal-recorder/images/gtk-media-stop.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/amule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/amule.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/gimp.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/opera.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/skype.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/vlc.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/portals.list: -------------------------------------------------------------------------------- 1 | LM8;The Linux Mint Software Portal;http://www.linuxmint.com/software;6;Helena;http://www.linuxmint.com/software/export.php?release=6 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Helal Linux Code Repository 2 | ========== 3 | 4 | This is Helal Linux code repository, here you will find the main sources for Helal packages, Contact: hannysabbagh[at]hotmail.com 5 | -------------------------------------------------------------------------------- /helal-recorder/usr/share/helal-recorder/images/gtk-media-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-recorder/usr/share/helal-recorder/images/gtk-media-record.png -------------------------------------------------------------------------------- /helal-shortener/README: -------------------------------------------------------------------------------- 1 | Helal URL Shortener is a free and open-source tool to shorten web URLs easily on Ubuntu/ Helal Linux, it is written in shell script and uses gtkdialog for it's GUI. 2 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/games-fps.list: -------------------------------------------------------------------------------- 1 | assaultcube 2 | alien-arena 3 | nexuiz 4 | open-arena 5 | rott 6 | sauerbraten 7 | urban-terror 8 | warsow 9 | 10 | 11 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/amarok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/amarok.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/f-spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/f-spot.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/picasa.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/scribus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/scribus.png -------------------------------------------------------------------------------- /helal-control-center/usr/bin/helal-control-center: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | if [[ "$LANG" == *ar* ]];then 3 | /usr/share/helal-control-center/hcc 4 | else 5 | /usr/share/helal-control-center/hcc-en 6 | fi 7 | -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/optimus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/usr/share/helal-control-center/images/optimus.png -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/usr/share/helal-control-center/images/others.png -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/usr/share/helal-control-center/images/package.png -------------------------------------------------------------------------------- /helal-recorder/usr/share/helal-recorder/images/application-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-recorder/usr/share/helal-recorder/images/application-delete.png -------------------------------------------------------------------------------- /helal-recorder/usr/share/helal-recorder/images/gtk-media-play-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-recorder/usr/share/helal-recorder/images/gtk-media-play-ltr.png -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics-3d.list: -------------------------------------------------------------------------------- 1 | blender 2 | aqsis 3 | g3dviewer 4 | k3d 5 | meshlab 6 | opencascade-draw 7 | structure-synth 8 | sunflow 9 | wings3d 10 | 11 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/acroread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/acroread.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/audacity.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/filezilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/filezilla.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/songbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/songbird.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/virtualbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/virtualbox.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/googleearth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/googleearth.png -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/msttcorefonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-software-center/usr/share/sc/featured_applications/msttcorefonts.png -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/messagebox_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/usr/share/helal-control-center/images/messagebox_info.png -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/system-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhsabbagh/helallinux/HEAD/helal-control-center/usr/share/helal-control-center/images/system-network.png -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/games-tbs.list: -------------------------------------------------------------------------------- 1 | asc 2 | attal 3 | crimson 4 | freeciv-client-gtk 5 | freeciv-client-sdl 6 | freecol 7 | hedgewars 8 | konquest 9 | lordsawar 10 | teg 11 | wesnoth 12 | wormux 13 | 14 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/internet-web.list: -------------------------------------------------------------------------------- 1 | opera 2 | firefox 3 | seamonkey-browser 4 | midori 5 | epiphany-browser 6 | galeon 7 | prism 8 | konqueror 9 | w3m 10 | elinks 11 | lynx 12 | arora 13 | conkeror 14 | dooble 15 | rekonq 16 | 17 | -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/doc/helal-wallpapers/README: -------------------------------------------------------------------------------- 1 | Helal Backgrounds are released under cc-by-sa 3.0: 2 | http://creativecommons.org/licenses/by-sa/3.0 3 | 4 | some wallpapers are token from: 5 | http://wallpaperswide.com/ 6 | and they have thier own license. 7 | -------------------------------------------------------------------------------- /helal-software-center/usr/bin/helal-software-center: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo apt-get remove > /dev/null 3 | 4 | if [ $? -eq '0' ]; 5 | then 6 | python /usr/lib/sc/main.py 7 | else 8 | echo "Please close any other dpkg apps before running helal-software-center." 9 | fi 10 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/games-simulations.list: -------------------------------------------------------------------------------- 1 | armagetron 2 | antigravitaattori 3 | bloboats 4 | extremetuxracer 5 | flightgear 6 | freetennis 7 | lincity 8 | planetpenguin-racer 9 | supertuxkart 10 | torcs 11 | trigger-rally 12 | trophy 13 | xracer 14 | -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/bin/helal-wysiwyg-editor: -------------------------------------------------------------------------------- 1 | 2 | gui2_lang=$(cat /home/$USER/.config/user-dirs.locale) 3 | echo $gui2_lang 4 | 5 | 6 | if [[ "$gui2_lang" == *ar* ]];then 7 | /usr/bin/helal-wysiwyg-editor-ar 8 | else 9 | /usr/bin/helal-wysiwyg-editor-en 10 | fi 11 | -------------------------------------------------------------------------------- /helal-website/humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 | -- -- 7 | 8 | # THANKS 9 | 10 | 11 | 12 | # TECHNOLOGY COLOPHON 13 | 14 | HTML5, CSS3 15 | jQuery, Modernizr 16 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/fonts.list: -------------------------------------------------------------------------------- 1 | ttf-mscorefonts-installer 2 | ttf-telugu-fonts 3 | ttf-farsiweb 4 | ttf-droid 5 | ttf-freefarsi 6 | ttf-indic-fonts-core 7 | ttf-linux-libertine 8 | ttf-monapo 9 | ttf-sil-gentium 10 | ttf-sil-gentium-basic 11 | ttf-wqy-microhei 12 | -------------------------------------------------------------------------------- /helal-menu/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-menu 2 | Version: 1.0 3 | Architecture: i386 4 | Maintainer: hannysabbagh 5 | Section: others 6 | Priority: optional 7 | Homepage: https://helallinux.com 8 | Description: This package provides Helal Linux categories under the applictions menu. 9 | -------------------------------------------------------------------------------- /helal-wysiwyg-editor/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-wysiwyg-editor 2 | Version: 1.0.6 3 | Architecture: i386 4 | Maintainer: M.hannysabbagh 5 | Depends: python-webkit (>= 1.1.5) 6 | Section: Miscellaneous; 7 | Priority: optional 8 | Description: A WYSIWYG editor to edit HTML files easily. 9 | -------------------------------------------------------------------------------- /helal-welcome/usr/share/applications/helal-welcome.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Helal Welcome 3 | Name[ar]= ترحيب هلال 4 | Comment=Welcome to Helal Linux! 5 | Comment[ar]= أهلًا بك إلى هلال لينُكس! 6 | Categories=helallinux; 7 | Exec=helal-welcome 8 | Icon=stock_about 9 | StartupNotify=true 10 | Terminal=false 11 | Type=Application 12 | 13 | -------------------------------------------------------------------------------- /helal-welcome/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-welcome 2 | Version: 1.1 3 | Architecture: i386 4 | Maintainer: hannysabbagh 5 | Homepage: http://helallinux.com 6 | Section: Others 7 | Priority: standard 8 | Depends: gtkdialog (>= 0.8.2), helal-menu 9 | Description: Helal Welcome 10 | Welcome to Helal Linux! 11 | . 12 | . 13 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/system-tools.list: -------------------------------------------------------------------------------- 1 | gnome-do 2 | guake 3 | wine1.2 4 | wine 5 | docky 6 | virtualbox-guest-additions 7 | virtualbox-ose 8 | virtualbox-3.1 9 | screen 10 | parcellite 11 | openbox 12 | terminator 13 | gnome-commander 14 | screenlets 15 | meld 16 | gedit 17 | nvidia-settings 18 | compizconfig-settings-manager 19 | yakuake 20 | 21 | -------------------------------------------------------------------------------- /helal-backgrounds/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-backgrounds 2 | Version: 0.9.9.9 3 | Architecture: i386 4 | Maintainer: hannysabbagh 5 | Depends: dpkg (>= 1.0) 6 | Section: system 7 | Priority: optional 8 | Description: Helal Linux backgrounds 9 | a cool set of wallpapers for Helal Linux-Gnome. 10 | . 11 | Homepage: http://helallinux.com 12 | 13 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics-photography.list: -------------------------------------------------------------------------------- 1 | picasa 2 | eog 3 | gliv 4 | gpicview 5 | gqview 6 | gthumb 7 | gwenview 8 | qiv 9 | ristretto 10 | showfoto 11 | digikam 12 | f-spot 13 | gpixpod 14 | gtkam 15 | kflickr 16 | photoprint 17 | camera.app 18 | kphotoalbum 19 | luciole 20 | phatch 21 | qtpfsgui 22 | rawstudio 23 | shotwell 24 | ufraw 25 | postr 26 | 27 | -------------------------------------------------------------------------------- /helal-shortener/usr/share/applications/helal-shortener.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Helal URL Shortener 3 | Name[ar]= مقصر روابط هلال 4 | Comment=Shorten Web URLs easily from the desktop. 5 | Comment[ar]= تقصير روابط الوب بسهولة من سطح المكتب. 6 | Categories=helallinux; 7 | Exec=helal-shortener 8 | Icon=stock_internet 9 | StartupNotify=true 10 | Terminal=false 11 | Type=Application 12 | 13 | -------------------------------------------------------------------------------- /helal-control-center/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-control-center 2 | Version: 1.0.0-4 3 | Architecture: i386 4 | Maintainer: hannysabbagh 5 | Depends: dpkg (>= 1.0), gtkdialog (>= 0.8.3), mintnanny 6 | Section: Others 7 | Priority: optional 8 | Description: Helal Control Center 9 | A Full control center for the Helal Linux desktop, built using gtkdialog and shell script. 10 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/applications/helal-software-center.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Helal Software Center 3 | Name[ar]=مركز برمجيات هلال 4 | Comment=Install new applications 5 | Comment[ar]=تثبيت برمجيات جديدة وإزالتها بسهولة 6 | Exec=gksu helal-software-center 7 | Icon=/usr/share/pixmaps/sc.png 8 | Terminal=false 9 | Type=Application 10 | Encoding=UTF-8 11 | Categories=helallinux; 12 | -------------------------------------------------------------------------------- /helal-shortener/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-shortener 2 | Version: 1.1 3 | Architecture: i386 4 | Maintainer: hannysabbagh 5 | Homepage: http://helallinux.com 6 | Section: Internet 7 | Priority: standard 8 | Depends: gtkdialog (>= 0.8.2), wget, helal-menu, curl 9 | Description: Helal URL Shortener 10 | Helal URL Shortener is a simple program to shorten web URLs from the desktop. 11 | . 12 | . 13 | -------------------------------------------------------------------------------- /helal-software-center/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-software-center 2 | Version: 1.1 3 | Maintainer: hannysabbagh 4 | Architecture: all 5 | Depends: python (>= 2.4), python (<< 3), python-gtk2, python-glade2, python-webkit, python-imaging, python-sexy, libgtk2-perl 6 | Section: Others 7 | Priority: optional 8 | Description: Helal Software Center 9 | A software Center to easily install new applications. 10 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics-drawing.list: -------------------------------------------------------------------------------- 1 | agave 2 | gtkmorph 3 | karbon 4 | kivio 5 | kolourpaint 6 | krita 7 | mtpaint 8 | rgbpaint 9 | skencil 10 | tuxpaint 11 | kcoloredit 12 | kiconedit 13 | kover 14 | koverartist 15 | kruler 16 | cenon.app 17 | fontmatrix 18 | inkscape 19 | latexdraw 20 | openoffice.org-draw 21 | pencil 22 | qelectrotech 23 | salasaga 24 | synfigstudio 25 | xaralx 26 | dia 27 | gimp 28 | 29 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/games-emulators.list: -------------------------------------------------------------------------------- 1 | zsnes 2 | wine 3 | visualboyadvance-gtk 4 | vice 5 | uae 6 | stella 7 | spectemu-x11 8 | sdlmame 9 | pearpc 10 | pcsx-df 11 | pose-skins 12 | openmsx-catapult 13 | nestra 14 | xmess-sdl 15 | mednafen 16 | kxmame 17 | hatari 18 | gnuboy-sdl 19 | snes9express 20 | gngb 21 | gfceu 22 | dosemu 23 | dosbox 24 | dgen 25 | desmume 26 | basilisk2 27 | atari800 28 | playonlinux 29 | 30 | -------------------------------------------------------------------------------- /helal-control-center/usr/share/applications/helal-control-center.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Helal Control Center 3 | Name[ar]=مركز تحكم هلال 4 | Comment=A Control Center for Helal Linux 5 | Comment[ar]=مركز تحكم لتوزيعة هلال لينُكس 6 | Exec=bash /usr/bin/helal-control-center 7 | Terminal=no 8 | Type=Application 9 | StartupNotify=true 10 | Icon=/usr/share/helal-control-center/images/helal-control-center.svg 11 | Categories=helallinux; 12 | 13 | 14 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/islamic-software.list: -------------------------------------------------------------------------------- 1 | monajat 2 | hijra-applet 3 | othman 4 | zekr 5 | monajat-applet 6 | curlew 7 | faraidh 8 | mqayes 9 | hajeb 10 | esteaada 11 | almasa-gtkdialog 12 | almasa-root 13 | almohawell 14 | ojuba-personal-lock 15 | thawab 16 | minbar 17 | monajat-mod 18 | monajat-applet 19 | monajat-data 20 | minbar-data 21 | python-monajat 22 | monajat-screenlet 23 | islamic-menus 24 | itools 25 | helal-wysiwyg-editor -------------------------------------------------------------------------------- /helal-recorder/usr/share/applications/helal-recorder.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Helal Recorder 3 | Name[ar]=مسجل هلال 4 | GenericName=Helal Recorder 5 | Name[ar]=مسجل هلال 6 | Comment=Record desktop using a simple GUI. 7 | Comment[ar]=تسجيل سطح المكتب باستخدام واجهة رسومية سهلة. 8 | Exec=bash /usr/bin/helal-recorder 9 | Terminal=no 10 | Type=Application 11 | StartupNotify=true 12 | Icon=/usr/share/pixmaps/helal-recorder.svg 13 | Categories=helallinux; 14 | 15 | 16 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/sources.list: -------------------------------------------------------------------------------- 1 | deb http://packages.linuxmint.com/ helena main upstream import 2 | deb http://archive.ubuntu.com/ubuntu/ karmic main restricted universe multiverse 3 | deb http://archive.ubuntu.com/ubuntu/ karmic-updates main restricted universe multiverse 4 | deb http://security.ubuntu.com/ubuntu/ karmic-security main restricted universe multiverse 5 | deb http://archive.canonical.com/ubuntu/ karmic partner 6 | deb http://packages.medibuntu.org/ karmic free non-free 7 | 8 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/featured.list: -------------------------------------------------------------------------------- 1 | opera 2 | dropbox 3 | firefox 4 | thunderbird 5 | filezilla 6 | googleearth 7 | picasa 8 | virtualbox-nonfree 9 | acroread 10 | gimp 11 | inkscape 12 | scribus 13 | frostwire 14 | miro 15 | vuze 16 | gwibber 17 | vlc 18 | f-spot 19 | minitube 20 | xchat 21 | pidgin 22 | wine 23 | libreoffice 24 | gparted 25 | audacity 26 | deluge 27 | rhythmbox 28 | amarok 29 | k3b 30 | songbird 31 | avant-window-navigator 32 | giver 33 | sun-java6-plugin 34 | skype 35 | 36 | -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/applications/helal-wysiwyg-editor.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=helal-wysiwyg-editor 3 | Name[ar]=محرر هلال المرئي 4 | GenericName=Helal Wysiwyg Editor 5 | Name[ar]=محرر هلال المرئي 6 | Comment=Create,Edit html files easily. 7 | Comment[ar]=إنشاء وتعديل ملفات html بسهولة. 8 | Exec=/usr/bin/helal-wysiwyg-editor-ar 9 | Terminal=no 10 | Type=Application 11 | StartupNotify=true 12 | Icon=/usr/share/pixmaps/helal-wysiwyg-editor.png 13 | Categories=GNOME;GTK;Utility;TextEditor; 14 | 15 | 16 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/internet-email.list: -------------------------------------------------------------------------------- 1 | balsa 2 | claws-mail 3 | anjal 4 | evolution 5 | prism-google-mail 6 | kmail 7 | mail-notification 8 | seamonkey-mailnews 9 | syncmaildir-applet 10 | alpine 11 | thunderbird 12 | checkgmail 13 | freepops 14 | fetchyahoo 15 | sylpheed 16 | enigmail 17 | fetchmail 18 | gmail-notify 19 | gotmail 20 | mutt 21 | yahoo2mbox 22 | kontact 23 | getmail4 24 | nautilus-sendto 25 | exim4 26 | mailody 27 | sendmail 28 | kcheckmail 29 | postfix 30 | spamassassin 31 | spambayes 32 | 33 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/internet-chat.list: -------------------------------------------------------------------------------- 1 | skype 2 | amsn 3 | ayttm 4 | emesene 5 | gajim 6 | gossip 7 | jwchat 8 | kadu 9 | kmess 10 | kopete 11 | quassel 12 | licq 13 | pidgin 14 | empathy 15 | psi 16 | sim 17 | centerim 18 | cgiirc 19 | epic4 20 | erc 21 | finch 22 | ircii 23 | irssi 24 | konversation 25 | kvirc 26 | liece 27 | loqui 28 | lostirc 29 | naim 30 | pork 31 | riece 32 | scrollz 33 | seamonkey-chatzilla 34 | sic 35 | sirc 36 | tinyirc 37 | weechat 38 | xchat 39 | xchat-gnome 40 | eva 41 | prism-google-talk 42 | qutim 43 | tkabber 44 | 45 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/internet-filesharing.list: -------------------------------------------------------------------------------- 1 | filezilla 2 | gftp 3 | kftpgrabber 4 | kasablanca 5 | amule 6 | bittornado-gui 7 | deluge 8 | bittorrent-gui 9 | frostwire 10 | ktorrent 11 | transmission-gtk 12 | vuze 13 | rtorrent 14 | axel-kapt 15 | foff 16 | ftp.app 17 | giver 18 | gnunet-qt 19 | gnunet-gtk 20 | gtk-gnutella 21 | gwget 22 | kbluetooth 23 | kepas 24 | kflickr 25 | kget 26 | kmldonkey 27 | kradioripper 28 | lottanzb 29 | miro 30 | mldonkey-gui 31 | moserial 32 | tork 33 | transmission-qt 34 | tucan 35 | uget 36 | valknut 37 | 38 | 39 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics.list: -------------------------------------------------------------------------------- 1 | agave 2 | blender 3 | fontforge 4 | picasa 5 | dia 6 | gimp 7 | gtkmorph 8 | inkscape 9 | karbon 10 | kivio 11 | kolourpaint 12 | krita 13 | mtpaint 14 | openoffice.org-draw 15 | rgbpaint 16 | skencil 17 | tuxpaint 18 | xaralx 19 | eog 20 | gliv 21 | gpicview 22 | gqview 23 | gthumb 24 | gwenview 25 | qiv 26 | ristretto 27 | showfoto 28 | digikam 29 | f-spot 30 | gpixpod 31 | gtkam 32 | flegita 33 | xsane 34 | kcoloredit 35 | kflickr 36 | kiconedit 37 | kover 38 | koverartist 39 | kruler 40 | ksnapshot 41 | photoprint 42 | -------------------------------------------------------------------------------- /helal-recorder/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: helal-recorder 2 | Version: 1.0.11 3 | Architecture: i386 4 | Maintainer: hannysabbagh 5 | Homepage: http://helallinux.com 6 | Section: AudioVideo 7 | Priority: standard 8 | Depends: gtkdialog (>= 0.8.2), libav-tools (>= 0.8.6-6), mplayer (>=1.0), helal-menu 9 | Description: Helal Recorder 10 | Helal Recorder is a GUI recorder for Helal Linux desktop. 11 | it can record videos in many formats like: nut, avi, flv, mkv. 12 | this recorder uses gtkdialog for its GUI, and avconv for recording the desktop. 13 | . 14 | . 15 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/AptClient/ThreadedVar.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/python 2 | # -*- coding=utf-8 -*- 3 | 4 | import threading 5 | 6 | class ThreadedVar(object): 7 | def __init__(self, value = None): 8 | self._value = value 9 | self._lock = threading.Lock() 10 | 11 | def get_value(self): 12 | self._lock.acquire() 13 | res = self._value 14 | self._lock.release() 15 | return res 16 | 17 | def set_value(self, value): 18 | self._lock.acquire() 19 | self._value = value 20 | self._lock.release() 21 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/graphics-viewers.list: -------------------------------------------------------------------------------- 1 | acroread 2 | aeskulap 3 | apvlv 4 | aqsis 5 | buxon 6 | camorama 7 | cbrpager 8 | comix 9 | yorick-cubeview 10 | djview3 11 | djview4 12 | evince 13 | fbreader 14 | epdfview 15 | feh 16 | flpsed 17 | fslview 18 | geeqie 19 | gthumb 20 | gtkam 21 | gv 22 | gwenview 23 | eog 24 | gpicview 25 | kchmviewer 26 | calibre 27 | meshlab 28 | mirage 29 | nfoview 30 | okular 31 | omaque 32 | pdfedit 33 | preview.app 34 | qcomicbook 35 | qtpfsgui 36 | ristretto 37 | gnome-specimen 38 | txtreader 39 | viewpdf.app 40 | xchm 41 | xpdf-reader 42 | 43 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/sound-video.list: -------------------------------------------------------------------------------- 1 | vlc 2 | minitunes 3 | minitube 4 | smplayer 5 | mplayer 6 | totem 7 | xine 8 | acidrip 9 | brasero 10 | lastfm 11 | easytag 12 | audacious 13 | banshee 14 | rhythmbox 15 | exaile 16 | cheese 17 | decibel-audio-player 18 | soundconverter 19 | sound-juicer 20 | radiotray 21 | gpodder 22 | pitivi 23 | xfburn 24 | k9copy 25 | k3b 26 | acetoneiso 27 | gnomebaker 28 | amarok 29 | ardour 30 | listen 31 | aqualung 32 | cmus 33 | xmms2 34 | guayadeque 35 | openshot 36 | kino 37 | gimp-gap 38 | mencoder 39 | kmplayer 40 | mplayer-gui 41 | dumphd 42 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/featured_applications/list.txt: -------------------------------------------------------------------------------- 1 | acroread=Adobe Acrobat Reader=acroread.png 2 | amarok=Amarok=amarok.png 3 | amule=aMule=amule.png 4 | audacity=Audacity=audacity.png 5 | f-spot=F-Spot=f-spot.png 6 | filezilla=Filezilla=filezilla.png 7 | gimp=Gimp=gimp.png 8 | googleearth=Google Earth=googleearth.png 9 | ttf-mscorefonts-installer=Microsoft TrueType Fonts=msttcorefonts.png 10 | opera=Opera=opera.png 11 | picasa=Picasa=picasa.png 12 | scribus=Scribus=scribus.png 13 | skype=Skype=skype.png 14 | songbird=Songbird=songbird.png 15 | virtualbox-3.0=Virtualbox=virtualbox.png 16 | vlc=VLC=vlc.png 17 | -------------------------------------------------------------------------------- /helal-menu/etc/xdg/menus/applications-merged/helal.menu: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Applications 6 | 7 | Helal Linux 8 | helallinux.directory 9 | 10 | 11 | helallinux 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /helal-menu/etc/xdg/menus/applications-gnome-merged/helal.menu: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Applications 6 | 7 | Helal Linux 8 | helallinux.directory 9 | 10 | 11 | helallinux 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/games-board.list: -------------------------------------------------------------------------------- 1 | 3dchess 2 | biloba 3 | bovo 4 | brutalchess 5 | cgoban 6 | glchess 7 | gnome-chess 8 | dreamchess 9 | eboard 10 | ggz-python-games 11 | fltk1.1-games 12 | gamazons 13 | gnubg 14 | gnudoq 15 | gomoku.app 16 | grhino 17 | gtkatlantic 18 | gtkboard 19 | iagno 20 | kblackbox 21 | ggz-kde-games 22 | kfourinline 23 | kigo 24 | kiriki 25 | kmahjongg 26 | kreversi 27 | ksquares 28 | londonlaw 29 | mah-jong 30 | gnome-mahjongg 31 | gnome-mastermind 32 | openyahtzee 33 | ace-of-penguins 34 | pioneers 35 | pouetchess 36 | pychess 37 | pyscrabble 38 | qgo 39 | quarry 40 | kshisen 41 | stroq 42 | tagua 43 | xboard 44 | yahtzeesharp 45 | gnome-games 46 | 47 | -------------------------------------------------------------------------------- /helal-shortener/usr/share/doc/helal-shortener/copyright: -------------------------------------------------------------------------------- 1 | Copyright for M.Hanny Sabbagh 2 | 3 | This program is free software: you can redistribute it and/or modify 4 | it under the terms of the GNU General Public License as published by 5 | the Free Software Foundation, either version 3 of the License, or 6 | (at your option) any later version. 7 | 8 | This program is distributed in the hope that it will be useful, 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | GNU General Public License for more details. 12 | 13 | You should have received a copy of the GNU General Public License 14 | along with this program. If not, see . 15 | 16 | -------------------------------------------------------------------------------- /helal-welcome/usr/share/doc/helal-welcome/copyright: -------------------------------------------------------------------------------- 1 | Copyright for M.Hanny Sabbagh 2 | 3 | This program is free software: you can redistribute it and/or modify 4 | it under the terms of the GNU General Public License as published by 5 | the Free Software Foundation, either version 3 of the License, or 6 | (at your option) any later version. 7 | 8 | This program is distributed in the hope that it will be useful, 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | GNU General Public License for more details. 12 | 13 | You should have received a copy of the GNU General Public License 14 | along with this program. If not, see . 15 | 16 | -------------------------------------------------------------------------------- /helal-website/js/plugins.js: -------------------------------------------------------------------------------- 1 | // Avoid `console` errors in browsers that lack a console. 2 | (function() { 3 | var method; 4 | var noop = function () {}; 5 | var methods = [ 6 | 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 7 | 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', 8 | 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', 9 | 'timeStamp', 'trace', 'warn' 10 | ]; 11 | var length = methods.length; 12 | var console = (window.console = window.console || {}); 13 | 14 | while (length--) { 15 | method = methods[length]; 16 | 17 | // Only stub undefined methods. 18 | if (!console[method]) { 19 | console[method] = noop; 20 | } 21 | } 22 | }()); 23 | 24 | // Place any jQuery/helper plugins in here. 25 | -------------------------------------------------------------------------------- /helal-recorder/usr/share/doc/helal-recorder/COPYING: -------------------------------------------------------------------------------- 1 | Name: Helal Recorder 1.0 2 | Website: http://helallinux.com/ 3 | By: M.Hanny Sabbagh 4 | 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms of the GNU General Public License as published by 8 | the Free Software Foundation; either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | This program is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | You should have received a copy of the GNU General Public License 16 | along with this program; if not, write to the Free Software 17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 18 | MA 02110-1301, USA. 19 | -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/doc/helal-wysiwyg-editor/COPYING: -------------------------------------------------------------------------------- 1 | Name: Helal WYSIWYG Editor 1.0 2 | Website: http://helallinux.com/ 3 | By: M.Hanny Sabbagh 4 | 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms of the GNU General Public License as published by 8 | the Free Software Foundation; either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | This program is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | You should have received a copy of the GNU General Public License 16 | along with this program; if not, write to the Free Software 17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 18 | MA 02110-1301, USA. 19 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/categories/education.list: -------------------------------------------------------------------------------- 1 | anki 2 | bauble 3 | bibletime 4 | blinken 5 | boats 6 | cantor 7 | carmetal 8 | celestia-gnome 9 | childsplay 10 | controlaula 11 | drgeo 12 | edubuntu-desktop-kde 13 | edubuntu-desktop 14 | electric 15 | etoys 16 | freespeak 17 | gns3 18 | denemo 19 | solfege 20 | goldendict 21 | graphmonkey 22 | gvrng 23 | jclic 24 | k3dsurf 25 | kalcul 26 | kalgebra 27 | kanagram 28 | kanatest 29 | kayali 30 | kbruch 31 | kdrill 32 | kgeography 33 | khangman 34 | kig 35 | kiten 36 | klavaro 37 | klettres 38 | kmplot 39 | ktouch 40 | kturtle 41 | kwordquiz 42 | lletters 43 | littlewizard 44 | lybniz 45 | marble 46 | mathwar 47 | xmaxima 48 | mnemosyne 49 | netemul 50 | parley 51 | pauker 52 | planets 53 | ubuntu-edu-preschool 54 | ubuntu-edu-primary 55 | pysycache 56 | qliss3d 57 | qucs 58 | regina-normal 59 | rlplot 60 | score-reading-trainer 61 | ubuntu-edu-secondary 62 | squeak 63 | step 64 | sugar-emulator-0.88 65 | ubuntu-edu-tertiary 66 | tipptrainer 67 | tkgate 68 | tuxpaint 69 | tuxtype 70 | vym 71 | xabacus 72 | xmabacus 73 | gcompris 74 | kdeedu 75 | stellarium 76 | tuxmath 77 | 78 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/AptClient/EventsObject.py: -------------------------------------------------------------------------------- 1 | # EventsObject.py 2 | # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- 3 | 4 | class EventsObject(object): 5 | def __init__(self): 6 | self._events = {} 7 | self._event_id = 0 8 | self._events_map = {} 9 | def connect(self, event, callback, *params): 10 | if not event in self._events: 11 | self._events[event] = {} 12 | self._event_id += 1 13 | self._events[event][self._event_id] = (callback, params, self._event_id) 14 | self._events_map[self._event_id] = event 15 | return self._event_id 16 | def disconnect(self, event_id): 17 | if event_id in self._events_map.keys(): 18 | event = self._events_map[event_id] 19 | if event in self._events.keys() and event_id in self._events[event].keys(): 20 | del self._events[event][event_id] 21 | def _trigger(self, event, *params): 22 | if event in self._events.keys(): 23 | for callback, def_params, event_id in self._events[event].values(): 24 | callback(*((self,) + params + def_params)) 25 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/doc/helal-software-center/copyright: -------------------------------------------------------------------------------- 1 | this program is a fork from mintinstall which is also a fork from ubuntu-software-center. 2 | 3 | modified by: 4 | M.Hanny Sabbagh 5 | Mohamad Mohsen 6 | 7 | License: 8 | 9 | This package is free software; you can redistribute it and/or modify 10 | it under the terms of the GNU General Public License as published by 11 | the Free Software Foundation; either version 2 of the License, or 12 | (at your option) any later version. 13 | 14 | This package is distributed in the hope that it will be useful, 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | GNU General Public License for more details. 18 | 19 | You should have received a copy of the GNU General Public License 20 | along with this package; if not, write to the Free Software 21 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 22 | 23 | On Debian systems, the complete text of the GNU General 24 | Public License can be found in `/usr/share/common-licenses/GPL'. 25 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/widgets/rgb.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2009 Matthew McGowan 2 | # 3 | # Authors: 4 | # Matthew McGowan 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU General Public License as published by 8 | # the Free Software Foundation, either version 3 of the License, or 9 | # (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU General Public License 17 | # along with this program. If not, see . 18 | 19 | 20 | import colorsys 21 | from gtk.gdk import Color 22 | 23 | 24 | def parse_colour_scheme(colour_scheme_str): 25 | scheme_dict = {} 26 | for ln in colour_scheme_str.splitlines(): 27 | k, v = ln.split(':') 28 | scheme_dict[k.strip()] = gtk.gdk.color_parse(v.strip()) 29 | return scheme_dict 30 | 31 | 32 | def shade(color, k): 33 | # as seen in Murrine's cairo-support.c 34 | r = color.red_float 35 | g = color.green_float 36 | b = color.blue_float 37 | 38 | if (k == 1.0): 39 | return color 40 | 41 | h,l,s = colorsys.rgb_to_hls(r,g,b) 42 | 43 | l *= k 44 | if (l > 1.0): 45 | l = 1.0 46 | elif (l < 0.0): 47 | l = 0.0 48 | 49 | s *= k 50 | if (s > 1.0): 51 | s = 1.0 52 | elif (s < 0.0): 53 | s = 0.0 54 | 55 | r, g, b = colorsys.hls_to_rgb(h,l,s) 56 | 57 | return Color(int(r*65535), int(g*65535), int(b*65535)) 58 | 59 | def mix_color(color1, color2, mix_factor): 60 | # as seen in Murrine's cairo-support.c 61 | r = color1.red_float*(1-mix_factor)+color2.red_float*mix_factor 62 | g = color1.green_float*(1-mix_factor)+color2.green_float*mix_factor 63 | b = color1.blue_float*(1-mix_factor)+color2.blue_float*mix_factor 64 | return Color(int(r*65535), int(g*65535), int(b*65535)) 65 | 66 | def to_float(color): 67 | return color.red_float, color.green_float, color.blue_float 68 | -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/helal-wysiwyg-editor/helal-wysiwyg-editor-ar.html: -------------------------------------------------------------------------------- 1 | مرحبًا.
أهلاً بك إلى محرر هلال لينُكس المرئي!
هذا المحرر هو محرر WYSIWYG بسيط مهمته التعديل على صفحات HTML, إن تكن مطور وب فيمكنك استخدامه كمحرر نصوص عادي وجميل, البرنامج يمكنه:
  • إنشاء, حفظ,فتح,تعديل صفحات HTML.
  • إضافة وحذف الروابط.
  • تغيير لون النص.
  • إزالة تنسيق النص.
  • تغيير محاذاة النص.
  • إضافة وإزالة الصور.
  • تغير نوع الخط وحجمه.
  • إضافة قائمة نقطية او عددية للنص.
  • إضافة تأثيرات الخط السميك,المائل,المشخوط تحته أو عليه إلى النص.
يجب عليك أن تعلم أيضًا أن:
  1. هذا البرنامج تم تطويره باستخدام Pywebkit.
  2. هذا البرنامج مرخص تحت رخصة GPL 3 أو مابعدها.
  3. هذا البرنامج تم تطويره بواسطة فريق عمل هلال لينُكس.
يمكنك الآن البدء في استخدام المحرر, لمعرفة مالذي يقوم زرٌ مابفعله فقط ضع مؤشر الفأرة فوق ذاك الزر وسيظهر لك نص توضيحي عن عمله, لاتنسى زيارتنا على: http://helallinux.com

2 | -------------------------------------------------------------------------------- /helal-wysiwyg-editor/usr/share/helal-wysiwyg-editor/helal-wysiwyg-editor.html: -------------------------------------------------------------------------------- 1 | Hello.
Welcome to Helal Linux WYSIWYG editor!
This editor is a small WYSIWYG editor which will help you to create HTML documents easily, Helal WYSIWYG editor can this:
  • Create,open,save,edit html pages.
  • Insert and remove links.
  • Change text color.
  • Clear text style.
  • Change text aligenment.
  • Insert and remove images.
  • Change text background.
  • Change fontsize and fonttype.
  • Add UnorderedList or OrderedList to the page.
  • Add bold,italic,underline,strikethrough to a text.
You also should know that:
  1. This program was developed using pywebkit.
  2. This program is released under GPL 3 or later.
  3. This program is developed by Helal Linux team.
You can start now using Helal WYSIWYG editor, you can understand what a button do in the toolbar by hovering the mouse over it, please visit: http://helallinux.com

2 | -------------------------------------------------------------------------------- /helal-website/css/main.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* ========================================================================== 4 | Author's custom styles 5 | ========================================================================== */ 6 | 7 | * {direction: rtl; 8 | } 9 | 10 | #image { 11 | 12 | border-radius:25px; 13 | float: left; 14 | width: 777px; 15 | display: inline; 16 | text-align: right; 17 | } 18 | 19 | h1 { 20 | color: #373573; 21 | font-size: 40px; 22 | text-shadow: 2px 2px #eee; 23 | } 24 | h2 { 25 | color: #6ad1f3; 26 | text-shadow: 2px 2px #eee; 27 | } 28 | .hero-unit h1 { 29 | color: #6ad1f3; 30 | font-size: 60px; 31 | } 32 | 33 | body { 34 | background-image:url('http://www.ubuntu.com/static/u/img/patterns/background-dots-small.png'); 35 | background-repeat:repeat-y repeat-x; 36 | } 37 | 38 | .brand{ 39 | font-size:20px; 40 | 41 | } 42 | 43 | 44 | 45 | .hero-unit { 46 | background-image:url('http://www.ubuntu.com/static/u/img/patterns/background-dots-small.png'); 47 | background-repeat:repeat-y repeat-x; 48 | border:5px #6ad1f3; 49 | border-style:dashed; 50 | border-radius:25px; 51 | 52 | } 53 | 54 | 55 | 56 | 57 | .span { 58 | 59 | width: 250px; 60 | padding-right: 100px; 61 | border:4px dashed #0079cc; 62 | border-radius:25px; 63 | } 64 | .raw { 65 | 66 | width: 250px; 67 | padding-right: 100px; 68 | border:4px dashed #0079cc; 69 | border-radius:25px; 70 | } 71 | 72 | .span4 p h2 { 73 | 74 | margin:20px; 75 | text-align: right; 76 | } 77 | 78 | .span4 img { 79 | 80 | display: inline; 81 | margin-left: 10px; 82 | float: right; 83 | text-align: right; 84 | } 85 | .download{ 86 | padding-right: 30px; 87 | padding-left: 30px; 88 | padding-top: 30px; 89 | padding-bottom: 30px; 90 | margin-top: 50px; 91 | margin-left: 50px; 92 | margin-bottom: 50px; 93 | margin-right: 250px; 94 | background-color: #fff; 95 | width: 800px; 96 | border-radius:25px; 97 | 98 | } 99 | 100 | .download img{ 101 | text-align: left; 102 | float: left; 103 | border-radius:30px; 104 | } 105 | .sidebar { 106 | float: right; 107 | background-color: #fff; 108 | border-radius:25px; 109 | width: 225px; 110 | height: 600px; 111 | } 112 | 113 | .screenshots{ 114 | padding-right: 30px; 115 | padding-left: 30px; 116 | padding-top: 30px; 117 | padding-bottom: 30px; 118 | margin-top: 50px; 119 | margin-left: 50px; 120 | margin-bottom: 50px; 121 | margin-right: 250px; 122 | background-color: #fff; 123 | width: 840px; 124 | 125 | border-radius:25px; 126 | 127 | } 128 | 129 | 130 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/Classes.py: -------------------------------------------------------------------------------- 1 | class Model: 2 | portals = [] 3 | selected_category = None 4 | selected_application = None 5 | keyword = "" 6 | packages_to_install = [] 7 | packages_to_remove = [] 8 | filter_applications = "all" 9 | 10 | def __init__(self): 11 | portals = [] 12 | selected_category = None 13 | selected_application = None 14 | keyword = "" 15 | packages_to_install = [] 16 | packages_to_remove = [] 17 | filter_applications = "all" 18 | 19 | class Portal: 20 | key = "" 21 | name = "" 22 | link = "" 23 | release = "" 24 | release_name = "" 25 | update_url = "" 26 | categories = [] 27 | items = [] 28 | 29 | def __init__(self, key, name="", link="", release="", release_name="", update_url=""): 30 | self.key = key 31 | self.name = name 32 | self.link = link 33 | self.release = release 34 | self.release_name = release_name 35 | self.update_url = update_url 36 | self.categories = [] 37 | self.items = [] 38 | 39 | def find_category(self, key): 40 | for category in self.categories: 41 | if category.key == key: 42 | return category 43 | return None 44 | 45 | def find_item(self, key): 46 | for item in self.items: 47 | if item.key == key: 48 | return item 49 | return None 50 | 51 | class Category: 52 | key = "" 53 | portal = None 54 | name = "" 55 | description = "" 56 | vieworder = 0 57 | parent = None 58 | subcategories = [] 59 | items = [] 60 | logo = None 61 | 62 | def __init__(self, portal, key, name="", description="", vieworder=0, parent=None, logo=None): 63 | self.key = key 64 | self.name = name 65 | self.description = description 66 | self.vieworder = vieworder 67 | self.parent = parent 68 | self.portal = portal 69 | self.subcategories = [] 70 | self.items = [] 71 | self.logo = logo 72 | 73 | def add_subcategory(self, category): 74 | self.subcategories.append(category) 75 | category.parent = self 76 | 77 | def add_item(self, item): 78 | self.items.append(item) 79 | item.category = self 80 | 81 | class Item: 82 | key="" 83 | portal=None 84 | link="" 85 | mint_file="" 86 | category="" 87 | name="" 88 | description="" 89 | long_description="" 90 | added="" 91 | views="" 92 | license="" 93 | size="" 94 | website="" 95 | repository="" 96 | screenshot=None 97 | screenshot_url=None 98 | packages = [] 99 | repositories = [] 100 | is_special = True 101 | status = "installed" 102 | version = "" 103 | 104 | def __init__(self, portal, key, link="", mint_file="", category="", name="", description="", long_description="", added="", views="", license="", size="", website="", repository="", average_rating=""): 105 | self.portal=portal 106 | self.key=key 107 | self.link=link 108 | self.category=category 109 | self.name=name 110 | self.description=description 111 | self.long_description=long_description 112 | self.added=added 113 | self.views=views 114 | self.license=license 115 | self.size=size 116 | self.website=website 117 | self.repository=repository 118 | self.screenshot=None 119 | self.screenshot_url=None 120 | self.packages = [] 121 | self.repositories = [] 122 | self.is_special = True 123 | self.status = "installed" 124 | self.version = "" 125 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/templates/CategoriesView.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 42 | 104 | 105 | 106 | 107 |
108 |

test

12حزمة
109 | 110 |
111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/data/templates/listView.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 43 | 113 | 114 | 115 | 116 | 117 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /helal-shortener/usr/bin/helal-shortener: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd /home/$USER/ 4 | 5 | GTKDIALOG=gtkdialog 6 | 7 | if [[ "$LANG" == *ar* ]];then 8 | export MAIN_DIALOG=' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 48 17 | 18 | 19 | 20 | 21 | 22 | url 23 | http://google.com 24 | 25 | 30 | 31 | 32 | 33 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | ' 47 | export TEXT=' 48 | 49 | 50 | 51 | 52 | EDITOR 53 | 150 54 | 350 55 | /tmp/.file 56 | 57 | 58 | 59 | 60 | ' 61 | export ABOUT=' 62 | 63 | 64 | 65 | 66 | 96 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | ' 77 | gtkdialog -p MAIN_DIALOG --center 78 | 79 | else 80 | 81 | export MAIN_DIALOG=' 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 48 90 | 91 | 92 | 93 | 94 | 95 | url 96 | http://helallinux.com 97 | 98 | 103 | 104 | 105 | 106 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | ' 120 | export TEXT=' 121 | 122 | 123 | 124 | 125 | EDITOR 126 | 150 127 | 350 128 | /tmp/.file 129 | 130 | 131 | 132 | 133 | ' 134 | export ABOUT=' 135 | 136 | 137 | 138 | 139 | 96 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | ' 150 | gtkdialog -p MAIN_DIALOG --center 151 | 152 | fi 153 | -------------------------------------------------------------------------------- /helal-recorder/usr/bin/helal-recorder-ar: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | # Helal Recorder. 5 | # M.Hanny Sabbagh - 19/5/2013 . 6 | 7 | 8 | import gtk, webkit, os, subprocess 9 | 10 | class HelalRecorder(gtk.Window): 11 | def __init__(self): 12 | gtk.Window.__init__(self) 13 | self.set_title("مسجل هلال") 14 | self.connect("destroy", gtk.main_quit) 15 | self.set_position(gtk.WIN_POS_CENTER) 16 | self.set_opacity(0.5) 17 | self.resize(400, 25) 18 | self.filename = None 19 | self.set_icon_from_file('/usr/share/pixmaps/helal-recorder.svg') 20 | 21 | scroll = gtk.ScrolledWindow() 22 | scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) 23 | 24 | self.ui = self.generate_ui() 25 | self.toolbar1 = self.ui.get_widget("/toolbar_main") 26 | 27 | self.layout = gtk.VBox() 28 | self.layout.pack_start(self.toolbar1, False) 29 | self.add(self.layout) 30 | 31 | def generate_ui(self): 32 | ui_def = """ 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | """ 46 | 47 | actions = gtk.ActionGroup("Actions") 48 | actions.add_actions([ 49 | 50 | ("record", gtk.STOCK_MEDIA_RECORD, "_تسجيل", None, "تسجيل", self.on_record), 51 | ("stop", gtk.STOCK_MEDIA_STOP, "_إيقاف", None, "إيقاف", self.on_stop), 52 | ("play", gtk.STOCK_MEDIA_PLAY, "_تشغيل", None, "تشغيل", self.on_play), 53 | ("home", gtk.STOCK_HOME, "_الموقع", None, "خروج", self.on_home), 54 | ("about", gtk.STOCK_ABOUT, "_اخرج", None, "خروج", self.on_about), 55 | ("quit", gtk.STOCK_CLOSE, "_اخرج", None, "خروج", self.on_quit), 56 | 57 | ]) 58 | 59 | ui = gtk.UIManager() 60 | ui.insert_action_group(actions) 61 | ui.add_ui_from_string(ui_def) 62 | return ui 63 | 64 | def on_about(self, action): 65 | about = gtk.AboutDialog() 66 | about.set_opacity(0.5) 67 | about.set_program_name("مسجل هلال") 68 | about.set_version("1.0.3") 69 | about.set_license('''This program is free software; you can redistribute it and/or modify it 70 | under the terms of the GNU General Public License as published by 71 | the Free Software Foundation; either version 3 of the License, or 72 | (at your option) any later version. 73 | 74 | This program is distributed in the hope that it will be useful, 75 | but WITHOUT ANY WARRANTY; without even the implied warranty of 76 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 77 | GNU General Public License for more details. 78 | You should have received a copy of the GNU General Public License 79 | along with this program; if not, write to the Free Software 80 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 81 | MA 02110-1301, USA. ''') 82 | about.set_authors([" محمد هاني صباغ "]) 83 | about.set_comments(("مسجل هلال يمكنه التسجيل بالصيغ التالية: mkv,flv,avi,nut, عند التسجيل اكتب اسم الملف مثلًا: test.mkv")) 84 | about.set_website("http://helallinux.com/") 85 | about.set_logo(gtk.gdk.pixbuf_new_from_file("/usr/share/pixmaps/helal-recorder.svg")) 86 | about.set_icon_from_file('/usr/share/pixmaps/helal-recorder.svg') 87 | about.run() 88 | about.destroy() 89 | 90 | def on_home(self, action): 91 | os.system('sensible-browser http://helallinux.com') 92 | 93 | 94 | def on_paste(self, action): 95 | self.editor.paste_clipboard() 96 | 97 | def on_quit(self, action): 98 | self.window.destroy() 99 | 100 | def on_record(self, action): 101 | dialog = gtk.Dialog("أدخل اسم الملف:", self, 0, 102 | (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK)) 103 | 104 | entry = gtk.Entry() 105 | dialog.vbox.pack_start(entry) 106 | dialog.show_all() 107 | 108 | if dialog.run() == gtk.RESPONSE_OK: 109 | os.system('export vblank_mode=0') 110 | os.system( 111 | "avconv -f x11grab -video_size `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -framerate 160 -i :0.0 -threads 2 -q 1 -bt 8000000 -b 8500000 /home/$USER/helal-recorder/'%s' &" % entry.get_text()) 112 | os.environ["filename"] = entry.get_text() 113 | dialog.destroy() 114 | 115 | def on_stop(self, action): 116 | os.system('killall avconv') 117 | 118 | def on_play(self, action): 119 | os.system("mplayer /home/$USER/helal-recorder/$filename") 120 | 121 | 122 | e = HelalRecorder() 123 | e.show_all() 124 | gtk.main() 125 | -------------------------------------------------------------------------------- /helal-recorder/usr/bin/helal-recorder-en: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | # Helal Recorder. 5 | # M.Hanny Sabbagh - 13/5/2013 . 6 | 7 | 8 | import gtk, webkit, os, subprocess 9 | 10 | class HelalRecorder(gtk.Window): 11 | def __init__(self): 12 | gtk.Window.__init__(self) 13 | self.set_title("Helal Recorder") 14 | self.connect("destroy", gtk.main_quit) 15 | self.set_position(gtk.WIN_POS_CENTER) 16 | self.set_opacity(0.5) 17 | self.resize(400, 25) 18 | self.filename = None 19 | self.set_icon_from_file('/usr/share/pixmaps/helal-recorder.svg') 20 | 21 | scroll = gtk.ScrolledWindow() 22 | scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) 23 | 24 | self.ui = self.generate_ui() 25 | self.toolbar1 = self.ui.get_widget("/toolbar_main") 26 | 27 | self.layout = gtk.VBox() 28 | self.layout.pack_start(self.toolbar1, False) 29 | self.add(self.layout) 30 | 31 | def generate_ui(self): 32 | ui_def = """ 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | """ 50 | 51 | actions = gtk.ActionGroup("Actions") 52 | actions.add_actions([ 53 | 54 | ("record", gtk.STOCK_MEDIA_RECORD, "_Record", None, "Record", self.on_record), 55 | ("stop", gtk.STOCK_MEDIA_STOP, "_Stop", None, "Stop", self.on_stop), 56 | ("play", gtk.STOCK_MEDIA_PLAY, "_Play", None, "Play", self.on_play), 57 | ("home", gtk.STOCK_HOME, "_Website", None, "Website", self.on_home), 58 | ("about", gtk.STOCK_ABOUT, "_About", None, "About", self.on_about), 59 | ("quit", gtk.STOCK_CLOSE, "_Exit", None, "Exit", self.on_quit), 60 | 61 | ]) 62 | 63 | ui = gtk.UIManager() 64 | ui.insert_action_group(actions) 65 | ui.add_ui_from_string(ui_def) 66 | return ui 67 | 68 | def on_about(self, action): 69 | about = gtk.AboutDialog() 70 | about.set_opacity(0.5) 71 | about.set_program_name("Helal Recorder") 72 | about.set_version("1.0.3") 73 | about.set_license('''This program is free software; you can redistribute it and/or modify it 74 | under the terms of the GNU General Public License as published by 75 | the Free Software Foundation; either version 3 of the License, or 76 | (at your option) any later version. 77 | 78 | This program is distributed in the hope that it will be useful, 79 | but WITHOUT ANY WARRANTY; without even the implied warranty of 80 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 81 | GNU General Public License for more details. 82 | You should have received a copy of the GNU General Public License 83 | along with this program; if not, write to the Free Software 84 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 85 | MA 02110-1301, USA. ''') 86 | about.set_authors([" M.Hanny Sabbagh "]) 87 | about.set_comments(("Helal Recorder is a GUI recorder for HelalLinux,it can record videos in following formats: flv,avi,nut,mkv ,when you write the filename write it like this: test.mkv")) 88 | about.set_website("http://helallinux.com/") 89 | about.set_logo(gtk.gdk.pixbuf_new_from_file("/usr/share/pixmaps/helal-recorder.svg")) 90 | about.set_icon_from_file('/usr/share/pixmaps/helal-recorder.svg') 91 | about.run() 92 | about.destroy() 93 | 94 | def on_home(self, action): 95 | os.system('sensible-browser http://helallinux.com') 96 | 97 | 98 | def on_paste(self, action): 99 | self.editor.paste_clipboard() 100 | 101 | def on_quit(self, action): 102 | self.window.destroy() 103 | 104 | def on_record(self, action): 105 | dialog = gtk.Dialog("Enter filename:", self, 0, 106 | (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK)) 107 | 108 | entry = gtk.Entry() 109 | dialog.vbox.pack_start(entry) 110 | dialog.show_all() 111 | 112 | if dialog.run() == gtk.RESPONSE_OK: 113 | os.system('export vblank_mode=0') 114 | os.system( 115 | "avconv -f x11grab -video_size `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -framerate 160 -i :0.0 -threads 2 -q 1 -bt 8000000 -b 8500000 /home/$USER/helal-recorder/'%s' &" % entry.get_text()) 116 | os.environ["filename"] = entry.get_text() 117 | dialog.destroy() 118 | 119 | def on_stop(self, action): 120 | os.system('killall avconv') 121 | 122 | def on_play(self, action): 123 | os.system("mplayer /home/$USER/helal-recorder/$filename") 124 | 125 | 126 | e = HelalRecorder() 127 | e.show_all() 128 | gtk.main() 129 | -------------------------------------------------------------------------------- /helal-website/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Page Not Found :( 6 | 141 | 142 | 143 |
144 |

Not found :(

145 |

Sorry, but the page you were trying to view does not exist.

146 |

It looks like this was the result of either:

147 |
    148 |
  • a mistyped address
  • 149 |
  • an out-of-date link
  • 150 |
151 | 154 | 155 |
156 | 157 | 158 | -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 56 | 57 | 65 | 69 | 74 | 75 | 81 | 84 | 88 | 89 | 96 | 100 | 104 | 108 | 109 | 117 | 118 | 121 | 126 | 131 | 136 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /helal-menu/usr/share/icons/hicolor/scalable/categories/helal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 24 | 28 | 32 | 33 | 36 | 40 | 44 | 45 | 55 | 63 | 67 | 68 | 72 | 76 | 77 | 88 | 89 | 111 | 113 | 114 | 116 | image/svg+xml 117 | 119 | 120 | 121 | 122 | 123 | 128 | 136 | 142 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/nvidia.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 59 | 63 | 68 | 69 | 76 | 80 | 84 | 88 | 89 | 97 | 98 | 101 | 106 | 111 | 116 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /helal-backgrounds/usr/share/gnome-background-properties/helal-wallpapers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Helal-1 7 | /usr/share/backgrounds/bg-2.png 8 | zoom 9 | #2c001e 10 | #2c001e 11 | solid 12 | 13 | 14 | Helal-2 15 | /usr/share/backgrounds/bg-6.png 16 | zoom 17 | #2c001e 18 | #2c001e 19 | solid 20 | 21 | 22 | 23 | Helal-3 24 | /usr/share/backgrounds/bg-7.jpg 25 | zoom 26 | #2c001e 27 | #2c001e 28 | solid 29 | 30 | 31 | 32 | Helal-4 33 | /usr/share/backgrounds/bg-8.jpg 34 | zoom 35 | #2c001e 36 | #2c001e 37 | solid 38 | 39 | 40 | Helal-5 41 | /usr/share/backgrounds/bg-9.jpg 42 | zoom 43 | #2c001e 44 | #2c001e 45 | solid 46 | 47 | 48 | Helal-6 49 | /usr/share/backgrounds/bg-10.jpg 50 | zoom 51 | #2c001e 52 | #2c001e 53 | solid 54 | 55 | 56 | 57 | Helal-7 58 | /usr/share/backgrounds/bg-11.jpg 59 | zoom 60 | #2c001e 61 | #2c001e 62 | solid 63 | 64 | 65 | 66 | Helal-8 67 | /usr/share/backgrounds/bg-12.jpg 68 | zoom 69 | #2c001e 70 | #2c001e 71 | solid 72 | 73 | 74 | 75 | Helal-9 76 | /usr/share/backgrounds/bg-13.jpg 77 | zoom 78 | #2c001e 79 | #2c001e 80 | solid 81 | 82 | 83 | 84 | Helal-10 85 | /usr/share/backgrounds/bg-14.jpg 86 | zoom 87 | #2c001e 88 | #2c001e 89 | solid 90 | 91 | 92 | 93 | Helal-11 94 | /usr/share/backgrounds/bg-15.jpg 95 | zoom 96 | #2c001e 97 | #2c001e 98 | solid 99 | 100 | 101 | 102 | Helal-12 103 | /usr/share/backgrounds/bg-16.jpg 104 | zoom 105 | #2c001e 106 | #2c001e 107 | solid 108 | 109 | 110 | 111 | Helal-13 112 | /usr/share/backgrounds/bg-19.jpg 113 | zoom 114 | #2c001e 115 | #2c001e 116 | solid 117 | 118 | 119 | 120 | Helal-14 121 | /usr/share/backgrounds/bg-20.jpg 122 | zoom 123 | #2c001e 124 | #2c001e 125 | solid 126 | 127 | 128 | 129 | Helal-15 130 | /usr/share/backgrounds/bg-21.jpg 131 | zoom 132 | #2c001e 133 | #2c001e 134 | solid 135 | 136 | 137 | 138 | Helal-16 139 | /usr/share/backgrounds/hd-1.jpg 140 | zoom 141 | #2c001e 142 | #2c001e 143 | solid 144 | 145 | 146 | 147 | Helal-17 148 | /usr/share/backgrounds/hd2.jpg 149 | zoom 150 | #2c001e 151 | #2c001e 152 | solid 153 | 154 | 155 | 156 | Helal-18 157 | /usr/share/backgrounds/hd4.jpg 158 | zoom 159 | #2c001e 160 | #2c001e 161 | solid 162 | 163 | 164 | 165 | Helal-19 166 | /usr/share/backgrounds/hd-3.jpg 167 | zoom 168 | #2c001e 169 | #2c001e 170 | solid 171 | 172 | 173 | 174 | Helal-20 175 | /usr/share/backgrounds/helal2.jpg 176 | zoom 177 | #2c001e 178 | #2c001e 179 | solid 180 | 181 | 182 | 183 | Helal-21 184 | /usr/share/backgrounds/helal4.jpg 185 | zoom 186 | #2c001e 187 | #2c001e 188 | solid 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | -------------------------------------------------------------------------------- /helal-website/download.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | تحميل هلال 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 58 | 59 |
60 | 61 | 62 | 63 |

تحميل هلال لينُكس

64 | 65 | 74 |
75 | 76 |

تحميل هلال لينُكس 3.0 النهائية

77 |

لتحميل هلال لينُكس 3.0 اضغط على الرابط التالي: تحميل

78 | 79 |

أو يمكنك تحميل هلال لينُكس 3.0 عبر رابط التورنت التالي: تورنت

80 |

اسم الملف : helalinux3-0.iso

81 |

MD5 (البصمة الفريدة) : 02f8d64040646f3a7c2aa3272982e65e 82 |


83 |

تحميل هلال لينُكس 1.0 الخفيفة

84 | 85 |

لتحميل هلال لينُكس 1.0 الخفيفة اضغط على الرابط التالي: تحميل

86 |

اسم الملف : HLL1.0.iso

87 |

MD5 (البصمة الفريدة) : 74474b3aceca3c203264b9ae16141345 88 |


89 |
90 |
91 | 92 |
93 |

© هلال لينُكس 2013

94 |
95 | 96 |
97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/icons/categories/icon-islam.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 23 | 27 | 31 | 32 | 39 | 50 | 51 | 69 | 71 | 72 | 74 | image/svg+xml 75 | 77 | 78 | 79 | 80 | 81 | 86 | 96 | 104 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /helal-software-center/usr/lib/sc/widgets/searchentry.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | # 3 | # SearchEntry - An enhanced search entry with alternating background colouring 4 | # and timeout support 5 | # 6 | # Copyright (C) 2007 Sebastian Heinlein 7 | # 2007-2009 Canonical Ltd. 8 | # 9 | # Authors: 10 | # Sebastian Heinlein 11 | # 12 | # This program is free software; you can redistribute it and/or modify it under 13 | # the terms of the GNU General Public License as published by the Free Software 14 | # Foundation; version 3. 15 | # 16 | # This program is distributed in the hope that it will be useful, but WITHOUT 17 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 18 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 19 | # details. 20 | # 21 | # You should have received a copy of the GNU General Public License along with 22 | # this program; if not, write to the Free Software Foundation, Inc., 59 Temple 23 | # Place, Suite 330, Boston, MA 02111-1307 USA 24 | 25 | import sexy 26 | import gtk 27 | import gobject 28 | 29 | class SearchEntry(sexy.IconEntry): 30 | 31 | # FIMXE: we need "can-undo", "can-redo" signals 32 | __gsignals__ = {'terms-changed':(gobject.SIGNAL_RUN_FIRST, 33 | gobject.TYPE_NONE, 34 | (gobject.TYPE_STRING,))} 35 | 36 | SEARCH_TIMEOUT = 1000 37 | 38 | def __init__(self, icon_theme=None): 39 | """ 40 | Creates an enhanced IconEntry that supports a time out when typing 41 | and uses a different background colour when the search is active 42 | """ 43 | sexy.IconEntry.__init__(self) 44 | if not icon_theme: 45 | icon_theme = gtk.icon_theme_get_default() 46 | self._handler_changed = self.connect_after("changed", 47 | self._on_changed) 48 | self.connect("icon-pressed", self._on_icon_pressed) 49 | image_find = gtk.image_new_from_stock(gtk.STOCK_FIND, 50 | gtk.ICON_SIZE_MENU) 51 | self.set_icon(sexy.ICON_ENTRY_PRIMARY, image_find) 52 | 53 | self.empty_image = gtk.Image() 54 | self.clear_image = gtk.image_new_from_stock(gtk.STOCK_CLEAR, 55 | gtk.ICON_SIZE_MENU) 56 | self.set_icon(sexy.ICON_ENTRY_SECONDARY, self.clear_image) 57 | self.set_icon_highlight(sexy.ICON_ENTRY_PRIMARY, True) 58 | 59 | # Do not draw a yellow bg if an a11y theme is used 60 | settings = gtk.settings_get_default() 61 | theme = settings.get_property("gtk-theme-name") 62 | self._a11y = (theme.startswith("HighContrast") or 63 | theme.startswith("LowContrast")) 64 | # data 65 | self._timeout_id = 0 66 | self._undo_stack = [""] 67 | self._redo_stack = [] 68 | 69 | def _on_icon_pressed(self, widget, icon, mouse_button): 70 | """ 71 | Emit the terms-changed signal without any time out when the clear 72 | button was clicked 73 | """ 74 | if icon == sexy.ICON_ENTRY_SECONDARY: 75 | # clear with no signal and emit manually to avoid the 76 | # search-timeout 77 | self.clear_with_no_signal() 78 | self.grab_focus() 79 | self.emit("terms-changed", "") 80 | elif icon == sexy.ICON_ENTRY_PRIMARY: 81 | self.select_region(0, -1) 82 | self.grab_focus() 83 | 84 | def undo(self): 85 | if len(self._undo_stack) <= 1: 86 | return 87 | # pop top element and push on redo stack 88 | text = self._undo_stack.pop() 89 | self._redo_stack.append(text) 90 | # the next element is the one we want to display 91 | text = self._undo_stack.pop() 92 | self.set_text(text) 93 | self.set_position(-1) 94 | 95 | def redo(self): 96 | if not self._redo_stack: 97 | return 98 | # just reply the redo stack 99 | text = self._redo_stack.pop() 100 | self.set_text(text) 101 | self.set_position(-1) 102 | 103 | def clear(self): 104 | self.set_text("") 105 | self._check_style() 106 | 107 | def clear_with_no_signal(self): 108 | """Clear and do not send a term-changed signal""" 109 | self.handler_block(self._handler_changed) 110 | self.clear() 111 | self.handler_unblock(self._handler_changed) 112 | 113 | def _emit_terms_changed(self): 114 | text = self.get_text() 115 | # add to the undo stack once a term changes 116 | self._undo_stack.append(text) 117 | self.emit("terms-changed", text) 118 | 119 | def _on_changed(self, widget): 120 | """ 121 | Call the actual search method after a small timeout to allow the user 122 | to enter a longer search term 123 | """ 124 | self._check_style() 125 | if self._timeout_id > 0: 126 | gobject.source_remove(self._timeout_id) 127 | self._timeout_id = gobject.timeout_add(self.SEARCH_TIMEOUT, 128 | self._emit_terms_changed) 129 | 130 | def _check_style(self): 131 | """ 132 | Use a different background colour if a search is active 133 | """ 134 | # show/hide icon 135 | if self.get_text() != "": 136 | self.set_icon(sexy.ICON_ENTRY_SECONDARY, self.clear_image) 137 | else: 138 | self.set_icon(sexy.ICON_ENTRY_SECONDARY, self.empty_image) 139 | # Based on the Rhythmbox code 140 | yellowish = gtk.gdk.Color(63479, 63479, 48830) 141 | if self._a11y == True: 142 | return 143 | if self.get_text() == "": 144 | self.modify_base(gtk.STATE_NORMAL, None) 145 | else: 146 | self.modify_base(gtk.STATE_NORMAL, yellowish) 147 | 148 | def on_entry_changed(self, terms): 149 | print terms 150 | 151 | if __name__ == "__main__": 152 | 153 | icons = gtk.icon_theme_get_default() 154 | entry = SearchEntry(icons) 155 | entry.connect("terms-changed", on_entry_changed) 156 | 157 | win = gtk.Window() 158 | win.add(entry) 159 | win.set_size_request(400,400) 160 | win.show_all() 161 | 162 | gtk.main() 163 | 164 | -------------------------------------------------------------------------------- /helal-control-center/frontend/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 |
17 |
18 |
19 | 20 |

{string_1}

21 |

{string_2}

22 |
23 |
24 |
25 |

{string_3}

26 |

{string_4}{os}

27 |

{string_5}{processor}

28 |

{string_6}{arc}

29 |

{string_7}{mem}

30 |

{string_8}

31 |

{string_9}{gfx}

32 |

{string_10}{audio}

33 |

{string_11}{eth}

34 |

{string_12}

35 |

{string_13}{host}

36 |

{string_14}{kernel}

37 |

{string_15}{desk}

38 |
39 | 40 | 41 | 42 |
43 |
44 |
45 |
46 |
47 | 48 |

{string_16}

49 |

{string_17}

50 | 51 |
52 |
53 |
54 | {packs_list} 55 |

56 |
57 |
58 |
{string_28}
59 |
60 |

{string_29} ...

61 |
62 | skype 63 | teamviewer 64 | virtualbox 65 | google earth 66 |
67 | 68 |
69 |
70 |
71 | 72 |
73 |
74 |
75 |
76 | 77 |

{string_18}

78 |

{string_19}

79 | 80 |
81 |
82 |
83 | {desktop_list} 84 |

85 |
86 |
{string_30}
87 |

{string_31}

88 |

89 | 90 | {string_32} 91 |

92 |
93 |
94 |
95 |
{string_35}
96 |

{string_36}

97 |
98 | KDEKDE 99 | GNOMEGNOME 100 | xfcexfce 101 | Compizcompix 102 | LXDELXDE 103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 | 112 |

{string_20}

113 |

{string_21}

114 | 115 |
116 |
117 |
118 | {system_list} 119 |
120 |
121 |
122 |
123 |
124 | 125 |

{string_22}

126 |

{string_23}

127 | 128 |
129 |
130 |
131 | {hardware_list} 132 |
133 |
134 |
135 |
136 |
137 | 138 |

{string_24}

139 |

{string_25}

140 |
141 |
142 |
143 | {other_list} 144 |
145 |
146 | 147 |
148 |
149 |
150 | 174 |
175 | 178 | 179 | 180 | -------------------------------------------------------------------------------- /helal-website/screenshots.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | لقطات هلال لينُكس 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 58 | 59 |
60 | 61 | 62 | 63 |

لقطات لهلال لينُكس

64 | 65 | 74 | 75 | 76 | 77 | 78 |
79 |

هلال لينُكس 3.0

80 | Slider Image 1 82 | 83 | Slider Image 2 85 | Slider Image 2 87 | 88 | Slider Image 2 90 | 91 |

هلال لينُكس 1.0 الخفيفة

92 | Slider Image 1 94 | 95 | Slider Image 2 97 | Slider Image 2 99 | Slider Image 2 101 | 102 |
103 | 104 | 105 |
106 |

© هلال لينُكس 2013

107 |
108 | 109 |
110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /helal-control-center/frontend/css/all.css: -------------------------------------------------------------------------------- 1 | header, footer, article, section, hgroup, nav, figure, aside {display: block;} 2 | figure { 3 | margin:0; 4 | padding:0; 5 | } 6 | html {height:100%; overflow-x :hidden;} 7 | body { 8 | margin:0; 9 | font:12px/15px "Ubuntu", sans-serif; 10 | color:#8a8a8a; 11 | min-width:1000px; 12 | background:#fff; 13 | height:100%; 14 | } 15 | img {border-style:none;} 16 | a { 17 | color:#8a8a8a; 18 | text-decoration:underline; 19 | } 20 | a:hover {text-decoration:none;} 21 | input, 22 | textarea, 23 | select { 24 | font:100% sans-serif; 25 | vertical-align:middle; 26 | color:#8a8a8a; 27 | } 28 | form,fieldset{ 29 | margin:0; 30 | padding:0; 31 | border:none; 32 | } 33 | #wrapper { 34 | position:relative; 35 | min-height:100%; 36 | overflow:hidden; 37 | } 38 | #content { 39 | float:left; 40 | width:100%; 41 | } 42 | #contents { 43 | height: 450px; 44 | margin-left: 25px; 45 | margin-top: 10px; 46 | overflow-y: auto; 47 | width: 595px; 48 | } 49 | 50 | #ty { 51 | color: #000000; 52 | font-size: 14px; 53 | -webkit-user-select: text; 54 | cursor:text; 55 | } 56 | .c1 { 57 | margin:0 0 0 152px; 58 | position: absolute; 59 | width:100%; 60 | } 61 | 62 | #sidebar { 63 | float: left; 64 | padding: 18px 1px 0; 65 | width: 150px; 66 | background: url("../images/bg-wrapper.png") repeat-y scroll left center transparent; 67 | min-height: 522px; 68 | } 69 | #solgan { 70 | float: left; 71 | margin-left: -15px; 72 | padding-right: 10px; 73 | position: relative; 74 | } 75 | #launcher { 76 | border-color: #FFFFFF; 77 | border-radius: 10px 10px 10px 10px; 78 | border-style: solid; 79 | border-width: 2px; 80 | display: inline-block; 81 | padding-bottom: 5px; 82 | padding-right: 220px; 83 | padding-top: 5px; 84 | position: relative; 85 | cursor:pointer; 86 | transition: all .50s ease-in-out; 87 | -webkit-transition: all .50s ease-in-out; 88 | } 89 | 90 | #launcher:hover { 91 | border-radius: 10px; 92 | border-style: solid; 93 | border-width: 2.5px; 94 | border-color: rgba(23, 51, 78, 0.15) rgba(23, 51, 78, 0.17) rgba(23, 51, 78, 0.2); 95 | background-color: rgba(3, 14, 27, 0.03); 96 | } 97 | #launcher:active { 98 | border-color: #71AECD; 99 | background-color: #D1EFFF ; 100 | } 101 | #launcher h3 { 102 | float: right; 103 | margin-top: -46px; 104 | margin-left: 55px; 105 | position: absolute; 106 | color: #000000; 107 | display: block; 108 | } 109 | #launcher span { 110 | margin-left: 55px; 111 | margin-top: -30px; 112 | position: absolute; 113 | } 114 | #launcher img { 115 | opacity: 1; 116 | height: 48px; 117 | width: 48px; 118 | } 119 | #launcher:hover img { 120 | opacity: 0.8; 121 | } 122 | #sidebar .shadow { 123 | background:url(../images/bg-shadow.png) no-repeat; 124 | width:5px; 125 | height:9999px; 126 | overflow:hidden; 127 | text-indent:-9999px; 128 | position:absolute; 129 | left:72px; 130 | top:0; 131 | } 132 | .tabs {border-top:1px solid #fff;} 133 | .tabs .text-section { 134 | background:#f9f9f9; 135 | padding:19px 0 8px 36px; 136 | margin:0 0 1px; 137 | } 138 | .tabs h1 { 139 | font-size:18px; 140 | line-height:20px; 141 | margin:0 0 8px; 142 | color:#2b333b; 143 | } 144 | .tabs p {margin:0 0 10px;} 145 | .logo { 146 | background:url(../images/hcc_logo.png) no-repeat ; 147 | width:64px; 148 | height:64px; 149 | display:block; 150 | margin:0 auto 10px; 151 | position:relative; 152 | left:1px; 153 | 154 | } 155 | .logo a { 156 | display:block; 157 | height:100%; 158 | } 159 | 160 | .buttons { 161 | list-style:none; 162 | margin:0; 163 | padding:0; 164 | position:relative; 165 | z-index:2; 166 | font:bold 11px/13px Ubuntu, sans-serif; 167 | 168 | } 169 | .buttons li { 170 | vertical-align:top; 171 | margin:0 0 1px; 172 | position:relative; 173 | } 174 | .buttons a { 175 | vertical-align:top; 176 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#616a78), color-stop(100%,#343d4b)); 177 | width:150px; 178 | height:40px; 179 | display:block; 180 | overflow:hidden; 181 | cursor:pointer; 182 | outline: none; 183 | } 184 | 185 | .buttons a:hover { 186 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#67abd6), color-stop(100%,#4a7fc2)); } 187 | .buttons li.active a { 188 | background:url(../images/button-active.png) no-repeat -113px -2px; 189 | margin:0 -21px 0 0; 190 | padding:0 21px 0 0; 191 | outline: none; 192 | } 193 | .buttons li.active a em {top:40px;} 194 | .buttons a span { 195 | background: url("../images/icons-mono.png") no-repeat scroll 9999px 0 transparent; 196 | color: #FFFFFF; 197 | display: inline-block; 198 | height: 20px; 199 | margin: 11px 5px 0; 200 | overflow: hidden; 201 | text-indent: 22px; 202 | width: 150px; 203 | } 204 | .buttons em { 205 | position:absolute; 206 | right:0; 207 | top:0; 208 | background:url(../images/bg-shadow.png) repeat-y; 209 | width:4px; 210 | height:100%; 211 | overflow:hidden; 212 | text-indent: 20px; 213 | } 214 | .buttons .ico1 span {background-position:0 0;} 215 | .buttons .active .ico1 span {background-position:0 -25px;} 216 | .buttons .ico2 span {background-position:2px -47px;} 217 | .buttons .active .ico2 span {background-position:2px -73px;} 218 | .buttons .ico3 span {background-position:2px -97px;} 219 | .buttons .active .ico3 span {background-position:2px -126px;} 220 | .buttons .ico4 span {background-position:2px -153px;} 221 | .buttons .active .ico4 span {background-position:2px -178px;} 222 | .buttons .ico5 span {background-position:2px -206px;} 223 | .buttons .active .ico5 span {background-position:2px -232px;} 224 | .buttons .ico6 span {background-position:2px -262px;} 225 | #box { 226 | border: 1px solid #ccc; 227 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#FCFCFC)); 228 | -webkit-box-shadow: #666 0px 2px 3px; 229 | -webkit-border-radius: 4px; 230 | width: 550px; 231 | margin-bottom: 10px; 232 | 233 | } 234 | #box_title { 235 | font-size: 14px; 236 | border-bottom: 1px solid #ccc; 237 | line-height: 22px; 238 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#67abd6), color-stop(100%,#4a7fc2)); 239 | color: #FFF; 240 | padding-left: 6px; 241 | } 242 | #box_content { 243 | 244 | padding: 6px; 245 | } 246 | 247 | .tooltip 248 | { 249 | position: relative; 250 | display: inline-block; 251 | outline: none; 252 | } 253 | 254 | .tooltip span 255 | { 256 | visibility: hidden; 257 | position: absolute; 258 | bottom: 40px; 259 | left: 100px; 260 | z-index: 999; 261 | width: 100px; 262 | margin-left: -127px; 263 | margin-top: -30px; 264 | padding: 5px; 265 | border: 2px solid #FFF; 266 | opacity: .8; 267 | background-color: #494949; 268 | color: #FFF; 269 | border-radius: 3px; 270 | 271 | } 272 | 273 | .tooltip:hover span 274 | { 275 | visibility: visible; 276 | } 277 | .link { 278 | padding: 5px; 279 | width: 49px; 280 | display: inline-block; 281 | cursor : pointer; 282 | } 283 | -------------------------------------------------------------------------------- /helal-software-center/usr/share/sc/data/details/packages.list: -------------------------------------------------------------------------------- 1 | 1839 pyroman 2 | 1838 netscript-2.4 3 | 1837 guarddog 4 | 1836 firestarter 5 | 1835 firehol 6 | 1834 fiaif 7 | 1833 transmission-gtk 8 | 1832 torrentflux 9 | 1831 rtorrent 10 | 1830 ktorrent 11 | 1829 frostwire 12 | 1828 deluge-torrent 13 | 1827 bittorrent-gui 14 | 1826 bittornado-gui 15 | 1825 vuze 16 | 1824 amule 17 | 1823 kftpgrabber 18 | 1822 gftp 19 | 1821 filezilla 20 | 1820 xchat 21 | 1819 weechat 22 | 1818 tinyirc 23 | 1817 sirc 24 | 1816 sic 25 | 1815 seamonkey-chatzilla 26 | 1814 scrollz 27 | 1813 riece 28 | 1812 pork 29 | 1811 naim 30 | 1810 lostirc 31 | 1809 loqui 32 | 1808 liece 33 | 1807 kvirc 34 | 1806 konversation 35 | 1805 irssi 36 | 1804 ircii 37 | 1803 finch 38 | 1802 erc 39 | 1801 epic4 40 | 1800 cgiirc 41 | 1799 centerim 42 | 1798 sim 43 | 1797 psi 44 | 1796 pidgin 45 | 1795 licq 46 | 1794 kopete 47 | 1793 kmess 48 | 1792 kadu 49 | 1791 jwchat 50 | 1790 gossip 51 | 1789 gajim 52 | 1788 emesene 53 | 1787 ayttm 54 | 1786 amsn 55 | 1785 w3m 56 | 1784 seamonkey 57 | 1783 prism 58 | 1782 opera 59 | 1781 midori 60 | 1779 lynx 61 | 1778 konqueror 62 | 1777 galeon 63 | 1776 firefox 64 | 1775 epiphany-browser 65 | 1774 elinks 66 | 1772 yahoo2mbox 67 | 1771 thunderbird 68 | 1770 sylpheed 69 | 1769 spambayes 70 | 1768 spamassassin 71 | 1767 sendmail 72 | 1766 postfix 73 | 1765 nautilus-sendto 74 | 1764 mutt 75 | 1763 mailody 76 | 1762 mail-notification 77 | 1761 kontact 78 | 1760 kmail 79 | 1759 kcheckgmail 80 | 1758 gotmail 81 | 1756 gmail-notify 82 | 1755 getmail4 83 | 1754 freepops 84 | 1753 fetchyahoo 85 | 1752 fetchmail 86 | 1751 exim4 87 | 1750 mail-notification-evolution 88 | 1749 enigmail 89 | 1748 claws-mail-extra-plugins 90 | 1747 checkgmail 91 | 1746 balsa 92 | 1745 alpine 93 | 1743 skype 94 | 1742 liferea 95 | 1741 gwget 96 | 1740 googleearth 97 | 1739 photoprint 98 | 1738 ksnapshot 99 | 1737 kruler 100 | 1736 koverartist 101 | 1735 kover 102 | 1734 kiconedit 103 | 1733 kflickr 104 | 1732 kcoloredit 105 | 1731 xsane 106 | 1729 flegita 107 | 1727 gpixpod 108 | 1728 gtkam 109 | 1726 f-spot 110 | 1725 digikam 111 | 1724 showfoto 112 | 1723 ristretto 113 | 1722 qiv 114 | 1719 gthumb 115 | 1720 gwenview 116 | 1718 gqview 117 | 1717 gpicview 118 | 1716 gliv 119 | 1714 eog 120 | 1713 xaralx-svg 121 | 1712 tuxpaint 122 | 1711 skencil 123 | 1710 rgbpaint 124 | 1709 openoffice.org-draw 125 | 1708 mtpaint 126 | 1707 krita 127 | 1706 kolourpaint4 128 | 1705 kivio 129 | 1704 karbon 130 | 1703 inkscape 131 | 1702 gtkmorph 132 | 1701 gimp 133 | 1700 dia 134 | 1699 picasa 135 | 1697 blender-ogrexml 136 | 1698 fontforge 137 | 1696 agave 138 | 1695 torcs 139 | 1694 supertuxkart 140 | 1693 extremetuxracer 141 | 1692 flightgear 142 | 1691 armagetron 143 | 1690 zsnes 144 | 1689 wine 145 | 1688 visualboyadvance-gtk 146 | 1687 vice 147 | 1686 uae 148 | 1685 stella 149 | 1684 spectemu-x11 150 | 1683 sdlmame 151 | 1682 pearpc 152 | 1681 pcsx-df 153 | 1680 pose-skins 154 | 1679 openmsx-catapult 155 | 1678 nestra 156 | 1677 xmess-sdl 157 | 1676 mednafen 158 | 1675 kxmame 159 | 1674 hatari 160 | 1673 gnuboy-sdl 161 | 1672 snes9express 162 | 1671 gngb 163 | 1670 gfceu 164 | 1669 dosemu 165 | 1668 dosbox 166 | 1667 dgen 167 | 1666 desmume 168 | 1665 basilisk2 169 | 1664 atari800 170 | 1662 widelands 171 | 1661 warzone2100 172 | 1660 glob2 173 | 1659 glest 174 | 1657 teg 175 | 1658 wormux 176 | 1656 hedgewars 177 | 1655 freecol 178 | 1654 freeciv-client-gtk 179 | 1653 crimson 180 | 1652 wesnoth-all 181 | 1651 asc 182 | 1650 warsow 183 | 1649 tremulous 184 | 1648 sauerbraten 185 | 1647 openarena 186 | 1646 nexuiz 187 | 1645 alien-arena 188 | 1644 vegastrike 189 | 1643 supertux 190 | 1642 smc 191 | 1641 scorched3d 192 | 1640 pychess 193 | 1639 pingus 194 | 1638 openttd 195 | 1637 neverball 196 | 1636 lincity-ng 197 | 1635 kdegames 198 | 1634 gnome-games 199 | 1633 frozen-bubble 200 | 1632 fretsonfire 201 | 1631 foobillard 202 | 1630 flight-of-the-amazon-queen 203 | 1629 fillets-ng 204 | 1628 egoboo 205 | 1627 criticalmass 206 | 1626 beneath-a-steel-sky 207 | 1625 btanks 208 | 1624 tuxtype 209 | 1623 tuxmath 210 | 1622 stellarium 211 | 1621 kdeedu 212 | 1620 gcompris 213 | 1619 childsplay 214 | 1618 vim 215 | 1617 scite 216 | 1616 qemacs 217 | 1615 nano 218 | 1614 mousepad 219 | 1613 medit 220 | 1612 leafpad 221 | 1611 kile 222 | 1610 kate 223 | 1609 joe 224 | 1608 jedit 225 | 1607 vim-gnome 226 | 1606 gedit-plugins 227 | 1605 emacs 228 | 1604 zekr 229 | 1603 xfm 230 | 1602 xfe 231 | 1601 thunar 232 | 1600 rox-filer 233 | 1599 pcmanfm 234 | 1598 nautilus 235 | 1597 krusader 236 | 1596 hot-babe 237 | 1595 mc 238 | 1594 gnome-commander 239 | 1592 emelfm2 240 | 1593 gnochm 241 | 1591 dolphin 242 | 1590 conduit 243 | 1840 kdepim 244 | 1841 kformula 245 | 1842 kugar 246 | 1843 lightning-extension 247 | 1844 ttf-mscorefonts-installer 248 | 1845 sunbird 249 | 1846 pdfedit 250 | 1847 gnome-office 251 | 1848 koffice 252 | 1849 openoffice.org-gnome 253 | 1850 openoffice.org-kde 254 | 1851 alexandria 255 | 1852 bibshelf 256 | 1853 gcstar 257 | 1854 griffith 258 | 1855 imgseek 259 | 1856 kbibtex 260 | 1857 krecipes 261 | 1858 referencer 262 | 1859 tellico 263 | 1860 acroread 264 | 1861 epdfview 265 | 1862 evince 266 | 1863 fbreader 267 | 1864 gv 268 | 1865 okular 269 | 1866 pdfcube 270 | 1867 xpdf 271 | 1868 eqonomize 272 | 1869 gnucash 273 | 1870 grisbi 274 | 1871 homebank 275 | 1872 keurocalc 276 | 1873 kmymoney2 277 | 1874 abiword 278 | 1875 kword 279 | 1876 lyx 280 | 1877 openoffice.org-writer 281 | 1878 texmaker 282 | 1879 gnumeric-plugins-extra 283 | 1880 kspread 284 | 1882 openoffice.org-calc 285 | 1883 sc 286 | 1884 keyjnote 287 | 1885 kpresenter 288 | 1886 openoffice.org-impress 289 | 1887 pyntor 290 | 1888 scribus 291 | 1889 dia-gnome 292 | 1890 kchart 293 | 1891 datakiosk 294 | 1892 firebird2.0-classic 295 | 1893 firebird2.0-super 296 | 1894 flamerobin 297 | 1895 glom 298 | 1896 kexi 299 | 1897 mysql-admin 300 | 1898 mysql-client 301 | 1899 mysql-server 302 | 1900 mysql-navigator 303 | 1901 mysql-query-browser 304 | 1902 openoffice.org-base 305 | 1903 phpmyadmin 306 | 1904 phppgadmin 307 | 1905 postgresql 308 | 1906 tora 309 | 1907 freemind 310 | 1908 kdissert 311 | 1909 labyrinth 312 | 1910 planfacile 313 | 1911 semantik 314 | 1912 vym 315 | 1913 afnix 316 | 1914 anjuta 317 | 1915 bcc 318 | 1916 beef 319 | 1917 binutils 320 | 1918 boa-constructor 321 | 1919 cacao 322 | 1920 cameleon 323 | 1921 cgdb 324 | 1922 cpp 325 | 1923 cvs 326 | 1924 ecj 327 | 1925 ecl 328 | 1927 eclipse 329 | 1929 eric 330 | 1930 build-essential 331 | 1931 fpc 332 | 1932 g++ 333 | 1933 gambas2 334 | 1934 gcc 335 | 1935 gcj 336 | 1936 gcl 337 | 1937 gdb 338 | 1938 geany 339 | 1939 gfortran 340 | 1940 gnat 341 | 1941 gobjc 342 | 1942 gobjc++ 343 | 1943 gpc 344 | 1944 gprolog 345 | 1945 idle 346 | 1946 kdbg 347 | 1947 kdevelop 348 | 1948 kompare 349 | 1949 kompozer 350 | 1950 mingw32 351 | 1951 mit-scheme 352 | 1952 monodevelop 353 | 1953 nemiver 354 | 1954 netbeans 355 | 1955 ocaml 356 | 1956 openjdk-6-jdk 357 | 1957 pida 358 | 1958 piklab 359 | 1959 pychecker 360 | 1960 pydb 361 | 1961 python2.4 362 | 1962 python2.5 363 | 1965 squeak 364 | 1966 subversion 365 | 1968 sun-java6-jdk 366 | 1969 valgrind 367 | 1970 xxgdb 368 | 1971 acidrip 369 | 1972 ardour 370 | 1973 audacity 371 | 1974 dvdrip 372 | 1975 hydrogen 373 | 1976 istanbul 374 | 1977 kino 375 | 1978 lmms 376 | 1979 mixxx 377 | 1980 pitivi 378 | 1981 realplayer 379 | 1982 rosegarden 380 | 1983 stopmotion 381 | 1984 alsaplayer-alsa 382 | 1985 amarok 383 | 1986 aqualung 384 | 1987 audacious-plugins 385 | 1988 banshee 386 | 1989 exaile 387 | 1990 juk 388 | 1991 lastfm 389 | 1992 listen 390 | 1993 muine-plugin-trayicon 391 | 1994 quodlibet-ext 392 | 1995 rhythmbox 393 | 1996 xmms2 394 | 1997 dragonplayer 395 | 1998 elisa 396 | 1999 gxine 397 | 2000 mozilla-helix-player 398 | 2001 kaffeine-mozilla 399 | 2002 kmplayer 400 | 2003 miro 401 | 2004 mplayer 402 | 2005 smplayer-themes 403 | 2006 totem-plugins-extra 404 | 2007 vlc 405 | 2008 xfmedia 406 | 2009 xine-ui 407 | 2010 brasero 408 | 2011 cdrbq 409 | 2012 gnomebaker 410 | 2013 isomaster 411 | 2014 k3b 412 | 2015 k9copy 413 | 2016 qdvdauthor 414 | 2017 serpentine 415 | 2018 xfburn 416 | 2019 bum 417 | 2020 clamav 418 | 2021 envyng-qt 419 | 2022 guidedog 420 | 2023 htop 421 | 2024 openssh-client 422 | 2025 virtualbox-3.0 423 | 2026 wine-doors 424 | 2027 adesklets 425 | 2028 awn-manager 426 | 2029 conky 427 | 2030 gdesklets 428 | 2031 superkaramba 429 | 2032 adept 430 | 1963 quanta 431 | 2035 synaptic 432 | 2036 nvidia-glx-180 433 | 2037 boinc-client 434 | 2038 songbird 435 | 2039 gpodder 436 | 2040 hardinfo 437 | 2041 bombono-dvd 438 | 2042 worldofgoodemo 439 | -------------------------------------------------------------------------------- /helal-control-center/usr/share/helal-control-center/images/ati.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 59 | 63 | 68 | 69 | 76 | 80 | 84 | 88 | 89 | 97 | 98 | 101 | 106 | 111 | 115 | 120 | 125 | 130 | 135 | 136 | 140 | 145 | 150 | 155 | 160 | 161 | 162 | 163 | -------------------------------------------------------------------------------- /helal-welcome/usr/bin/helal-welcome: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Helal Welcome By "M.Hanny Sabbagh", . 3 | 4 | GTKDIALOG=gtkdialog 5 | 6 | export MAIN_DIALOG=' 7 | 8 | 9 | 10 | 96 11 | "'/usr/share/helal-welcome/icons/logo.svg'" 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 26 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 50 | 51 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 93 | 94 | 100 | 101 | 102 | 103 | 109 | 110 | 116 | 117 | 118 | 119 | 120 | 126 | 127 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | ' 140 | 141 | export EN_DIALOG=' 142 | 143 | 144 | 145 | 96 146 | "'/usr/share/helal-welcome/icons/logo.svg'" 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 161 | 162 | 168 | 169 | 170 | 171 | 172 | 173 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 194 | 195 | 201 | 202 | 208 | 209 | 215 | 216 | 217 | 218 | 224 | 225 | 231 | 232 | 233 | 234 | 235 | 241 | 242 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | ' 255 | if [[ "$LANG" == *ar* ]]; then 256 | gtkdialog -p MAIN_DIALOG --center 257 | else 258 | gtkdialog -p EN_DIALOG --center 259 | fi 260 | 261 | -------------------------------------------------------------------------------- /helal-control-center/frontend/css/ar.css: -------------------------------------------------------------------------------- 1 | ::-webkit-scrollbar { 2 | width: 12px; 3 | } 4 | 5 | ::-webkit-scrollbar-track { 6 | -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 7 | background-color: #F2F2F2; 8 | border-radius: 8; 9 | float: left; 10 | 11 | } 12 | 13 | ::-webkit-scrollbar-thumb { 14 | -webkit-box-shadow: inset 0 0 6px #90A4AF; 15 | border-radius: 8; 16 | background-color: #BDD7E6; 17 | } 18 | header, footer, article, section, hgroup, nav, figure, aside {display: block;} 19 | figure { 20 | margin:0; 21 | padding:0; 22 | } 23 | html {height:100%; overflow-x :hidden; -webkit-user-select: none; cursor:default; -webkit-font-smoothing: antialiased;} 24 | body { 25 | background-image: url("../images/noise.png"); 26 | margin:0; 27 | font:12px/15px kacstone; 28 | color:#0066CC; 29 | min-width:1000px; 30 | font-weight:bold; 31 | height:100%; 32 | } 33 | img {border-style:none;} 34 | a { 35 | color:#8a8a8a; 36 | text-decoration:underline; 37 | } 38 | a:hover {text-decoration:none;} 39 | input, 40 | textarea, 41 | select { 42 | font:100% sans-serif; 43 | vertical-align:middle; 44 | color:#8a8a8a; 45 | } 46 | form,fieldset{ 47 | margin:0; 48 | padding:0; 49 | border:none; 50 | } 51 | #wrapper { 52 | position:relative; 53 | min-height:100%; 54 | overflow:hidden; 55 | } 56 | #content { 57 | float:left; 58 | width:100%; 59 | } 60 | #contents { 61 | height: 450px; 62 | margin-right: opx; 63 | padding-right: 25px; 64 | margin-top: 10px; 65 | overflow-y: auto; 66 | width: 595px; 67 | } 68 | #ty { 69 | color: #000000; 70 | font-size: 14px; 71 | -webkit-user-select: text; 72 | cursor:text; 73 | } 74 | 75 | .c1 { 76 | direction: rtl; 77 | float: left; 78 | margin: 0 0 152px; 79 | position: absolute; 80 | width: 622px; 81 | } 82 | 83 | #sidebar { 84 | float: left; 85 | padding: 18px 1px 0 625px; 86 | width: 150px; 87 | min-height: 522px; 88 | background: url("../images/bg-wrapper.png") repeat-y scroll right center transparent; 89 | 90 | } 91 | #solgan { 92 | float: right; 93 | padding-right: 10px; 94 | padding-left: 5px; 95 | position: relative; 96 | } 97 | #launcher { 98 | border-color: transparent; 99 | border-radius: 5px; 100 | border-style: solid; 101 | border-width: 1px; 102 | display: inline-block; 103 | padding-bottom: 5px; 104 | padding-left: 220px; 105 | padding-top: 5px; 106 | margin-right: 10px; 107 | position: relative; 108 | cursor:pointer; 109 | transition: all .50s ease-in-out; 110 | -webkit-transition: all .25s ease-in-out; 111 | } 112 | 113 | #launcher:hover { 114 | 115 | border-color: rgba(23, 51, 78, 0.15) rgba(23, 51, 78, 0.17) rgba(23, 51, 78, 0.2); 116 | background-color: rgba(3, 14, 27, 0.03); 117 | } 118 | #launcher:active { 119 | background-image: linear-gradient(rgba(3, 14, 27, 0.02), rgba(3, 14, 27, 0.05)); 120 | border-color: rgba(23, 51, 78, 0.2) rgba(23, 51, 78, 0.23) rgba(23, 51, 78, 0.25); 121 | -webkit-box-shadow: 0 1px 1px rgba(3, 14, 27, 0.05) inset, 0 0 1px rgba(3, 14, 27, 0.1) inset; 122 | -webkit-transition-duration: 0; 123 | } 124 | #launcher h3 { 125 | float: left; 126 | margin-top: -46px; 127 | margin-right: 55px; 128 | position: absolute; 129 | color: #000000; 130 | display: block; 131 | } 132 | #launcher span { 133 | margin-right: 55px; 134 | margin-top: -30px; 135 | position: absolute; 136 | } 137 | #launcher img { 138 | opacity: 1; 139 | height: 48px; 140 | width: 48px; 141 | } 142 | #launcher:hover img { 143 | opacity: 0.8; 144 | } 145 | #sidebar .shadow { 146 | background:url(../images/bg-shadow.png) no-repeat; 147 | width:5px; 148 | height:9999px; 149 | overflow:hidden; 150 | text-indent:-9999px; 151 | position:absolute; 152 | left:72px; 153 | top:0; 154 | } 155 | 156 | .tabs .text-section { 157 | border-bottom: 1px solid #E0E0E0; 158 | background-color: rgba(0, 0, 0, 0.03); 159 | padding:19px 0 8px 36px; 160 | color: rgb(82, 92, 102); 161 | } 162 | .tabs .text-section .help { 163 | position: absolute; 164 | left: 5px; 165 | top: 5px; 166 | border: solid 1px #999; 167 | border-radius: 10px; 168 | vertical-align: top; 169 | padding: 1px; 170 | padding-right: 2px; 171 | height: 32px; 172 | background-color: #FFF; 173 | -webkit-box-shadow: #666 0px 1px 3px; 174 | opacity: 0.4; 175 | cursor: pointer; 176 | -webkit-transition: all .50s ease-in-out; 177 | } 178 | .tabs .text-section .help:hover { 179 | opacity: 1; 180 | } 181 | .tabs h1 { 182 | font-size:18px; 183 | line-height:20px; 184 | margin:0 0 8px; 185 | color:#2b333b; 186 | } 187 | .tabs p {margin:0 0 10px;} 188 | .logo { 189 | background:url(../images/hcc_logo.png) no-repeat ; 190 | width:96px; 191 | height:96px; 192 | display:block; 193 | margin:0 auto 10px; 194 | position:relative; 195 | left:1px; 196 | 197 | } 198 | .logo a { 199 | display:block; 200 | height:100%; 201 | } 202 | 203 | .buttons { 204 | list-style:none; 205 | margin:0; 206 | padding:0; 207 | position:relative; 208 | z-index:2; 209 | font:bold 11px/13px sans-serif; 210 | direction: rtl; 211 | } 212 | .buttons li { 213 | vertical-align:top; 214 | margin:0 0 1px; 215 | position:relative; 216 | } 217 | .buttons a { 218 | vertical-align:top; 219 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444), color-stop(100%,#444)); 220 | width:150px; 221 | height:35px; 222 | display:block; 223 | overflow:hidden; 224 | cursor:pointer; 225 | outline: none; 226 | } 227 | 228 | .buttons a:hover { 229 | background: #0099CC; } 230 | .buttons li.active a { 231 | background:url(../images/button-active_right.png) no-repeat -63px -2px; 232 | margin: 0px 0px 0px -21px; 233 | padding: 0px 0px 0px 21px; 234 | outline: none; 235 | 236 | } 237 | .buttons li.active a em {top:40px;} 238 | .buttons a span { 239 | background: url("../images/icons-mono.png") no-repeat scroll 9999px 0 transparent; 240 | color: #FFFFFF; 241 | display: inline-block; 242 | height: 20px; 243 | margin: 11px 5px 0; 244 | overflow: hidden; 245 | text-indent: 22px; 246 | width: 150px; 247 | } 248 | .buttons em { 249 | background: url("../images/bg-shadow.png") repeat-y scroll 0 0 transparent; 250 | height: 100%; 251 | overflow: hidden; 252 | position: absolute; 253 | left: 0; 254 | text-indent: 20px; 255 | top: 0; 256 | width: 4px; 257 | float: left; 258 | -webkit-transform: scalex(-1); 259 | } 260 | .buttons .ico1 span {background-position:130px 0;} 261 | .buttons .active .ico1 span {background-position:130px -25px;} 262 | .buttons .ico2 span {background-position:130px -47px;} 263 | .buttons .active .ico2 span {background-position:130px -73px;} 264 | .buttons .ico3 span {background-position:130px -97px;} 265 | .buttons .active .ico3 span {background-position:130px -126px;} 266 | .buttons .ico4 span {background-position:130px -153px;} 267 | .buttons .active .ico4 span {background-position:130px -178px;} 268 | .buttons .ico5 span {background-position:130px -206px;} 269 | .buttons .active .ico5 span {background-position:130px -232px;} 270 | .buttons .ico6 span {background-position:130px -262px;} 271 | .buttons .active .ico6 span {background-position:130px -291px;} 272 | #box { 273 | 274 | background-color:#f7f7f7; 275 | -webkit-box-shadow: rgba(0, 0, 0, 0.2) -1px 1px 4px; 276 | border-radius: 5px; 277 | width: 550px; 278 | margin-bottom: 10px; 279 | 280 | } 281 | #box_title { 282 | color: #4a4a4a; 283 | font-size: 14px; 284 | border-bottom: 1px solid #ccc; 285 | line-height: 22px; 286 | background-color:#dad7d3; 287 | 288 | padding-right: 6px; 289 | -webkit-border-top-left-radius: 5px; 290 | -webkit-border-top-right-radius: 5px; 291 | } 292 | #box_content { 293 | 294 | padding: 6px; 295 | } 296 | 297 | .tooltip 298 | { 299 | position: relative; 300 | display: inline-block; 301 | outline: none; 302 | } 303 | 304 | .tooltip span 305 | { 306 | visibility: hidden; 307 | position: absolute; 308 | bottom: 40px; 309 | left: 100px; 310 | z-index: 999; 311 | width: 100px; 312 | margin-left: -127px; 313 | margin-top: -30px; 314 | padding: 5px; 315 | border: 2px solid #FFF; 316 | opacity: .8; 317 | background-color: #494949; 318 | color: #FFF; 319 | border-radius: 3px; 320 | 321 | } 322 | 323 | .tooltip:hover span 324 | { 325 | visibility: visible; 326 | } 327 | .link { 328 | padding: 5px; 329 | width: 49px; 330 | display: inline-block; 331 | cursor : pointer; 332 | } 333 | .link img { 334 | padding-bottom: 2px; 335 | } 336 | .link p { 337 | text-align: center; 338 | } 339 | .input-box { 340 | background: none repeat scroll 0 0 padding-box rgba(255, 255, 255, 0.898); 341 | border-radius: 0 2.5px 2.5px 0; 342 | -webkit-box-shadow: 0 1px 0 rgba(8, 22, 37, 0.02) inset, 0 0 2px rgba(8, 22, 37, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.2); 343 | border-color: rgba(23, 51, 78, 0.15) rgba(23, 51, 78, 0.17) rgba(23, 51, 78, 0.2); 344 | border-style: solid; 345 | border-width: 1px; 346 | outline: none; 347 | padding: 3px 8px; 348 | } 349 | .input-submit { 350 | margin-right: -6px; 351 | 352 | } 353 | --------------------------------------------------------------------------------