├── .circleci └── config.yml ├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build-date.txt ├── build-packs.py ├── buildlibs ├── control.py └── pack_archives.py ├── clean.py ├── cloudprotocol ├── accept.php ├── config.php ├── connect.php ├── counter.php ├── create.php ├── getkey.php ├── inbox.php ├── link.php ├── live │ └── index.php ├── notif.php ├── publickey.php ├── push.php ├── repo.php ├── send.php ├── unlink.php └── upload.php ├── debug.py ├── debug_onlinux.py ├── geniso.py ├── install.py ├── mirror.txt ├── pack-sb.py ├── pack-wheel.py ├── pack.py ├── packs ├── game.mines │ ├── code │ │ └── mines.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ └── share │ │ ├── applications │ │ └── mines.desk │ │ └── icons │ │ ├── bomb.png │ │ ├── bug.png │ │ ├── cactus.png │ │ ├── cake.png │ │ ├── clock-select.png │ │ ├── cross.png │ │ ├── cup.png │ │ ├── flag.png │ │ ├── fruit.png │ │ ├── hamburger.png │ │ ├── ice-cream-sprinkles.png │ │ ├── mines.svg │ │ ├── mushroom.png │ │ ├── plus.png │ │ ├── rocket.png │ │ ├── smiley-lol.png │ │ └── smiley.png ├── io.mpv │ ├── code │ │ └── mpv.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── mpv.desk │ │ └── layouts │ │ └── mpv.qml ├── ir.pyabr.ayene │ ├── code │ │ └── ayene.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── ayene.desk │ │ └── layouts │ │ └── ayene.qml ├── ir.pyabr.baad │ ├── code │ │ ├── baad.py │ │ └── baadcli.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── baad.desk │ │ ├── backgrounds │ │ ├── BaaD_BlackClouds.jpg │ │ ├── BaaD_Clear.jpg │ │ ├── BaaD_Clouds.jpg │ │ ├── BaaD_FewClouds.jpg │ │ ├── BaaD_Fog.jpg │ │ ├── BaaD_Forzen.jpg │ │ ├── BaaD_Hails.jpg │ │ ├── BaaD_Rain.jpg │ │ └── BaaD_Snow.jpg │ │ └── layouts │ │ └── baad.qml ├── ir.pyabr.baran │ ├── code │ │ ├── baran.py │ │ ├── kma.py │ │ ├── refresh.py │ │ └── rma.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ ├── etc │ │ └── feeds.list │ │ └── usr │ │ ├── app │ │ └── wifi_app.sa │ │ └── share │ │ ├── applications │ │ ├── baran.desk │ │ ├── kma.desk │ │ ├── rma.desk │ │ └── wifi.desk │ │ └── categories │ │ ├── develop.cat │ │ ├── games.cat │ │ ├── internet.cat │ │ ├── multimedia.cat │ │ ├── others.cat │ │ ├── system.cat │ │ └── tools.cat ├── ir.pyabr.barf │ ├── code │ │ └── empty │ ├── control │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ └── share │ │ ├── backgrounds │ │ └── Sunset_and_sea.jpg │ │ ├── layouts │ │ ├── barf-backend.qml │ │ ├── barf-dark-desktop.qml │ │ ├── barf-dark-enter.qml │ │ ├── barf-dark-lock.qml │ │ ├── barf-dark-login.qml │ │ ├── barf-dark-unlock.qml │ │ ├── barf-desktop.qml │ │ ├── barf-enter.qml │ │ ├── barf-lock.qml │ │ ├── barf-login.qml │ │ ├── barf-splash.qml │ │ └── barf-unlock.qml │ │ └── themes │ │ ├── barf-dark │ │ └── WindowTheme.qml │ │ ├── barf │ │ └── WindowTheme.qml │ │ ├── global │ │ ├── barf │ │ └── barf-dark │ │ ├── qml │ │ ├── barf │ │ └── barf-dark │ │ └── shell │ │ ├── barf │ │ └── barf-dark ├── ir.pyabr.barge │ ├── code │ │ └── barge.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── barge.desk │ │ └── layouts │ │ └── barge.qml ├── ir.pyabr.calculator │ ├── code │ │ └── calculator.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── calculator.desk │ │ └── layouts │ │ └── calculator.qml ├── ir.pyabr.calendar │ ├── code │ │ └── calendar_app.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── calendar.desk │ │ └── layouts │ │ ├── PersianCalendar.qml │ │ ├── PersianCalendarStyle.qml │ │ └── calendar.qml ├── ir.pyabr.chat │ ├── code │ │ └── chat.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── chat.desk │ │ └── layouts │ │ ├── ChannelConnector.qml │ │ ├── Chats.qml │ │ ├── Contacts.qml │ │ └── chat.qml ├── ir.pyabr.clock │ ├── code │ │ └── clock.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── clock.desk │ │ ├── images │ │ ├── clock-face-light.png │ │ └── clock-face.png │ │ └── layouts │ │ ├── AnalogClock.qml │ │ ├── AnalogClockLight.qml │ │ └── clock.qml ├── ir.pyabr.commento │ ├── code │ │ └── commento.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ └── applications │ │ └── commento.desk ├── ir.pyabr.controls │ ├── code │ │ └── controls.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ ├── appearanc.sa │ │ ├── displaymanager.sa │ │ └── empty │ │ └── share │ │ ├── applications │ │ ├── appearanc.desk │ │ ├── controls.desk │ │ └── displaymanager.desk │ │ └── layouts │ │ ├── ControlDisplayManager.qml │ │ ├── ControlNetwork.qml │ │ ├── ControlUsers.qml │ │ ├── Languages.qml │ │ └── controls.qml ├── ir.pyabr.copydisk │ ├── code │ │ └── copydisk.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── copydisk.desk │ │ └── layouts │ │ └── copydisk.qml ├── ir.pyabr.dmgr │ ├── code │ │ └── dmgr.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── dmgr.desk │ │ └── layouts │ │ └── dmgr.qml ├── ir.pyabr.farayand │ ├── code │ │ └── farayand.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── farayand.desk │ │ └── layouts │ │ └── farayand.qml ├── ir.pyabr.files │ ├── code │ │ ├── drives.py │ │ └── files.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ ├── drives.desk │ │ └── files.desk │ │ └── layouts │ │ ├── drives.qml │ │ └── files.qml ├── ir.pyabr.help │ ├── code │ │ └── onlinesupport.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── help.desk │ │ └── docs │ │ └── commands │ │ ├── add.md │ │ ├── bunzip.md │ │ ├── bzip.md │ │ ├── cat.md │ │ ├── cc.md │ │ ├── cd.md │ │ ├── check.md │ │ ├── chmod.md │ │ ├── chown.md │ │ ├── clean.md │ │ ├── clear.md │ │ ├── cp.md │ │ ├── date.md │ │ ├── det.md │ │ ├── down.md │ │ ├── echo.md │ │ ├── getv.md │ │ ├── gunzip.md │ │ ├── gzip.md │ │ ├── link.md │ │ ├── logout.md │ │ ├── ls.md │ │ ├── mkdir.md │ │ ├── mv.md │ │ ├── new.md │ │ ├── passwd.md │ │ ├── pause.md │ │ ├── paye.md │ │ ├── push.md │ │ ├── pwd.md │ │ ├── read.md │ │ ├── reboot.md │ │ ├── rm.md │ │ ├── say.md │ │ ├── sel.md │ │ ├── set.md │ │ ├── shut.md │ │ ├── shutdown.md │ │ ├── sleep.md │ │ ├── su.md │ │ ├── sudo.md │ │ ├── tar.md │ │ ├── touch.md │ │ ├── uadd.md │ │ ├── udel.md │ │ ├── uinfo.md │ │ ├── unlink.md │ │ ├── unsel.md │ │ ├── unset.md │ │ ├── untar.md │ │ ├── unzip.md │ │ ├── up.md │ │ ├── upv.md │ │ ├── ver.md │ │ ├── view.md │ │ ├── wget.md │ │ ├── xunzip.md │ │ ├── xzip.md │ │ ├── zero.md │ │ └── zip.md ├── ir.pyabr.jooya │ ├── code │ │ ├── HTMLViewer.py │ │ ├── MarkdownViewer.py │ │ └── jooya.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ ├── etc │ │ └── jooya │ │ │ ├── engines │ │ │ ├── bing │ │ │ ├── brave │ │ │ ├── duckduckgo │ │ │ ├── ecosia │ │ │ ├── gerdoo │ │ │ ├── google │ │ │ ├── qwant │ │ │ ├── startpage │ │ │ ├── yahoo │ │ │ └── zarebin │ │ │ └── searchengine │ │ └── usr │ │ └── share │ │ ├── applications │ │ ├── HTMLViewer.desk │ │ ├── MarkdownViewer.desk │ │ └── jooya.desk │ │ └── layouts │ │ ├── HTMLViewer.qml │ │ ├── MarkdownViewer.qml │ │ └── jooya.qml ├── ir.pyabr.nama │ ├── code │ │ └── nama.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── nama.desk │ │ └── layouts │ │ └── nama.qml ├── ir.pyabr.paye │ ├── code │ │ └── paye.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ ├── etc │ │ └── paye │ │ │ ├── permanetly_applications │ │ │ └── sources │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ └── helps │ │ └── paye ├── ir.pyabr.pishkhan │ ├── code │ │ └── pishkhan.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ ├── dash.sa │ │ ├── dashboard.sa │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── pishkhan.desk │ │ └── layouts │ │ └── pishkhan.qml ├── ir.pyabr.pyket │ ├── code │ │ └── pyket.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── pyket.desk │ │ └── layouts │ │ └── pyket.qml ├── ir.pyabr.pysys │ ├── code │ │ └── pysys.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ └── applications │ │ └── pysys.desk ├── ir.pyabr.raz │ ├── code │ │ ├── gosha.py │ │ ├── negar.py │ │ └── raz.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ └── share │ │ ├── applications │ │ ├── gosha.desk │ │ ├── negar.desk │ │ └── raz.desk │ │ └── layouts │ │ ├── gosha.qml │ │ ├── negar.qml │ │ └── raz.qml ├── ir.pyabr.runapp │ ├── code │ │ └── runapp.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── runapp.desk │ │ └── layouts │ │ └── runapp.qml ├── ir.pyabr.sample │ ├── code │ │ ├── debug.py │ │ └── sample.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ ├── debug.desk │ │ └── sample.desk │ │ ├── layouts │ │ ├── app.qml │ │ └── debug.qml │ │ └── samples │ │ ├── c-console │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ ├── ir.pyabr.hello │ │ │ ├── code │ │ │ │ └── hello.c │ │ │ └── control │ │ │ │ ├── compile │ │ │ │ ├── list │ │ │ │ └── manifest │ │ └── publish.sa │ │ ├── cpp-console │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── code │ │ │ └── hello.cpp │ │ │ └── control │ │ │ ├── compile │ │ │ ├── list │ │ │ └── manifest │ │ ├── deskdirs │ │ ├── Audios │ │ │ └── .logo │ │ ├── Desktop │ │ │ └── .logo │ │ ├── Documents │ │ │ └── .logo │ │ ├── Downloads │ │ │ └── .logo │ │ ├── Pictures │ │ │ └── .logo │ │ ├── Projects │ │ │ └── .logo │ │ ├── Samples │ │ │ └── .logo │ │ └── Vidoes │ │ │ └── .logo │ │ ├── hascal-console │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── code │ │ │ └── hello.has │ │ │ └── control │ │ │ ├── compile │ │ │ ├── list │ │ │ └── manifest │ │ ├── pashmak-console │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── control │ │ │ ├── list │ │ │ └── manifest │ │ │ └── data │ │ │ └── usr │ │ │ └── app │ │ │ └── hello.pashm │ │ ├── python-console │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── code │ │ │ └── hello.py │ │ │ └── control │ │ │ ├── compile │ │ │ ├── list │ │ │ └── manifest │ │ ├── python-qt │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── code │ │ │ └── hello.py │ │ │ ├── control │ │ │ ├── compile │ │ │ ├── list │ │ │ └── manifest │ │ │ └── data │ │ │ └── usr │ │ │ └── share │ │ │ └── applications │ │ │ └── hello.desk │ │ ├── python-quick │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── code │ │ │ └── hello.py │ │ │ ├── control │ │ │ ├── compile │ │ │ ├── list │ │ │ └── manifest │ │ │ └── data │ │ │ └── usr │ │ │ └── share │ │ │ ├── applications │ │ │ └── hello.desk │ │ │ └── layouts │ │ │ └── hello.qml │ │ ├── python-webapp │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ │ ├── code │ │ │ └── hello.py │ │ │ └── control │ │ │ ├── compile │ │ │ ├── list │ │ │ └── manifest │ │ ├── sample-quick.py │ │ ├── sample.c │ │ ├── sample.cpp │ │ ├── sample.cs │ │ ├── sample.has │ │ ├── sample.html │ │ ├── sample.java │ │ ├── sample.js │ │ ├── sample.lua │ │ ├── sample.php │ │ ├── sample.py │ │ ├── sample.qml │ │ ├── sample.sa │ │ ├── sample.ui │ │ └── saye-console │ │ ├── build-packs.sa │ │ ├── clean.sa │ │ ├── config │ │ ├── debug.sa │ │ ├── install.sa │ │ └── ir.pyabr.hello │ │ ├── control │ │ ├── list │ │ └── manifest │ │ └── data │ │ └── usr │ │ └── app │ │ └── hello.sa ├── ir.pyabr.setup │ ├── code │ │ └── setup.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── setup.desk │ │ ├── images │ │ └── setup.png │ │ └── layouts │ │ └── setup.qml ├── ir.pyabr.sysinfo │ ├── code │ │ └── sysinfo.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── sysinfo.desk │ │ └── layouts │ │ └── sysinfo.qml ├── ir.pyabr.updates │ ├── code │ │ └── empty │ └── control │ │ ├── list │ │ └── manifest ├── ir.pyabr.upstor │ ├── code │ │ └── upstor.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ └── upstor.desk │ │ └── layouts │ │ └── upstor.qml ├── ir.pyabr │ ├── code │ │ ├── Download.py │ │ ├── UpdateFonts.py │ │ ├── cloud.py │ │ ├── core.py │ │ ├── down.py │ │ ├── link.py │ │ ├── push.py │ │ ├── quick.py │ │ ├── sync.py │ │ ├── unlink.py │ │ ├── up.py │ │ ├── vmabr.py │ │ ├── webapp.py │ │ └── zero.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ ├── etc │ │ ├── channel │ │ ├── cloud │ │ ├── commands │ │ ├── default │ │ │ ├── browser │ │ │ ├── calendar │ │ │ ├── hidden_files │ │ │ ├── openbox.xml │ │ │ ├── openbox.xml.bak │ │ │ └── terminals │ │ │ │ ├── konsole │ │ │ │ ├── qterminal │ │ │ │ └── xterm │ │ ├── deskdirs │ │ ├── distro │ │ ├── domain │ │ │ └── pyabr.ir │ │ ├── ext │ │ ├── fhs │ │ ├── guest │ │ ├── gui │ │ ├── hostname │ │ ├── hosts │ │ ├── interface │ │ ├── issue │ │ ├── launched │ │ │ └── logo.list │ │ ├── modules │ │ ├── permtab │ │ ├── profile.sa │ │ ├── sudoers │ │ ├── time │ │ └── users │ │ │ ├── guest │ │ │ └── root │ │ ├── proc │ │ └── info │ │ │ ├── boot │ │ │ ├── id │ │ │ ├── inp │ │ │ ├── os │ │ │ ├── os_su │ │ │ ├── pwd │ │ │ ├── scn │ │ │ ├── su │ │ │ ├── sudo │ │ │ └── wsel │ │ └── usr │ │ ├── app │ │ ├── commonmark │ │ │ ├── __init__.py │ │ │ ├── blocks.py │ │ │ ├── cmark.py │ │ │ ├── common.py │ │ │ ├── dump.py │ │ │ ├── entitytrans.py │ │ │ ├── inlines.py │ │ │ ├── main.py │ │ │ ├── node.py │ │ │ ├── normalize_reference.py │ │ │ ├── render │ │ │ │ ├── __init__.py │ │ │ │ ├── html.py │ │ │ │ ├── renderer.py │ │ │ │ └── rst.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── rst_tests.py │ │ │ │ ├── run_spec_tests.py │ │ │ │ └── unit_tests.py │ │ ├── exit.sa │ │ ├── feedparser │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── datetimes │ │ │ │ ├── __init__.py │ │ │ │ ├── asctime.py │ │ │ │ ├── greek.py │ │ │ │ ├── hungarian.py │ │ │ │ ├── iso8601.py │ │ │ │ ├── korean.py │ │ │ │ ├── perforce.py │ │ │ │ ├── rfc822.py │ │ │ │ └── w3dtf.py │ │ │ ├── encodings.py │ │ │ ├── exceptions.py │ │ │ ├── html.py │ │ │ ├── http.py │ │ │ ├── mixin.py │ │ │ ├── namespaces │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── admin.py │ │ │ │ ├── cc.py │ │ │ │ ├── dc.py │ │ │ │ ├── georss.py │ │ │ │ ├── itunes.py │ │ │ │ ├── mediarss.py │ │ │ │ └── psc.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ ├── loose.py │ │ │ │ └── strict.py │ │ │ ├── sanitizer.py │ │ │ ├── sgml.py │ │ │ ├── urls.py │ │ │ └── util.py │ │ ├── html2text │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cli.py │ │ │ ├── config.py │ │ │ ├── elements.py │ │ │ ├── py.typed │ │ │ ├── typing.py │ │ │ └── utils.py │ │ ├── importlib_metadata │ │ │ ├── __init__.py │ │ │ ├── _adapters.py │ │ │ ├── _collections.py │ │ │ ├── _compat.py │ │ │ ├── _functools.py │ │ │ ├── _itertools.py │ │ │ ├── _meta.py │ │ │ ├── _text.py │ │ │ └── py.typed │ │ ├── markdown │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __meta__.py │ │ │ ├── blockparser.py │ │ │ ├── blockprocessors.py │ │ │ ├── core.py │ │ │ ├── extensions │ │ │ │ ├── __init__.py │ │ │ │ ├── abbr.py │ │ │ │ ├── admonition.py │ │ │ │ ├── attr_list.py │ │ │ │ ├── codehilite.py │ │ │ │ ├── def_list.py │ │ │ │ ├── extra.py │ │ │ │ ├── fenced_code.py │ │ │ │ ├── footnotes.py │ │ │ │ ├── legacy_attrs.py │ │ │ │ ├── legacy_em.py │ │ │ │ ├── md_in_html.py │ │ │ │ ├── meta.py │ │ │ │ ├── nl2br.py │ │ │ │ ├── sane_lists.py │ │ │ │ ├── smarty.py │ │ │ │ ├── tables.py │ │ │ │ ├── toc.py │ │ │ │ └── wikilinks.py │ │ │ ├── htmlparser.py │ │ │ ├── inlinepatterns.py │ │ │ ├── pep562.py │ │ │ ├── postprocessors.py │ │ │ ├── preprocessors.py │ │ │ ├── serializers.py │ │ │ ├── test_tools.py │ │ │ ├── treeprocessors.py │ │ │ └── util.py │ │ ├── pygments │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cmdline.py │ │ │ ├── console.py │ │ │ ├── filter.py │ │ │ ├── filters │ │ │ │ └── __init__.py │ │ │ ├── formatter.py │ │ │ ├── formatters │ │ │ │ ├── __init__.py │ │ │ │ ├── _mapping.py │ │ │ │ ├── bbcode.py │ │ │ │ ├── groff.py │ │ │ │ ├── html.py │ │ │ │ ├── img.py │ │ │ │ ├── irc.py │ │ │ │ ├── latex.py │ │ │ │ ├── other.py │ │ │ │ ├── pangomarkup.py │ │ │ │ ├── rtf.py │ │ │ │ ├── svg.py │ │ │ │ ├── terminal.py │ │ │ │ └── terminal256.py │ │ │ ├── lexer.py │ │ │ ├── lexers │ │ │ │ ├── __init__.py │ │ │ │ ├── _asy_builtins.py │ │ │ │ ├── _cl_builtins.py │ │ │ │ ├── _cocoa_builtins.py │ │ │ │ ├── _csound_builtins.py │ │ │ │ ├── _julia_builtins.py │ │ │ │ ├── _lasso_builtins.py │ │ │ │ ├── _lilypond_builtins.py │ │ │ │ ├── _lua_builtins.py │ │ │ │ ├── _mapping.py │ │ │ │ ├── _mql_builtins.py │ │ │ │ ├── _mysql_builtins.py │ │ │ │ ├── _openedge_builtins.py │ │ │ │ ├── _php_builtins.py │ │ │ │ ├── _postgres_builtins.py │ │ │ │ ├── _scilab_builtins.py │ │ │ │ ├── _sourcemod_builtins.py │ │ │ │ ├── _stan_builtins.py │ │ │ │ ├── _stata_builtins.py │ │ │ │ ├── _tsql_builtins.py │ │ │ │ ├── _usd_builtins.py │ │ │ │ ├── _vbscript_builtins.py │ │ │ │ ├── _vim_builtins.py │ │ │ │ ├── actionscript.py │ │ │ │ ├── agile.py │ │ │ │ ├── algebra.py │ │ │ │ ├── ambient.py │ │ │ │ ├── amdgpu.py │ │ │ │ ├── ampl.py │ │ │ │ ├── apdlexer.py │ │ │ │ ├── apl.py │ │ │ │ ├── archetype.py │ │ │ │ ├── arrow.py │ │ │ │ ├── asc.py │ │ │ │ ├── asm.py │ │ │ │ ├── automation.py │ │ │ │ ├── bare.py │ │ │ │ ├── basic.py │ │ │ │ ├── bdd.py │ │ │ │ ├── bibtex.py │ │ │ │ ├── boa.py │ │ │ │ ├── business.py │ │ │ │ ├── c_cpp.py │ │ │ │ ├── c_like.py │ │ │ │ ├── capnproto.py │ │ │ │ ├── cddl.py │ │ │ │ ├── chapel.py │ │ │ │ ├── clean.py │ │ │ │ ├── compiled.py │ │ │ │ ├── configs.py │ │ │ │ ├── console.py │ │ │ │ ├── crystal.py │ │ │ │ ├── csound.py │ │ │ │ ├── css.py │ │ │ │ ├── d.py │ │ │ │ ├── dalvik.py │ │ │ │ ├── data.py │ │ │ │ ├── devicetree.py │ │ │ │ ├── diff.py │ │ │ │ ├── dotnet.py │ │ │ │ ├── dsls.py │ │ │ │ ├── dylan.py │ │ │ │ ├── ecl.py │ │ │ │ ├── eiffel.py │ │ │ │ ├── elm.py │ │ │ │ ├── elpi.py │ │ │ │ ├── email.py │ │ │ │ ├── erlang.py │ │ │ │ ├── esoteric.py │ │ │ │ ├── ezhil.py │ │ │ │ ├── factor.py │ │ │ │ ├── fantom.py │ │ │ │ ├── felix.py │ │ │ │ ├── floscript.py │ │ │ │ ├── forth.py │ │ │ │ ├── fortran.py │ │ │ │ ├── foxpro.py │ │ │ │ ├── freefem.py │ │ │ │ ├── functional.py │ │ │ │ ├── futhark.py │ │ │ │ ├── gcodelexer.py │ │ │ │ ├── gdscript.py │ │ │ │ ├── go.py │ │ │ │ ├── grammar_notation.py │ │ │ │ ├── graph.py │ │ │ │ ├── graphics.py │ │ │ │ ├── graphviz.py │ │ │ │ ├── gsql.py │ │ │ │ ├── haskell.py │ │ │ │ ├── haxe.py │ │ │ │ ├── hdl.py │ │ │ │ ├── hexdump.py │ │ │ │ ├── html.py │ │ │ │ ├── idl.py │ │ │ │ ├── igor.py │ │ │ │ ├── inferno.py │ │ │ │ ├── installers.py │ │ │ │ ├── int_fiction.py │ │ │ │ ├── iolang.py │ │ │ │ ├── j.py │ │ │ │ ├── javascript.py │ │ │ │ ├── jslt.py │ │ │ │ ├── julia.py │ │ │ │ ├── jvm.py │ │ │ │ ├── kuin.py │ │ │ │ ├── lilypond.py │ │ │ │ ├── lisp.py │ │ │ │ ├── make.py │ │ │ │ ├── markup.py │ │ │ │ ├── math.py │ │ │ │ ├── matlab.py │ │ │ │ ├── maxima.py │ │ │ │ ├── meson.py │ │ │ │ ├── mime.py │ │ │ │ ├── ml.py │ │ │ │ ├── modeling.py │ │ │ │ ├── modula2.py │ │ │ │ ├── monte.py │ │ │ │ ├── mosel.py │ │ │ │ ├── ncl.py │ │ │ │ ├── nimrod.py │ │ │ │ ├── nit.py │ │ │ │ ├── nix.py │ │ │ │ ├── oberon.py │ │ │ │ ├── objective.py │ │ │ │ ├── ooc.py │ │ │ │ ├── other.py │ │ │ │ ├── parasail.py │ │ │ │ ├── parsers.py │ │ │ │ ├── pascal.py │ │ │ │ ├── pawn.py │ │ │ │ ├── perl.py │ │ │ │ ├── php.py │ │ │ │ ├── pointless.py │ │ │ │ ├── pony.py │ │ │ │ ├── praat.py │ │ │ │ ├── procfile.py │ │ │ │ ├── prolog.py │ │ │ │ ├── promql.py │ │ │ │ ├── python.py │ │ │ │ ├── qvt.py │ │ │ │ ├── r.py │ │ │ │ ├── rdf.py │ │ │ │ ├── rebol.py │ │ │ │ ├── resource.py │ │ │ │ ├── ride.py │ │ │ │ ├── rita.py │ │ │ │ ├── rnc.py │ │ │ │ ├── roboconf.py │ │ │ │ ├── robotframework.py │ │ │ │ ├── ruby.py │ │ │ │ ├── rust.py │ │ │ │ ├── sas.py │ │ │ │ ├── savi.py │ │ │ │ ├── scdoc.py │ │ │ │ ├── scripting.py │ │ │ │ ├── sgf.py │ │ │ │ ├── shell.py │ │ │ │ ├── sieve.py │ │ │ │ ├── slash.py │ │ │ │ ├── smalltalk.py │ │ │ │ ├── smithy.py │ │ │ │ ├── smv.py │ │ │ │ ├── snobol.py │ │ │ │ ├── solidity.py │ │ │ │ ├── sophia.py │ │ │ │ ├── special.py │ │ │ │ ├── spice.py │ │ │ │ ├── sql.py │ │ │ │ ├── srcinfo.py │ │ │ │ ├── stata.py │ │ │ │ ├── supercollider.py │ │ │ │ ├── tcl.py │ │ │ │ ├── teal.py │ │ │ │ ├── templates.py │ │ │ │ ├── teraterm.py │ │ │ │ ├── testing.py │ │ │ │ ├── text.py │ │ │ │ ├── textedit.py │ │ │ │ ├── textfmts.py │ │ │ │ ├── theorem.py │ │ │ │ ├── thingsdb.py │ │ │ │ ├── tnt.py │ │ │ │ ├── trafficscript.py │ │ │ │ ├── typoscript.py │ │ │ │ ├── unicon.py │ │ │ │ ├── urbi.py │ │ │ │ ├── usd.py │ │ │ │ ├── varnish.py │ │ │ │ ├── verification.py │ │ │ │ ├── web.py │ │ │ │ ├── webassembly.py │ │ │ │ ├── webidl.py │ │ │ │ ├── webmisc.py │ │ │ │ ├── whiley.py │ │ │ │ ├── x10.py │ │ │ │ ├── xorg.py │ │ │ │ ├── yang.py │ │ │ │ └── zig.py │ │ │ ├── modeline.py │ │ │ ├── plugin.py │ │ │ ├── regexopt.py │ │ │ ├── scanner.py │ │ │ ├── sphinxext.py │ │ │ ├── style.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ ├── abap.py │ │ │ │ ├── algol.py │ │ │ │ ├── algol_nu.py │ │ │ │ ├── arduino.py │ │ │ │ ├── autumn.py │ │ │ │ ├── borland.py │ │ │ │ ├── bw.py │ │ │ │ ├── colorful.py │ │ │ │ ├── default.py │ │ │ │ ├── dracula.py │ │ │ │ ├── emacs.py │ │ │ │ ├── friendly.py │ │ │ │ ├── friendly_grayscale.py │ │ │ │ ├── fruity.py │ │ │ │ ├── gruvbox.py │ │ │ │ ├── igor.py │ │ │ │ ├── inkpot.py │ │ │ │ ├── lilypond.py │ │ │ │ ├── lovelace.py │ │ │ │ ├── manni.py │ │ │ │ ├── material.py │ │ │ │ ├── monokai.py │ │ │ │ ├── murphy.py │ │ │ │ ├── native.py │ │ │ │ ├── onedark.py │ │ │ │ ├── paraiso_dark.py │ │ │ │ ├── paraiso_light.py │ │ │ │ ├── pastie.py │ │ │ │ ├── perldoc.py │ │ │ │ ├── rainbow_dash.py │ │ │ │ ├── rrt.py │ │ │ │ ├── sas.py │ │ │ │ ├── solarized.py │ │ │ │ ├── stata_dark.py │ │ │ │ ├── stata_light.py │ │ │ │ ├── tango.py │ │ │ │ ├── trac.py │ │ │ │ ├── vim.py │ │ │ │ ├── vs.py │ │ │ │ ├── xcode.py │ │ │ │ └── zenburn.py │ │ │ ├── token.py │ │ │ ├── unistring.py │ │ │ └── util.py │ │ ├── rich │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _cell_widths.py │ │ │ ├── _emoji_codes.py │ │ │ ├── _emoji_replace.py │ │ │ ├── _extension.py │ │ │ ├── _inspect.py │ │ │ ├── _log_render.py │ │ │ ├── _loop.py │ │ │ ├── _lru_cache.py │ │ │ ├── _palettes.py │ │ │ ├── _pick.py │ │ │ ├── _ratio.py │ │ │ ├── _spinners.py │ │ │ ├── _stack.py │ │ │ ├── _timer.py │ │ │ ├── _windows.py │ │ │ ├── _wrap.py │ │ │ ├── abc.py │ │ │ ├── align.py │ │ │ ├── ansi.py │ │ │ ├── bar.py │ │ │ ├── box.py │ │ │ ├── cells.py │ │ │ ├── color.py │ │ │ ├── color_triplet.py │ │ │ ├── columns.py │ │ │ ├── console.py │ │ │ ├── constrain.py │ │ │ ├── containers.py │ │ │ ├── control.py │ │ │ ├── default_styles.py │ │ │ ├── diagnose.py │ │ │ ├── emoji.py │ │ │ ├── errors.py │ │ │ ├── file_proxy.py │ │ │ ├── filesize.py │ │ │ ├── highlighter.py │ │ │ ├── json.py │ │ │ ├── jupyter.py │ │ │ ├── layout.py │ │ │ ├── live.py │ │ │ ├── live_render.py │ │ │ ├── logging.py │ │ │ ├── markdown.py │ │ │ ├── markup.py │ │ │ ├── measure.py │ │ │ ├── padding.py │ │ │ ├── pager.py │ │ │ ├── palette.py │ │ │ ├── panel.py │ │ │ ├── pretty.py │ │ │ ├── progress.py │ │ │ ├── progress_bar.py │ │ │ ├── prompt.py │ │ │ ├── protocol.py │ │ │ ├── py.typed │ │ │ ├── region.py │ │ │ ├── repr.py │ │ │ ├── rule.py │ │ │ ├── scope.py │ │ │ ├── screen.py │ │ │ ├── segment.py │ │ │ ├── spinner.py │ │ │ ├── status.py │ │ │ ├── style.py │ │ │ ├── styled.py │ │ │ ├── syntax.py │ │ │ ├── table.py │ │ │ ├── tabulate.py │ │ │ ├── terminal_theme.py │ │ │ ├── text.py │ │ │ ├── theme.py │ │ │ ├── themes.py │ │ │ ├── traceback.py │ │ │ └── tree.py │ │ ├── sgmllib.py │ │ ├── ver.sa │ │ └── zipp.py │ │ └── share │ │ ├── applications │ │ ├── download.desk │ │ ├── sync.desk │ │ └── webapp.desk │ │ ├── docs │ │ └── IRANSans │ │ │ ├── AUTHERS │ │ │ ├── FontLicense.txt │ │ │ └── LICENSE │ │ ├── fonts │ │ ├── IRANSans Black.json │ │ ├── IRANSans Light.json │ │ ├── IRANSans Medium.json │ │ ├── IRANSans UltraLight.json │ │ └── IRANSans.json │ │ ├── layouts │ │ ├── WindowTheme.qml │ │ ├── application_theme.qml │ │ ├── ask.qml │ │ ├── cursor_theme.qml │ │ ├── datainstaller.qml │ │ ├── download.qml │ │ ├── fileinfo.qml │ │ ├── font.qml │ │ ├── global_theme.qml │ │ ├── icon_theme.qml │ │ ├── input.qml │ │ ├── install.qml │ │ ├── notif.qml │ │ ├── open.qml │ │ ├── openwith.qml │ │ ├── password.qml │ │ ├── save.qml │ │ ├── select.qml │ │ ├── sharelink.qml │ │ ├── shell_theme.qml │ │ ├── sync.qml │ │ ├── text.qml │ │ └── window_theme.qml │ │ └── locales │ │ ├── ar.locale │ │ ├── cn.locale │ │ ├── de.locale │ │ ├── en.locale │ │ ├── fa.locale │ │ ├── ru.locale │ │ └── tr.locale ├── org.box-look.win10 │ ├── control │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ └── share │ │ └── themes │ │ ├── gtk │ │ └── win10 │ │ └── win10 │ │ └── openbox-3 │ │ ├── bullet.xbm │ │ ├── close.xbm │ │ ├── desk.xbm │ │ ├── desk_hover.xbm │ │ ├── iconify.xbm │ │ ├── max.xbm │ │ ├── max_toggled.xbm │ │ ├── shade.xbm │ │ └── themerc ├── org.chromium │ ├── code │ │ ├── PDFReader.py │ │ └── chromium.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── applications │ │ ├── PDFReader.desk │ │ └── chromium.desk │ │ └── icons │ │ └── chromium.png ├── org.gnu.bash │ ├── code │ │ └── bash.py │ ├── control │ │ ├── compile │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ └── applications │ │ └── bash.desk ├── org.kde.breeze │ ├── code │ │ └── empty │ ├── control │ │ ├── list │ │ └── manifest │ └── data │ │ └── usr │ │ ├── app │ │ └── empty │ │ └── share │ │ ├── icons │ │ ├── breeze-action-chat.svg │ │ ├── breeze-action-event.svg │ │ ├── breeze-action-feed.svg │ │ ├── breeze-action-preview.svg │ │ ├── breeze-action-preview2.svg │ │ ├── breeze-action-toolpen.svg │ │ ├── breeze-action-user.svg │ │ ├── breeze-adduser.svg │ │ ├── breeze-alignc.svg │ │ ├── breeze-alignl.svg │ │ ├── breeze-alignr.svg │ │ ├── breeze-app.svg │ │ ├── breeze-archive.svg │ │ ├── breeze-audio.svg │ │ ├── breeze-audios.svg │ │ ├── breeze-back.svg │ │ ├── breeze-barge.svg │ │ ├── breeze-battery-000-charging.svg │ │ ├── breeze-battery-000.svg │ │ ├── breeze-battery-010-charging.svg │ │ ├── breeze-battery-010.svg │ │ ├── breeze-battery-020-charging.svg │ │ ├── breeze-battery-020.svg │ │ ├── breeze-battery-030-charging.svg │ │ ├── breeze-battery-030.svg │ │ ├── breeze-battery-040-charging.svg │ │ ├── breeze-battery-040.svg │ │ ├── breeze-battery-050-charging.svg │ │ ├── breeze-battery-050.svg │ │ ├── breeze-battery-060-charging.svg │ │ ├── breeze-battery-060.svg │ │ ├── breeze-battery-070-charging.svg │ │ ├── breeze-battery-070.svg │ │ ├── breeze-battery-080-charging.svg │ │ ├── breeze-battery-080.svg │ │ ├── breeze-battery-090-charging.svg │ │ ├── breeze-battery-090.svg │ │ ├── breeze-battery-100-charging.svg │ │ ├── breeze-battery-100.svg │ │ ├── breeze-bold.svg │ │ ├── breeze-bookmark-new.svg │ │ ├── breeze-bookmark-remove.svg │ │ ├── breeze-bookmarks.svg │ │ ├── breeze-box.svg │ │ ├── breeze-bright.svg │ │ ├── breeze-browser.svg │ │ ├── breeze-calculator.svg │ │ ├── breeze-calendar.svg │ │ ├── breeze-camera.svg │ │ ├── breeze-cdrom.svg │ │ ├── breeze-chat.svg │ │ ├── breeze-chronometer.svg │ │ ├── breeze-clock.svg │ │ ├── breeze-close.svg │ │ ├── breeze-cloud-light.svg │ │ ├── breeze-cloud.svg │ │ ├── breeze-commento.svg │ │ ├── breeze-compress.svg │ │ ├── breeze-copy.svg │ │ ├── breeze-copydisk.svg │ │ ├── breeze-cut.svg │ │ ├── breeze-dashboard.svg │ │ ├── breeze-database.svg │ │ ├── breeze-delete.svg │ │ ├── breeze-designer.svg │ │ ├── breeze-desk.svg │ │ ├── breeze-desktop.svg │ │ ├── breeze-details.svg │ │ ├── breeze-disk.svg │ │ ├── breeze-display.svg │ │ ├── breeze-dmgr.svg │ │ ├── breeze-documents.svg │ │ ├── breeze-downcloud.svg │ │ ├── breeze-downloads.svg │ │ ├── breeze-drive.svg │ │ ├── breeze-emf.svg │ │ ├── breeze-eps.svg │ │ ├── breeze-execute.svg │ │ ├── breeze-exit.svg │ │ ├── breeze-ext.svg │ │ ├── breeze-extract.svg │ │ ├── breeze-fie-xlsm.svg │ │ ├── breeze-file-7z.svg │ │ ├── breeze-file-a.svg │ │ ├── breeze-file-aac.svg │ │ ├── breeze-file-abc.svg │ │ ├── breeze-file-ac3.svg │ │ ├── breeze-file-ace.svg │ │ ├── breeze-file-ada.svg │ │ ├── breeze-file-adpcm.svg │ │ ├── breeze-file-afm.svg │ │ ├── breeze-file-ai.svg │ │ ├── breeze-file-aiff.svg │ │ ├── breeze-file-anim.svg │ │ ├── breeze-file-ape.svg │ │ ├── breeze-file-apk.svg │ │ ├── breeze-file-appimage.svg │ │ ├── breeze-file-applet.svg │ │ ├── breeze-file-arc.svg │ │ ├── breeze-file-arj.svg │ │ ├── breeze-file-authers.svg │ │ ├── breeze-file-avi.svg │ │ ├── breeze-file-awk.svg │ │ ├── breeze-file-bat.svg │ │ ├── breeze-file-bdf.svg │ │ ├── breeze-file-bib.svg │ │ ├── breeze-file-bin.svg │ │ ├── breeze-file-blend.svg │ │ ├── breeze-file-bmp.svg │ │ ├── breeze-file-bz.svg │ │ ├── breeze-file-bz2.svg │ │ ├── breeze-file-c++.svg │ │ ├── breeze-file-c.svg │ │ ├── breeze-file-cc.svg │ │ ├── breeze-file-cda.svg │ │ ├── breeze-file-changelog.svg │ │ ├── breeze-file-chm.svg │ │ ├── breeze-file-cmake.svg │ │ ├── breeze-file-com.svg │ │ ├── breeze-file-copying.svg │ │ ├── breeze-file-core.svg │ │ ├── breeze-file-cpio.svg │ │ ├── breeze-file-cpp.svg │ │ ├── breeze-file-credits.svg │ │ ├── breeze-file-cs.svg │ │ ├── breeze-file-css.svg │ │ ├── breeze-file-csv.svg │ │ ├── breeze-file-cue.svg │ │ ├── breeze-file-cxx.svg │ │ ├── breeze-file-deb.svg │ │ ├── breeze-file-desk.svg │ │ ├── breeze-file-desktop.svg │ │ ├── breeze-file-dgn.svg │ │ ├── breeze-file-dicom.svg │ │ ├── breeze-file-djvu.svg │ │ ├── breeze-file-dll.svg │ │ ├── breeze-file-dmg.svg │ │ ├── breeze-file-dng.svg │ │ ├── breeze-file-doc.svg │ │ ├── breeze-file-dockerfile.svg │ │ ├── breeze-file-docx.svg │ │ ├── breeze-file-dom.svg │ │ ├── breeze-file-dot.svg │ │ ├── breeze-file-dotm.svg │ │ ├── breeze-file-dtd.svg │ │ ├── breeze-file-dwg.svg │ │ ├── breeze-file-egon.svg │ │ ├── breeze-file-elf.svg │ │ ├── breeze-file-epub.svg │ │ ├── breeze-file-etf.svg │ │ ├── breeze-file-exe.svg │ │ ├── breeze-file-ext.svg │ │ ├── breeze-file-fb2.svg │ │ ├── breeze-file-flac.svg │ │ ├── breeze-file-flatpakref.svg │ │ ├── breeze-file-flic.svg │ │ ├── breeze-file-flv.svg │ │ ├── breeze-file-gif.svg │ │ ├── breeze-file-go.svg │ │ ├── breeze-file-godot.svg │ │ ├── breeze-file-gpg.svg │ │ ├── breeze-file-gz.svg │ │ ├── breeze-file-h++.svg │ │ ├── breeze-file-h.svg │ │ ├── breeze-file-hdd.svg │ │ ├── breeze-file-hex.svg │ │ ├── breeze-file-hpp.svg │ │ ├── breeze-file-hs.svg │ │ ├── breeze-file-htm.svg │ │ ├── breeze-file-html.svg │ │ ├── breeze-file-hxx.svg │ │ ├── breeze-file-ico.svg │ │ ├── breeze-file-img.svg │ │ ├── breeze-file-install.svg │ │ ├── breeze-file-iso.svg │ │ ├── breeze-file-jar.svg │ │ ├── breeze-file-java.svg │ │ ├── breeze-file-jpeg.svg │ │ ├── breeze-file-jpg.svg │ │ ├── breeze-file-js.svg │ │ ├── breeze-file-json.svg │ │ ├── breeze-file-kil.svg │ │ ├── breeze-file-kmy.svg │ │ ├── breeze-file-kplato.svg │ │ ├── breeze-file-kra.svg │ │ ├── breeze-file-kt.svg │ │ ├── breeze-file-kvtml.svg │ │ ├── breeze-file-labplot2.svg │ │ ├── breeze-file-ldif.svg │ │ ├── breeze-file-lha.svg │ │ ├── breeze-file-lnk.svg │ │ ├── breeze-file-log.svg │ │ ├── breeze-file-lua.svg │ │ ├── breeze-file-lyx.svg │ │ ├── breeze-file-lz.svg │ │ ├── breeze-file-m.svg │ │ ├── breeze-file-m4.svg │ │ ├── breeze-file-makefile.svg │ │ ├── breeze-file-man.svg │ │ ├── breeze-file-marble.svg │ │ ├── breeze-file-md.svg │ │ ├── breeze-file-midi.svg │ │ ├── breeze-file-mkv.svg │ │ ├── breeze-file-mms.svg │ │ ├── breeze-file-mmst.svg │ │ ├── breeze-file-mng.svg │ │ ├── breeze-file-mp2.svg │ │ ├── breeze-file-mp2t.svg │ │ ├── breeze-file-mp3.svg │ │ ├── breeze-file-mp4.svg │ │ ├── breeze-file-nfo.svg │ │ ├── breeze-file-nzb.svg │ │ ├── breeze-file-odb.svg │ │ ├── breeze-file-odc.svg │ │ ├── breeze-file-odf.svg │ │ ├── breeze-file-odg.svg │ │ ├── breeze-file-odp.svg │ │ ├── breeze-file-ods.svg │ │ ├── breeze-file-odt.svg │ │ ├── breeze-file-ogg.svg │ │ ├── breeze-file-one.svg │ │ ├── breeze-file-opml.svg │ │ ├── breeze-file-ost.svg │ │ ├── breeze-file-otf.svg │ │ ├── breeze-file-otg.svg │ │ ├── breeze-file-otp.svg │ │ ├── breeze-file-ots.svg │ │ ├── breeze-file-ott.svg │ │ ├── breeze-file-out.svg │ │ ├── breeze-file-ova.svg │ │ ├── breeze-file-ovf.svg │ │ ├── breeze-file-pak.svg │ │ ├── breeze-file-pas.svg │ │ ├── breeze-file-patch.svg │ │ ├── breeze-file-pcf.svg │ │ ├── breeze-file-pdf.svg │ │ ├── breeze-file-pem.svg │ │ ├── breeze-file-perl.svg │ │ ├── breeze-file-php.svg │ │ ├── breeze-file-pkpass.svg │ │ ├── breeze-file-plasma.svg │ │ ├── breeze-file-png.svg │ │ ├── breeze-file-po.svg │ │ ├── breeze-file-podcast.svg │ │ ├── breeze-file-pot.svg │ │ ├── breeze-file-potx.svg │ │ ├── breeze-file-ppt.svg │ │ ├── breeze-file-pptx.svg │ │ ├── breeze-file-ps1.svg │ │ ├── breeze-file-psd.svg │ │ ├── breeze-file-psid.svg │ │ ├── breeze-file-pst.svg │ │ ├── breeze-file-pub.svg │ │ ├── breeze-file-py.svg │ │ ├── breeze-file-pyc.svg │ │ ├── breeze-file-qcow.svg │ │ ├── breeze-file-qcow2.svg │ │ ├── breeze-file-qml.svg │ │ ├── breeze-file-qrc.svg │ │ ├── breeze-file-r.svg │ │ ├── breeze-file-rar.svg │ │ ├── breeze-file-rb.svg │ │ ├── breeze-file-rdata.svg │ │ ├── breeze-file-rdf.svg │ │ ├── breeze-file-readme.svg │ │ ├── breeze-file-rm.svg │ │ ├── breeze-file-rom.svg │ │ ├── breeze-file-root.svg │ │ ├── breeze-file-rpm.svg │ │ ├── breeze-file-rss.svg │ │ ├── breeze-file-rtf.svg │ │ ├── breeze-file-rtspt.svg │ │ ├── breeze-file-rtspu.svg │ │ ├── breeze-file-rust.svg │ │ ├── breeze-file-rv.svg │ │ ├── breeze-file-sa.svg │ │ ├── breeze-file-sass.svg │ │ ├── breeze-file-sb.svg │ │ ├── breeze-file-sc.svg │ │ ├── breeze-file-scss.svg │ │ ├── breeze-file-sgml.svg │ │ ├── breeze-file-sh.svg │ │ ├── breeze-file-siag.svg │ │ ├── breeze-file-sif.svg │ │ ├── breeze-file-skgc.svg │ │ ├── breeze-file-sla.svg │ │ ├── breeze-file-smb.svg │ │ ├── breeze-file-smi.svg │ │ ├── breeze-file-snf.svg │ │ ├── breeze-file-so.svg │ │ ├── breeze-file-spec.svg │ │ ├── breeze-file-sql.svg │ │ ├── breeze-file-sqlite.svg │ │ ├── breeze-file-sqlite2.svg │ │ ├── breeze-file-sqlite3.svg │ │ ├── breeze-file-squashfs.svg │ │ ├── breeze-file-srt.svg │ │ ├── breeze-file-ssa.svg │ │ ├── breeze-file-sub.svg │ │ ├── breeze-file-svg.svg │ │ ├── breeze-file-svgz.svg │ │ ├── breeze-file-swf.svg │ │ ├── breeze-file-sxw.svg │ │ ├── breeze-file-tar.bz.svg │ │ ├── breeze-file-tar.bz2.svg │ │ ├── breeze-file-tar.lz.svg │ │ ├── breeze-file-tar.svg │ │ ├── breeze-file-tar.xz.svg │ │ ├── breeze-file-tcl.svg │ │ ├── breeze-file-tex.svg │ │ ├── breeze-file-texi.svg │ │ ├── breeze-file-text.svg │ │ ├── breeze-file-tga.svg │ │ ├── breeze-file-tgif.svg │ │ ├── breeze-file-theme.svg │ │ ├── breeze-file-tif.svg │ │ ├── breeze-file-tiff.svg │ │ ├── breeze-file-torrent.svg │ │ ├── breeze-file-troff.svg │ │ ├── breeze-file-ttf.svg │ │ ├── breeze-file-ttx.svg │ │ ├── breeze-file-txt.svg │ │ ├── breeze-file-tzo.svg │ │ ├── breeze-file-ui.svg │ │ ├── breeze-file-vbox.svg │ │ ├── breeze-file-vcf.svg │ │ ├── breeze-file-vdi.svg │ │ ├── breeze-file-vhd.svg │ │ ├── breeze-file-vivo.svg │ │ ├── breeze-file-vmdk.svg │ │ ├── breeze-file-vsd.svg │ │ ├── breeze-file-vsdx.svg │ │ ├── breeze-file-vtt.svg │ │ ├── breeze-file-wav.svg │ │ ├── breeze-file-webm.svg │ │ ├── breeze-file-wiki.svg │ │ ├── breeze-file-wim.svg │ │ ├── breeze-file-wmf.svg │ │ ├── breeze-file-wml.svg │ │ ├── breeze-file-wmp.svg │ │ ├── breeze-file-wmv.svg │ │ ├── breeze-file-wvl.svg │ │ ├── breeze-file-xcf.svg │ │ ├── breeze-file-xhtm.svg │ │ ├── breeze-file-xhtml.svg │ │ ├── breeze-file-xliff.svg │ │ ├── breeze-file-xls.svg │ │ ├── breeze-file-xlst.svg │ │ ├── breeze-file-xlsx.svg │ │ ├── breeze-file-xltm.svg │ │ ├── breeze-file-xmcd.svg │ │ ├── breeze-file-xmind.svg │ │ ├── breeze-file-xml.svg │ │ ├── breeze-file-xsd.svg │ │ ├── breeze-file-xslfo.svg │ │ ├── breeze-file-xslt.svg │ │ ├── breeze-file-xz.svg │ │ ├── breeze-file-zip.svg │ │ ├── breeze-file-zoo.svg │ │ ├── breeze-file.svg │ │ ├── breeze-float.svg │ │ ├── breeze-floppy.svg │ │ ├── breeze-folder.svg │ │ ├── breeze-font.svg │ │ ├── breeze-fullscreen.svg │ │ ├── breeze-game.svg │ │ ├── breeze-harddisk.svg │ │ ├── breeze-help.svg │ │ ├── breeze-home.svg │ │ ├── breeze-homes.svg │ │ ├── breeze-image.svg │ │ ├── breeze-info.svg │ │ ├── breeze-information.svg │ │ ├── breeze-install.svg │ │ ├── breeze-italic.svg │ │ ├── breeze-justify.svg │ │ ├── breeze-k3b.svg │ │ ├── breeze-kc.svg │ │ ├── breeze-kill.svg │ │ ├── breeze-lang.svg │ │ ├── breeze-libreoffice-base.svg │ │ ├── breeze-libreoffice-calc.svg │ │ ├── breeze-libreoffice-draw.svg │ │ ├── breeze-libreoffice-impress.svg │ │ ├── breeze-libreoffice-math.svg │ │ ├── breeze-libreoffice-writer.svg │ │ ├── breeze-libreoffice.svg │ │ ├── breeze-locale.svg │ │ ├── breeze-lock.svg │ │ ├── breeze-logo.svg │ │ ├── breeze-logout.svg │ │ ├── breeze-macbin.svg │ │ ├── breeze-menu-panel.svg │ │ ├── breeze-menu.svg │ │ ├── breeze-mirror.svg │ │ ├── breeze-mpv.svg │ │ ├── breeze-new.svg │ │ ├── breeze-newfolder.svg │ │ ├── breeze-newtab.svg │ │ ├── breeze-newwindow.svg │ │ ├── breeze-next.svg │ │ ├── breeze-onboard.svg │ │ ├── breeze-open.svg │ │ ├── breeze-paint.svg │ │ ├── breeze-paste.svg │ │ ├── breeze-patch.svg │ │ ├── breeze-pause.svg │ │ ├── breeze-paye.svg │ │ ├── breeze-persia.svg │ │ ├── breeze-pictures.svg │ │ ├── breeze-process.svg │ │ ├── breeze-projects.svg │ │ ├── breeze-pyabr.svg │ │ ├── breeze-pyshell.svg │ │ ├── breeze-pysys.svg │ │ ├── breeze-rain.svg │ │ ├── breeze-reboot.svg │ │ ├── breeze-redo.svg │ │ ├── breeze-reload.svg │ │ ├── breeze-rename.svg │ │ ├── breeze-roller.svg │ │ ├── breeze-root.svg │ │ ├── breeze-rootfolder.svg │ │ ├── breeze-run.svg │ │ ├── breeze-runapp.svg │ │ ├── breeze-save.svg │ │ ├── breeze-saveas.svg │ │ ├── breeze-search.svg │ │ ├── breeze-select.svg │ │ ├── breeze-setting.svg │ │ ├── breeze-setup.svg │ │ ├── breeze-sharelink.svg │ │ ├── breeze-shell.svg │ │ ├── breeze-shotwell.svg │ │ ├── breeze-shutdown.svg │ │ ├── breeze-squares.svg │ │ ├── breeze-ssl.svg │ │ ├── breeze-start.svg │ │ ├── breeze-stickers.svg │ │ ├── breeze-stop.svg │ │ ├── breeze-suspend.svg │ │ ├── breeze-switchuser.svg │ │ ├── breeze-templates.svg │ │ ├── breeze-theme.svg │ │ ├── breeze-time-pause.svg │ │ ├── breeze-time-start.svg │ │ ├── breeze-time.svg │ │ ├── breeze-txt.svg │ │ ├── breeze-underline.svg │ │ ├── breeze-undo.svg │ │ ├── breeze-upstor.svg │ │ ├── breeze-users.svg │ │ ├── breeze-videos.svg │ │ ├── breeze-vscode.svg │ │ ├── breeze-w020.svg │ │ ├── breeze-w040.svg │ │ ├── breeze-w080.svg │ │ ├── breeze-w100.svg │ │ ├── breeze-wallpaper.svg │ │ ├── breeze-wapp.svg │ │ ├── breeze-weather-clear-wind.svg │ │ ├── breeze-weather-clear.svg │ │ ├── breeze-weather-clouds-wind.svg │ │ ├── breeze-weather-clouds.svg │ │ ├── breeze-weather-few-clouds-wind.svg │ │ ├── breeze-weather-few-clouds.svg │ │ ├── breeze-weather-fog.svg │ │ ├── breeze-weather-freezing-rain.svg │ │ ├── breeze-weather-hail.svg │ │ ├── breeze-weather-many-clouds-wind.svg │ │ ├── breeze-weather-many-clouds.svg │ │ ├── breeze-weather-mist.svg │ │ ├── breeze-weather-none-available.svg │ │ ├── breeze-weather-overcast-wind.svg │ │ ├── breeze-weather-overcast.svg │ │ ├── breeze-weather-showers-scattered.svg │ │ ├── breeze-weather-showers.svg │ │ ├── breeze-weather-snow-rain.svg │ │ ├── breeze-weather-snow-scattered.svg │ │ ├── breeze-weather-snow.svg │ │ ├── breeze-weather-storm.svg │ │ ├── breeze-wine.svg │ │ ├── breeze-wrap.svg │ │ ├── breeze-xfig.svg │ │ └── breeze.svg │ │ └── themes │ │ ├── breeze_cursors │ │ ├── cursors │ │ │ ├── 00000000000000020006000e7e9ffc3f │ │ │ ├── 00008160000006810000408080010102 │ │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ │ ├── 3085a0e285430894940527032f8b26df │ │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ │ ├── 9081237383d90e509aa00f00170e968f │ │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ │ ├── alias │ │ │ ├── all-scroll │ │ │ ├── arrow │ │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ │ ├── bottom_left_corner │ │ │ ├── bottom_right_corner │ │ │ ├── bottom_side │ │ │ ├── cell │ │ │ ├── center_ptr │ │ │ ├── circle │ │ │ ├── closedhand │ │ │ ├── col-resize │ │ │ ├── color-picker │ │ │ ├── context-menu │ │ │ ├── copy │ │ │ ├── cross │ │ │ ├── crossed_circle │ │ │ ├── crosshair │ │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ │ ├── default │ │ │ ├── dnd-copy │ │ │ ├── dnd-move │ │ │ ├── dnd-no-drop │ │ │ ├── dnd-none │ │ │ ├── down-arrow │ │ │ ├── draft │ │ │ ├── e-resize │ │ │ ├── e29285e634086352946a0e7090d73106 │ │ │ ├── ew-resize │ │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ │ ├── fleur │ │ │ ├── forbidden │ │ │ ├── grab │ │ │ ├── grabbing │ │ │ ├── h_double_arrow │ │ │ ├── half-busy │ │ │ ├── hand1 │ │ │ ├── hand2 │ │ │ ├── help │ │ │ ├── ibeam │ │ │ ├── left-arrow │ │ │ ├── left_ptr │ │ │ ├── left_ptr_help │ │ │ ├── left_ptr_watch │ │ │ ├── left_side │ │ │ ├── link │ │ │ ├── move │ │ │ ├── n-resize │ │ │ ├── ne-resize │ │ │ ├── nesw-resize │ │ │ ├── no-drop │ │ │ ├── not-allowed │ │ │ ├── ns-resize │ │ │ ├── nw-resize │ │ │ ├── nwse-resize │ │ │ ├── openhand │ │ │ ├── pencil │ │ │ ├── pirate │ │ │ ├── plus │ │ │ ├── pointer │ │ │ ├── pointing_hand │ │ │ ├── progress │ │ │ ├── question_arrow │ │ │ ├── right-arrow │ │ │ ├── right_ptr │ │ │ ├── right_side │ │ │ ├── row-resize │ │ │ ├── s-resize │ │ │ ├── sb_h_double_arrow │ │ │ ├── sb_v_double_arrow │ │ │ ├── se-resize │ │ │ ├── size-bdiag │ │ │ ├── size-fdiag │ │ │ ├── size-hor │ │ │ ├── size-ver │ │ │ ├── size_all │ │ │ ├── size_bdiag │ │ │ ├── size_fdiag │ │ │ ├── size_hor │ │ │ ├── size_ver │ │ │ ├── split_h │ │ │ ├── split_v │ │ │ ├── sw-resize │ │ │ ├── text │ │ │ ├── top_left_arrow │ │ │ ├── top_left_corner │ │ │ ├── top_right_corner │ │ │ ├── top_side │ │ │ ├── up-arrow │ │ │ ├── v_double_arrow │ │ │ ├── vertical-text │ │ │ ├── w-resize │ │ │ ├── wait │ │ │ ├── watch │ │ │ ├── wayland-cursor │ │ │ ├── whats_this │ │ │ ├── x-cursor │ │ │ ├── xterm │ │ │ ├── zoom-in │ │ │ └── zoom-out │ │ └── index.theme │ │ ├── breeze_cursors_dark │ │ ├── cursors │ │ │ ├── 00000000000000020006000e7e9ffc3f │ │ │ ├── 00008160000006810000408080010102 │ │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ │ ├── 3085a0e285430894940527032f8b26df │ │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ │ ├── 9081237383d90e509aa00f00170e968f │ │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ │ ├── alias │ │ │ ├── all-scroll │ │ │ ├── arrow │ │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ │ ├── bottom_left_corner │ │ │ ├── bottom_right_corner │ │ │ ├── bottom_side │ │ │ ├── cell │ │ │ ├── center_ptr │ │ │ ├── circle │ │ │ ├── closedhand │ │ │ ├── col-resize │ │ │ ├── color-picker │ │ │ ├── context-menu │ │ │ ├── copy │ │ │ ├── cross │ │ │ ├── crossed_circle │ │ │ ├── crosshair │ │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ │ ├── default │ │ │ ├── dnd-copy │ │ │ ├── dnd-move │ │ │ ├── dnd-no-drop │ │ │ ├── dnd-none │ │ │ ├── down-arrow │ │ │ ├── draft │ │ │ ├── e-resize │ │ │ ├── e29285e634086352946a0e7090d73106 │ │ │ ├── ew-resize │ │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ │ ├── fleur │ │ │ ├── forbidden │ │ │ ├── grab │ │ │ ├── grabbing │ │ │ ├── h_double_arrow │ │ │ ├── half-busy │ │ │ ├── hand1 │ │ │ ├── hand2 │ │ │ ├── help │ │ │ ├── ibeam │ │ │ ├── left-arrow │ │ │ ├── left_ptr │ │ │ ├── left_ptr_help │ │ │ ├── left_ptr_watch │ │ │ ├── left_side │ │ │ ├── link │ │ │ ├── move │ │ │ ├── n-resize │ │ │ ├── ne-resize │ │ │ ├── nesw-resize │ │ │ ├── no-drop │ │ │ ├── not-allowed │ │ │ ├── ns-resize │ │ │ ├── nw-resize │ │ │ ├── nwse-resize │ │ │ ├── openhand │ │ │ ├── pencil │ │ │ ├── pirate │ │ │ ├── plus │ │ │ ├── pointer │ │ │ ├── pointing_hand │ │ │ ├── progress │ │ │ ├── question_arrow │ │ │ ├── right-arrow │ │ │ ├── right_ptr │ │ │ ├── right_side │ │ │ ├── row-resize │ │ │ ├── s-resize │ │ │ ├── sb_h_double_arrow │ │ │ ├── sb_v_double_arrow │ │ │ ├── se-resize │ │ │ ├── size-bdiag │ │ │ ├── size-fdiag │ │ │ ├── size-hor │ │ │ ├── size-ver │ │ │ ├── size_all │ │ │ ├── size_bdiag │ │ │ ├── size_fdiag │ │ │ ├── size_hor │ │ │ ├── size_ver │ │ │ ├── split_h │ │ │ ├── split_v │ │ │ ├── sw-resize │ │ │ ├── text │ │ │ ├── top_left_arrow │ │ │ ├── top_left_corner │ │ │ ├── top_right_corner │ │ │ ├── top_side │ │ │ ├── up-arrow │ │ │ ├── v_double_arrow │ │ │ ├── vertical-text │ │ │ ├── w-resize │ │ │ ├── wait │ │ │ ├── watch │ │ │ ├── wayland-cursor │ │ │ ├── whats_this │ │ │ ├── x-cursor │ │ │ ├── xterm │ │ │ ├── zoom-in │ │ │ └── zoom-out │ │ └── index.theme │ │ ├── cursor │ │ ├── breeze_cursors │ │ └── breeze_cursors_dark │ │ └── icon │ │ └── breeze └── org.python │ ├── code │ └── python.py │ ├── control │ ├── compile │ ├── list │ └── manifest │ └── data │ └── usr │ ├── app │ └── empty │ └── share │ ├── applications │ └── python.desk │ └── icons │ └── python.svg ├── requirements.txt ├── rootcopy ├── etc │ ├── bash.bashrc │ ├── issue │ ├── issue.net │ └── os-release ├── root │ └── .xinitrc └── usr │ └── bin │ └── pyabr ├── rps ├── Command Prompt.py ├── CreateAccount.py ├── Disks │ └── empty ├── Etc │ └── Users │ │ ├── 07cd55c7b42715ec44c133a6a165e8d2.json │ │ └── empty ├── Launch-XSDL.py ├── Launch.py └── README.md ├── scripts ├── debian-amd64.sh └── debian-arm64.sh ├── upgrade.sa └── wheel ├── setup-installer.py ├── setup-pack.py └── setup.zip /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | custom: https://javad.tech/donate 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to contributing in pyabr ? 2 | 3 | 1. Fork project to your repository 4 | 2. Clone forked project in your local 5 | 3. Change your branch to `dev` 6 | 4. Work on project then push on your forked repository 7 | 5. Send **Pull Request** for review and merge to project -------------------------------------------------------------------------------- /build-date.txt: -------------------------------------------------------------------------------- 1 | 1400-12-27 -------------------------------------------------------------------------------- /cloudprotocol/counter.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudprotocol/live/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mirror.txt: -------------------------------------------------------------------------------- 1 | https://mirror.pyabr.ir/zayanderoad/ -------------------------------------------------------------------------------- /packs/game.mines/control/compile: -------------------------------------------------------------------------------- 1 | mines.py:usr/games/mines.pyc -------------------------------------------------------------------------------- /packs/game.mines/control/manifest: -------------------------------------------------------------------------------- 1 | name: game.mines 2 | name[fa]: مین ها 3 | name[en]: Mines 4 | copyright: (c) 2022 Martin Fitzpatrick 5 | license: MIT 6 | unpack: / 7 | version: 2.0.0 8 | description: Mines Game 9 | compile: Yes 10 | build: 1400-12-26 11 | mirror: https://mirror.pyabr.ir/zayanderoad/ -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/bomb.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/bug.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/cactus.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/cake.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/clock-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/clock-select.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/cross.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/cup.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/flag.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/fruit.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/hamburger.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/ice-cream-sprinkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/ice-cream-sprinkles.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/mushroom.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/plus.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/rocket.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/smiley-lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/smiley-lol.png -------------------------------------------------------------------------------- /packs/game.mines/data/usr/share/icons/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/game.mines/data/usr/share/icons/smiley.png -------------------------------------------------------------------------------- /packs/io.mpv/control/compile: -------------------------------------------------------------------------------- 1 | mpv.py:usr/app/mpv.pyc -------------------------------------------------------------------------------- /packs/io.mpv/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/mpv.qml 2 | usr/share/applications/mpv.desk 3 | usr/app/empty 4 | usr/app/mpv.pyc 5 | -------------------------------------------------------------------------------- /packs/io.mpv/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/io.mpv/data/usr/app/empty -------------------------------------------------------------------------------- /packs/io.mpv/data/usr/share/applications/mpv.desk: -------------------------------------------------------------------------------- 1 | name[en]: Video player 2 | name[fa]: پخش کننده ویدئو 3 | name[ar]: مشغل الفيلم 4 | name[tr]: film oynatıcı 5 | name[de]: MPV-Videoplayer 6 | name[cn]: 视频播放器 7 | name[ru]: Видео-плеер 8 | logo: @icon/mpv 9 | exec: mpv 10 | application: Yes 11 | hidden: No 12 | category: multimedia 13 | pin: No -------------------------------------------------------------------------------- /packs/ir.pyabr.ayene/control/compile: -------------------------------------------------------------------------------- 1 | ayene.py:usr/app/ayene.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.ayene/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/ayene.qml 2 | usr/share/applications/ayene.desk 3 | usr/app/empty 4 | usr/app/ayene.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.ayene/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.ayene/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.ayene/data/usr/share/applications/ayene.desk: -------------------------------------------------------------------------------- 1 | name[en]: Mirror 2 | name[fa]: آینه 3 | name[ar]: مرآة 4 | name[tr]: Ayna 5 | name[de]: Spiegel 6 | name[cn]: 镜子 7 | name[ru]: Зеркало 8 | logo: @icon/mirror 9 | exec: ayene 10 | application: Yes 11 | hidden: No 12 | category: multimedia 13 | pin: No -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/control/compile: -------------------------------------------------------------------------------- 1 | baad.py:usr/app/baad.pyc 2 | baadcli.py:usr/app/baadcli.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_BlackClouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_BlackClouds.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Clear.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Clouds.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_FewClouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_FewClouds.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Fog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Fog.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Forzen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Forzen.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Hails.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Hails.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Rain.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.baad/data/usr/share/backgrounds/BaaD_Snow.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/code/refresh.py: -------------------------------------------------------------------------------- 1 | from pyabr.core import * 2 | 3 | app.signal('desk') 4 | app.signal('apps') -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/control/compile: -------------------------------------------------------------------------------- 1 | baran.py:usr/app/baran.pyc 2 | rma.py:usr/app/rma.pyc 3 | kma.py:usr/app/kma.pyc 4 | refresh.py:usr/app/refresh.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/etc/feeds.list: -------------------------------------------------------------------------------- 1 | https://zoomit.ir/feed/ -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/app/wifi_app.sa: -------------------------------------------------------------------------------- 1 | controls network -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/applications/kma.desk: -------------------------------------------------------------------------------- 1 | name[en]: Kill Windows 2 | logo: @icon/breeze-app 3 | exec: kma 4 | application: No 5 | hidden: Yes 6 | category: tools 7 | pin: No -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/applications/rma.desk: -------------------------------------------------------------------------------- 1 | name[en]: Restore Windows 2 | logo: @icon/breeze-app 3 | exec: rma 4 | application: No 5 | hidden: Yes 6 | category: tools 7 | pin: No -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/applications/wifi.desk: -------------------------------------------------------------------------------- 1 | name[en]: WiFi 2 | logo: @icon/breeze-w100 3 | exec: wifi_app 4 | application: No 5 | hidden: Yes 6 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/develop.cat: -------------------------------------------------------------------------------- 1 | name[en]: Development 2 | name[fa]: توسعه 3 | name[ar]: تطوير -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/games.cat: -------------------------------------------------------------------------------- 1 | name[en]: Games 2 | name[fa]: بازی ها 3 | name[ar]: ألعاب -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/internet.cat: -------------------------------------------------------------------------------- 1 | name[en]: Internet 2 | name[fa]: اینترنت 3 | name[ar]: إنترنت -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/multimedia.cat: -------------------------------------------------------------------------------- 1 | name[en]: Multi Media 2 | name[fa]: چند رسانه ای 3 | name[ar]: الوسائط المتعددة -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/others.cat: -------------------------------------------------------------------------------- 1 | name[en]: Others 2 | name[fa]: دیگر 3 | name[ar]: آحرون -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/system.cat: -------------------------------------------------------------------------------- 1 | name[en]: System 2 | name[fa]: برنامه های سیستمی 3 | name[ar]: تطبيقات النظام -------------------------------------------------------------------------------- /packs/ir.pyabr.baran/data/usr/share/categories/tools.cat: -------------------------------------------------------------------------------- 1 | name[en]: Tools 2 | name[fa]: ابزارها 3 | name[ar]: أدوات -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/code/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.barf/code/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.barf 2 | name[en]: Barf shell theme 3 | name[fa]: پوسته برف 4 | copyright: (c) 2022 Mani Jamali 5 | license: GNU GPL v3.0 6 | unpack: / 7 | version: 1.0.2 8 | description: Default shell theme for Pyabr 9 | compile: No 10 | logo.inside: @icon/theme 11 | screenshots: No 12 | 13 | build: 1400-12-26 14 | mirror: https://mirror.pyabr.ir/zayanderoad/ -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/data/usr/share/backgrounds/Sunset_and_sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.barf/data/usr/share/backgrounds/Sunset_and_sea.jpg -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/data/usr/share/themes/qml/barf: -------------------------------------------------------------------------------- 1 | name[en]: Snow theme 2 | name[fa]: پوسته برف 3 | logo: @icon/theme -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/data/usr/share/themes/qml/barf-dark: -------------------------------------------------------------------------------- 1 | name[en]: Snow theme (Dark) 2 | name[fa]: پوسته برف (تاریک) 3 | logo: @icon/theme -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/data/usr/share/themes/shell/barf: -------------------------------------------------------------------------------- 1 | name[en]: Snow theme 2 | name[fa]: پوسته برف 3 | logo: @icon/theme -------------------------------------------------------------------------------- /packs/ir.pyabr.barf/data/usr/share/themes/shell/barf-dark: -------------------------------------------------------------------------------- 1 | name[en]: Snow theme (Dark) 2 | name[fa]: پوسته برف (تاریک) 3 | logo: @icon/theme -------------------------------------------------------------------------------- /packs/ir.pyabr.barge/control/compile: -------------------------------------------------------------------------------- 1 | barge.py:usr/app/barge.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.barge/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/barge.qml 2 | usr/share/applications/barge.desk 3 | usr/app/empty 4 | usr/app/barge.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.barge/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.barge/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.barge/data/usr/share/applications/barge.desk: -------------------------------------------------------------------------------- 1 | name[en]: Text Editor 2 | name[fa]: برگه 3 | name[ar]: محرر النص 4 | name[tr]: Metin düzeltici 5 | name[de]: Texteditor 6 | name[cn]: 文本编辑器 7 | name[ru]: Текстовый редактор 8 | logo: @icon/barge 9 | exec: barge 10 | shortcut: Ctrl+Alt+B 11 | application: Yes 12 | hidden: No 13 | category: tools 14 | pin: No -------------------------------------------------------------------------------- /packs/ir.pyabr.calculator/control/compile: -------------------------------------------------------------------------------- 1 | calculator.py:usr/app/calculator.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.calculator/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/calculator.qml 2 | usr/share/applications/calculator.desk 3 | usr/app/empty 4 | usr/app/calculator.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.calculator/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.calculator/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.calculator/data/usr/share/applications/calculator.desk: -------------------------------------------------------------------------------- 1 | name[en]: Calculator 2 | name[fa]: ماشین حساب 3 | name[ar]: آلة حاسبة 4 | name[tr]: hesap makinesi 5 | name[de]: Taschenrechner 6 | name[cn]: 计算器 7 | name[ru]: калькулятор 8 | logo: @icon/calculator 9 | exec: calculator 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.calendar/control/compile: -------------------------------------------------------------------------------- 1 | calendar_app.py:usr/app/calendar_app.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.calendar/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/PersianCalendar.qml 2 | usr/share/layouts/PersianCalendarStyle.qml 3 | usr/share/layouts/calendar.qml 4 | usr/share/applications/calendar.desk 5 | usr/app/empty 6 | usr/app/calendar_app.pyc 7 | -------------------------------------------------------------------------------- /packs/ir.pyabr.calendar/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.calendar/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.calendar/data/usr/share/applications/calendar.desk: -------------------------------------------------------------------------------- 1 | name[en]: Calendar 2 | name[fa]: تقویم 3 | name[ar]: التقويم 4 | name[tr]: takvim 5 | name[de]: Kalender 6 | name[cn]: 日历 7 | name[ru]: календарь 8 | logo: @icon/calendar 9 | exec: calendar_app 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.chat/control/compile: -------------------------------------------------------------------------------- 1 | chat.py:usr/app/chat.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.chat/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/Chats.qml 2 | usr/share/layouts/ChannelConnector.qml 3 | usr/share/layouts/Contacts.qml 4 | usr/share/layouts/chat.qml 5 | usr/share/applications/chat.desk 6 | usr/app/empty 7 | usr/app/chat.pyc 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr.chat/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.chat/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.chat/data/usr/share/applications/chat.desk: -------------------------------------------------------------------------------- 1 | name[en]: Chat 2 | name[fa]: پیام رسان 3 | name[ar]: دردشة 4 | name[tr]: sohbet etmek 5 | logo: @icon/chat 6 | exec: chat 7 | application: Yes 8 | category: internet -------------------------------------------------------------------------------- /packs/ir.pyabr.clock/control/compile: -------------------------------------------------------------------------------- 1 | clock.py:usr/app/clock.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.clock/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/clock.qml 2 | usr/share/layouts/AnalogClock.qml 3 | usr/share/layouts/AnalogClockLight.qml 4 | usr/share/images/clock-face-light.png 5 | usr/share/images/clock-face.png 6 | usr/share/applications/clock.desk 7 | usr/app/empty 8 | usr/app/clock.pyc 9 | -------------------------------------------------------------------------------- /packs/ir.pyabr.clock/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.clock/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.clock/data/usr/share/applications/clock.desk: -------------------------------------------------------------------------------- 1 | name[en]: Clock 2 | name[fa]: ساعت 3 | name[ar]: ساعة 4 | name[tr]: saat 5 | name[de]: Uhr 6 | name[cn]: 钟 7 | name[ru]: Часы 8 | logo: @icon/clock 9 | exec: clock 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.clock/data/usr/share/images/clock-face-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.clock/data/usr/share/images/clock-face-light.png -------------------------------------------------------------------------------- /packs/ir.pyabr.clock/data/usr/share/images/clock-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.clock/data/usr/share/images/clock-face.png -------------------------------------------------------------------------------- /packs/ir.pyabr.commento/control/compile: -------------------------------------------------------------------------------- 1 | commento.py:usr/app/commento.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.commento/control/list: -------------------------------------------------------------------------------- 1 | usr/share/applications/commento.desk 2 | usr/app/empty 3 | usr/app/commento.pyc 4 | -------------------------------------------------------------------------------- /packs/ir.pyabr.commento/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.commento/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.commento/data/usr/share/applications/commento.desk: -------------------------------------------------------------------------------- 1 | name[en]: Terminal 2 | name[fa]: پایانه 3 | name[ar]: طرفية 4 | name[tr]: terminal 5 | name[de]: Terminal 6 | name[cn]: 终端 7 | name[ru]: Терминал 8 | logo: @icon/commento 9 | exec: commento 10 | shortcut: Ctrl+Alt+C 11 | application: Yes 12 | category: system 13 | pin: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr.controls/control/compile: -------------------------------------------------------------------------------- 1 | controls.py:usr/app/controls.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.controls/data/usr/app/appearanc.sa: -------------------------------------------------------------------------------- 1 | controls apper -------------------------------------------------------------------------------- /packs/ir.pyabr.controls/data/usr/app/displaymanager.sa: -------------------------------------------------------------------------------- 1 | controls display -------------------------------------------------------------------------------- /packs/ir.pyabr.controls/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.controls/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.controls/data/usr/share/applications/appearanc.desk: -------------------------------------------------------------------------------- 1 | name[en]: Appearanc 2 | logo: @icon/setting 3 | exec: appearanc 4 | application: No 5 | hidden: Yes 6 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.controls/data/usr/share/applications/displaymanager.desk: -------------------------------------------------------------------------------- 1 | name[en]: Display Manager 2 | logo: @icon/setting 3 | exec: displaymanager 4 | application: No 5 | hidden: Yes 6 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.copydisk/control/compile: -------------------------------------------------------------------------------- 1 | copydisk.py:usr/app/copydisk.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.copydisk/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/copydisk.qml 2 | usr/share/applications/copydisk.desk 3 | usr/app/empty 4 | usr/app/copydisk.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.copydisk/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.copydisk/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.copydisk/data/usr/share/applications/copydisk.desk: -------------------------------------------------------------------------------- 1 | name[en]: Copydisk 2 | name[fa]: کپی دیسک 3 | name[ar]: نسخ 4 | name[tr]: kopyalama diski 5 | name[de]: Datenträger kopieren 6 | name[cn]: 复制盘 7 | name[ru]: Копидиск 8 | logo: @icon/copydisk 9 | exec: copydisk 10 | application: Yes 11 | category: tools 12 | -------------------------------------------------------------------------------- /packs/ir.pyabr.dmgr/control/compile: -------------------------------------------------------------------------------- 1 | dmgr.py:usr/app/dmgr.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.dmgr/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/dmgr.qml 2 | usr/share/applications/dmgr.desk 3 | usr/app/empty 4 | usr/app/dmgr.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.dmgr/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.dmgr/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.dmgr/data/usr/share/applications/dmgr.desk: -------------------------------------------------------------------------------- 1 | name[en]: Downloads 2 | name[fa]: دانلودها 3 | name[ar]: التحميل 4 | name[tr]: İndirilenler 5 | name[de]: Downloads 6 | name[cn]: 下载 7 | name[ru]: загрузки 8 | logo: @icon/dmgr 9 | exec: dmgr 10 | application: Yes 11 | category: internet -------------------------------------------------------------------------------- /packs/ir.pyabr.farayand/control/compile: -------------------------------------------------------------------------------- 1 | farayand.py:usr/app/farayand.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.farayand/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/farayand.qml 2 | usr/share/applications/farayand.desk 3 | usr/app/empty 4 | usr/app/farayand.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.farayand/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.farayand/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.farayand/data/usr/share/applications/farayand.desk: -------------------------------------------------------------------------------- 1 | name[en]: System Monitor 2 | name[fa]: فرآیندها 3 | name[ar]: ادارة العمليات 4 | name[tr]: Süreç yönetimi 5 | name[de]: Systemmonitor 6 | name[cn]: 系统监视器 7 | name[ru]: системный монитор 8 | logo: @icon/process 9 | exec: farayand 10 | application: Yes 11 | category: system 12 | pin: No -------------------------------------------------------------------------------- /packs/ir.pyabr.files/control/compile: -------------------------------------------------------------------------------- 1 | files.py:usr/app/files.pyc 2 | drives.py:usr/app/drives.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.files/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/drives.qml 2 | usr/share/layouts/files.qml 3 | usr/share/applications/files.desk 4 | usr/share/applications/drives.desk 5 | usr/app/empty 6 | usr/app/files.pyc 7 | usr/app/drives.pyc 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr.files/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.files/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.files/data/usr/share/applications/drives.desk: -------------------------------------------------------------------------------- 1 | name[en]: Drives 2 | name[fa]: درایو ها 3 | name[ar]: محرکات 4 | name[tr]: Sürücüler 5 | name[de]: Fährt 6 | name[cn]: 驱动器 7 | name[ru]: диски 8 | logo: @icon/disk 9 | exec: drives 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.files/data/usr/share/applications/files.desk: -------------------------------------------------------------------------------- 1 | name[en]: Files 2 | name[fa]: فایل ها 3 | name[ar]: الملفات 4 | name[tr]: Dosyalar 5 | name[de]: Dateien 6 | name[cn]: 文件 7 | name[ru]: файлы 8 | logo: @icon/roller 9 | exec: files 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.help/code/onlinesupport.py: -------------------------------------------------------------------------------- 1 | from pyabr.core import * 2 | app.browser('https://www.goftino.com/c/eBF5N8','@icon/help','Online Support') -------------------------------------------------------------------------------- /packs/ir.pyabr.help/control/compile: -------------------------------------------------------------------------------- 1 | onlinesupport.py:usr/app/onlinesupport.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.help/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/applications/help.desk: -------------------------------------------------------------------------------- 1 | name[en]: Online support 2 | name[fa]: پشتیبانی آنلاین 3 | name[ar]: الدعم عبر الإنترنت 4 | name[tr]: Çevrimiçi destek 5 | name[cn]: 帮助 6 | name[ru]: помощь 7 | logo: @icon/help 8 | exec: onlinesupport 9 | application: Yes 10 | category: internet 11 | pin: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/add.md: -------------------------------------------------------------------------------- 1 | # add 2 | 3 | ### Usage 4 | Insert all records in your selected database from another database. 5 | 6 | ### Options 7 | ``` 8 | add [database] ... 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: 14 | ``` 15 | add /foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/bunzip.md: -------------------------------------------------------------------------------- 1 | # bunzip 2 | 3 | ### Usage 4 | Extract `tar.bz2` archive files. 5 | 6 | ### Options 7 | ``` 8 | bunzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: 14 | ``` 15 | bunzip foo.tar.bz2 bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/bzip.md: -------------------------------------------------------------------------------- 1 | # bzip 2 | 3 | ### Usage 4 | Compress directories as `tar.bz2` compress file. 5 | 6 | ### Options 7 | ``` 8 | bzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: 14 | ``` 15 | bzip foo bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/cd.md: -------------------------------------------------------------------------------- 1 | # cd 2 | 3 | ### Usage 4 | Change current directory. 5 | 6 | ### Options 7 | ``` 8 | cd [dir] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: Jump to `/foo` directory: 13 | ``` 14 | cd /foo 15 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/check.md: -------------------------------------------------------------------------------- 1 | # check 2 | 3 | ### Usage 4 | Check/Show permissions. 5 | 6 | ### Options 7 | ``` 8 | check [directory/file] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | ``` 14 | check /foo.bar 15 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/chown.md: -------------------------------------------------------------------------------- 1 | # chown 2 | 3 | ### Usage 4 | Change directory/file ownership. 5 | 6 | ### Options 7 | ``` 8 | chown [user] [directory/file] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Change ownership to `foo` user: 14 | ``` 15 | chown foo bar.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/clean.md: -------------------------------------------------------------------------------- 1 | # clean 2 | 3 | ### Usage 4 | Clean all variables in selected database or switched process. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/clear.md: -------------------------------------------------------------------------------- 1 | # clear 2 | 3 | ### Usage 4 | Clear screen -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/cp.md: -------------------------------------------------------------------------------- 1 | # cp 2 | 3 | ### Usage 4 | Copy directories/files 5 | 6 | ### Options 7 | > If src is file, dest will be file. 8 | 9 | > If src is directory, dest will be directory. 10 | 11 | ``` 12 | cp [src] [dest] 13 | ``` 14 | 15 | ### Example 16 | - **Example 1**: 17 | ``` 18 | cp /foo /bar 19 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/date.md: -------------------------------------------------------------------------------- 1 | # date 2 | 3 | ### Usage 4 | Show current date and time. 5 | 6 | ### Options 7 | ``` 8 | date [ZONE] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | ``` 14 | date 15 | date Asia/Tehran 16 | date UTC 17 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/down.md: -------------------------------------------------------------------------------- 1 | # down 2 | 3 | ### Usage 4 | Down file from cloud drive. 5 | 6 | ### Options 7 | ``` 8 | down [filename] ... 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Download `foo.bar` from cloud drive 14 | ``` 15 | down foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/getv.md: -------------------------------------------------------------------------------- 1 | # getv 2 | 3 | ### Usage 4 | Get all informations in `/proc/info` and save them in switched process or selected database. 5 | 6 | ### Example 7 | - **Example 1**: 8 | 9 | - Show kernel name 10 | ``` 11 | getv 12 | echo :kname 13 | ``` 14 | - output: 15 | ``` 16 | Linux 17 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/gunzip.md: -------------------------------------------------------------------------------- 1 | # gunzip 2 | 3 | ### Usage 4 | Extract `tar.gz` archive files. 5 | 6 | ### Options 7 | ``` 8 | gunzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | gunzip foo.tar.gz bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/gzip.md: -------------------------------------------------------------------------------- 1 | # gzip 2 | 3 | ### Usage 4 | Compress directories as `tar.gz` compress file. 5 | 6 | ### Options 7 | ``` 8 | gzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | gzip foo bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/logout.md: -------------------------------------------------------------------------------- 1 | # logout 2 | 3 | ### Usage 4 | Exit and esacpe from shell prompt and switched user. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/mv.md: -------------------------------------------------------------------------------- 1 | # mv 2 | 3 | ### Usage 4 | Move or rename directories/files 5 | 6 | ### Options 7 | > If src is file, dest will be file. 8 | 9 | > If src is directory, dest will be directory. 10 | 11 | ``` 12 | mv [src] [dest] 13 | ``` 14 | 15 | ### Example 16 | - **Example 1**: 17 | ``` 18 | mv /foo /bar 19 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/new.md: -------------------------------------------------------------------------------- 1 | # new 2 | 3 | ### Usage 4 | Open a new switched process (Reopen Terminal). -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/passwd.md: -------------------------------------------------------------------------------- 1 | # passwd 2 | 3 | ### Usage 4 | Change password of an user account. 5 | 6 | ### Options 7 | - **Example 1**: 8 | ``` 9 | passwd [user] 10 | > [Password] 11 | > [Confirm] 12 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/pause.md: -------------------------------------------------------------------------------- 1 | # pause 2 | 3 | ### Usage 4 | Pause the console. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/push.md: -------------------------------------------------------------------------------- 1 | # push 2 | 3 | ### Usage 4 | Push Pyabr Package Archive (`.pa`) files to own repo. 5 | 6 | ### Options 7 | ``` 8 | push [filename] ... 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Generate direct download link of `foo.bar` package 14 | ``` 15 | push foo.bar.pa 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/pwd.md: -------------------------------------------------------------------------------- 1 | # pwd 2 | 3 | ### Usage 4 | Show current path. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/read.md: -------------------------------------------------------------------------------- 1 | # read 2 | 3 | ### Usage 4 | Input a variable. 5 | 6 | ### Options 7 | ``` 8 | read [variable] ... 9 | ``` 10 | 11 | ### Examples 12 | 13 | - **Example 1**: 14 | ``` 15 | say Age: 16 | read age 17 | echo Your age is :age 18 | ``` 19 | - output: 20 | ``` 21 | Age: 12 22 | Your age is 12 23 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/reboot.md: -------------------------------------------------------------------------------- 1 | # reboot 2 | 3 | ### Usage 4 | Restart the operating system. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/rm.md: -------------------------------------------------------------------------------- 1 | # rm 2 | 3 | ### Usage 4 | Remove files or directories. 5 | 6 | ### Options 7 | ``` 8 | rm [directory/file] ... 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: 14 | ``` 15 | rm /foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/sel.md: -------------------------------------------------------------------------------- 1 | # sel 2 | 3 | ### Usage 4 | Select a database table. 5 | 6 | ### Options 7 | ``` 8 | sel [database] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | sel /foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/shut.md: -------------------------------------------------------------------------------- 1 | # shut 2 | 3 | ### Usage 4 | Close and exit from switched process. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/shutdown.md: -------------------------------------------------------------------------------- 1 | # shutdown 2 | 3 | ### Usage 4 | Shutdown the operating system. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/sleep.md: -------------------------------------------------------------------------------- 1 | # sleep 2 | 3 | ### Usage 4 | Sleep in console. 5 | 6 | ### Options 7 | ``` 8 | sleep [seconds] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Sleep in 3 seconds 14 | ``` 15 | sleep 3 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/su.md: -------------------------------------------------------------------------------- 1 | # su 2 | 3 | ### Usage 4 | Switch another user account. 5 | 6 | ### Options 7 | 8 | ``` 9 | su [user] 10 | > [password] 11 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/sudo.md: -------------------------------------------------------------------------------- 1 | # sudo 2 | 3 | ### Usage 4 | Enable Root access for an one command with `sudo`. 5 | 6 | ### Options 7 | ``` 8 | sudo [command] [args] ... 9 | ``` 10 | 11 | ### Examples 12 | 13 | - **Example 1**: Update Pyabr 14 | ``` 15 | sudo paye up 16 | ``` 17 | 18 | - **Example 2**: Remove your Pyabr 19 | ``` 20 | sudo rm / 21 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/tar.md: -------------------------------------------------------------------------------- 1 | # tar 2 | 3 | ### Usage 4 | Compress directories as `tar` compress file. 5 | 6 | ### Options 7 | ``` 8 | tar [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: 14 | ``` 15 | tar foo bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/touch.md: -------------------------------------------------------------------------------- 1 | # touch 2 | 3 | ### Usage 4 | Create a file. 5 | 6 | ### Options 7 | ``` 8 | touch [filename] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: 14 | ``` 15 | touch /foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/uadd.md: -------------------------------------------------------------------------------- 1 | # uadd 2 | 3 | ### Usage 4 | Create an user account. 5 | 6 | ### Options 7 | ``` 8 | uadd [user] 9 | > [Password] 10 | > [Confirm] 11 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/udel.md: -------------------------------------------------------------------------------- 1 | # uadd 2 | 3 | ### Usage 4 | Remove an user account. 5 | 6 | ### Options 7 | ``` 8 | udel [user] 9 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/uinfo.md: -------------------------------------------------------------------------------- 1 | # uinfo 2 | 3 | ### Usage 4 | Show informations of an user account. 5 | 6 | ### Options 7 | ``` 8 | uinfo [user] 9 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/unlink.md: -------------------------------------------------------------------------------- 1 | # unlink 2 | 3 | ### Usage 4 | Unlink command used for removing files from cloud drive and local drive too. 5 | 6 | ### Options 7 | ``` 8 | unlink [filename] ... 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Remove `foo.bar` from local drive and cloud drive 14 | ``` 15 | unlink foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/unsel.md: -------------------------------------------------------------------------------- 1 | # unsel 2 | 3 | ### Usage 4 | Unselect the selected database table then return to select the switched process. 5 | 6 | ### Example 7 | 8 | - **Example 1**: 9 | ``` 10 | sel /foo.bar 11 | set foo: bar 12 | unsel 13 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/untar.md: -------------------------------------------------------------------------------- 1 | # untar 2 | 3 | ### Usage 4 | Extract `tar` archive files. 5 | 6 | ### Options 7 | ``` 8 | untar [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | untar foo.tar bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/unzip.md: -------------------------------------------------------------------------------- 1 | # unzip 2 | 3 | ### Usage 4 | Extract `zip` archive files. 5 | 6 | ### Options 7 | ``` 8 | unzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | unzip foo.zip bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/up.md: -------------------------------------------------------------------------------- 1 | # up 2 | 3 | ### Usage 4 | Upload file to cloud drive. 5 | 6 | ### Options 7 | ``` 8 | up [filename] ... 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Upload `foo.bar` to cloud drive 14 | ``` 15 | up foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/upv.md: -------------------------------------------------------------------------------- 1 | # upv 2 | 3 | ### Usage 4 | Export all recoreds in selected database to `/proc/info`. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/ver.md: -------------------------------------------------------------------------------- 1 | # ver 2 | 3 | ### Usage 4 | Show informations of operating system. -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/view.md: -------------------------------------------------------------------------------- 1 | # view 2 | 3 | ### Usage 4 | View QML files without programming. 5 | 6 | ### Options 7 | ``` 8 | view [filename].qml 9 | ``` 10 | 11 | ### Examples 12 | - **Example 1**: Show `foo.qml`: 13 | ``` 14 | view foo.qml 15 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/wget.md: -------------------------------------------------------------------------------- 1 | # wget 2 | 3 | ### Usage 4 | Download a file from the Internet. 5 | 6 | ### Options 7 | ``` 8 | wget [url] [filename] 9 | ``` 10 | 11 | ### Example 12 | 13 | - **Example 1**: Download `foo.bar` from the Internet and save it as `foo.bar` in `/` path: 14 | ``` 15 | wget https://foo.com/foo.bar foo.bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/xunzip.md: -------------------------------------------------------------------------------- 1 | # xunzip 2 | 3 | ### Usage 4 | Extract `tar.xz` archive files. 5 | 6 | ### Options 7 | ``` 8 | xunzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | xunzip foo.tar.xz bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/xzip.md: -------------------------------------------------------------------------------- 1 | # xzip 2 | 3 | ### Usage 4 | Compress directories as `tar.xz` compress file. 5 | 6 | ### Options 7 | ``` 8 | xzip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | xzip foo bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.help/data/usr/share/docs/commands/zip.md: -------------------------------------------------------------------------------- 1 | # zip 2 | 3 | ### Usage 4 | Compress directories as `zip` compress file. 5 | 6 | ### Options 7 | ``` 8 | zip [src] [dest] 9 | ``` 10 | 11 | ### Example 12 | - **Example 1**: 13 | 14 | ``` 15 | zip foo bar 16 | ``` -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/control/compile: -------------------------------------------------------------------------------- 1 | jooya.py:usr/app/jooya.pyc 2 | MarkdownViewer.py:usr/app/MarkdownViewer.pyc 3 | HTMLViewer.py:usr/app/HTMLViewer.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.jooya 2 | name[fa]: جویا 3 | name[en]: Jooya 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Jooya lightweight QML based browser 9 | compile: Yes 10 | 11 | build: 1400-12-26 12 | mirror: https://mirror.pyabr.ir/zayanderoad/ -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/bing: -------------------------------------------------------------------------------- 1 | name: Bing 2 | url: https://www.bing.com 3 | qurl: https://www.bing.com/search?q={0} 4 | key: :br -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/brave: -------------------------------------------------------------------------------- 1 | name: Brave 2 | url: https://search.brave.com 3 | qurl: https://search.brave.com/search?q={0}&source=desktop 4 | key: :b -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/duckduckgo: -------------------------------------------------------------------------------- 1 | name: DuckDuckGo 2 | url: https://duckduckgo.com 3 | qurl: https://duckduckgo.com/?q={0} 4 | key: :d -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/ecosia: -------------------------------------------------------------------------------- 1 | name: Ecosia 2 | url: https://www.ecosia.org 3 | qurl: https://www.ecosia.org/search?tt=e8eb07a6&q={0} 4 | key: :e -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/gerdoo: -------------------------------------------------------------------------------- 1 | name: گردو 2 | url: https://gerdoo.me 3 | qurl: https://gerdoo.me/search/?query={0}&t=nd 4 | key: :gr -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/google: -------------------------------------------------------------------------------- 1 | name: Google 2 | url: https://www.google.com 3 | qurl: https://www.google.com/search?q={0} 4 | key: :g -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/qwant: -------------------------------------------------------------------------------- 1 | name: QWant 2 | url: https://www.qwant.com/ 3 | qurl: https://www.qwant.com/?q={0} 4 | key: :q -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/startpage: -------------------------------------------------------------------------------- 1 | name: StartPage 2 | url: https://www.startpage.com/ 3 | qurl: https://www.startpage.com/do/search?q={0} 4 | key: :sp -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/yahoo: -------------------------------------------------------------------------------- 1 | name: Yahoo 2 | url: https://yahoo.com 3 | qurl: https://search.yahoo.com/search?p={0} 4 | key: :y -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/engines/zarebin: -------------------------------------------------------------------------------- 1 | name: ذره بین 2 | url: https://zarebin.ir 3 | qurl: https://zarebin.ir/search?q={0} 4 | key: :br -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/etc/jooya/searchengine: -------------------------------------------------------------------------------- 1 | google -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/usr/share/applications/HTMLViewer.desk: -------------------------------------------------------------------------------- 1 | name[fa]: ابرمتن خوان 2 | name[en]: HTML Viewer 3 | name[ar]: عارض HTML 4 | name[tr]: HTML Görüntüleyici 5 | name[de]: HTML-Viewer 6 | name[cn]: HTML 查看器 7 | name[ru]: Просмотрщик HTML 8 | logo: @icon/file-html 9 | exec: HTMLViewer 10 | application: No 11 | category: tools 12 | hidden: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/usr/share/applications/MarkdownViewer.desk: -------------------------------------------------------------------------------- 1 | name[fa]: مارکدان خوان 2 | name[en]: Markdown Viewer 3 | name[ar]: متصفح مارکدان 4 | name[tr]: İşaretleme Tarayıcısı 5 | name[de]: Markdown-Browser 6 | name[cn]: 降价查看器 7 | name[ru]: Средство просмотра уценки 8 | logo: @icon/file-md 9 | exec: MarkdownViewer 10 | application: No 11 | category: tools 12 | hidden: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr.jooya/data/usr/share/applications/jooya.desk: -------------------------------------------------------------------------------- 1 | name[fa]: جویا 2 | name[en]: Jooya Browser 3 | name[ar]: متصفح جویا 4 | name[tr]: Jooya Tarayıcı 5 | name[de]: Jooya-Browser 6 | name[cn]: 浏览器 7 | name[ru]: Браузер 8 | logo: @icon/breeze-browser 9 | exec: jooya 10 | application: Yes 11 | category: internet -------------------------------------------------------------------------------- /packs/ir.pyabr.nama/control/compile: -------------------------------------------------------------------------------- 1 | nama.py:usr/app/nama.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.nama/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/nama.qml 2 | usr/share/applications/nama.desk 3 | usr/app/empty 4 | usr/app/nama.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.nama/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.nama/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.paye/control/compile: -------------------------------------------------------------------------------- 1 | paye.py:usr/app/paye.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.paye/control/list: -------------------------------------------------------------------------------- 1 | usr/share/helps/paye 2 | usr/app/empty 3 | etc/paye/permanetly_applications 4 | etc/paye/sources 5 | usr/app/paye.pyc 6 | -------------------------------------------------------------------------------- /packs/ir.pyabr.paye/data/etc/paye/permanetly_applications: -------------------------------------------------------------------------------- 1 | ir.pyabr.baran 2 | ir.pyabr.commento 3 | ir.pyabr.updates 4 | ir.pyabr.paye 5 | ir.pyabr 6 | ir.pyabr.breeze-theme -------------------------------------------------------------------------------- /packs/ir.pyabr.paye/data/etc/paye/sources: -------------------------------------------------------------------------------- 1 | ir.pyabr.updates -------------------------------------------------------------------------------- /packs/ir.pyabr.paye/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.paye/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.pishkhan/control/compile: -------------------------------------------------------------------------------- 1 | pishkhan.py:usr/app/pishkhan.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.pishkhan/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/pishkhan.qml 2 | usr/share/applications/pishkhan.desk 3 | usr/app/empty 4 | usr/app/dash.sa 5 | usr/app/dashboard.sa 6 | usr/app/pishkhan.pyc 7 | -------------------------------------------------------------------------------- /packs/ir.pyabr.pishkhan/data/usr/app/dash.sa: -------------------------------------------------------------------------------- 1 | pishkhan -------------------------------------------------------------------------------- /packs/ir.pyabr.pishkhan/data/usr/app/dashboard.sa: -------------------------------------------------------------------------------- 1 | pishkhan -------------------------------------------------------------------------------- /packs/ir.pyabr.pishkhan/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.pishkhan/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.pishkhan/data/usr/share/applications/pishkhan.desk: -------------------------------------------------------------------------------- 1 | name[en]: Dashboard 2 | name[fa]: پیشخان 3 | name[ar]: لوحة القيادة 4 | name[tr]: Gösterge Paneli 5 | name[de]: Armaturenbrett 6 | name[cn]: 仪表板 7 | name[ru]: Панель приборов 8 | logo: @icon/vscode 9 | exec: pishkhan 10 | application: Yes 11 | hidden: No 12 | category: develop -------------------------------------------------------------------------------- /packs/ir.pyabr.pyket/control/compile: -------------------------------------------------------------------------------- 1 | pyket.py:usr/app/pyket.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.pyket/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/pyket.qml 2 | usr/share/applications/pyket.desk 3 | usr/app/empty 4 | usr/app/pyket.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.pyket/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.pyket/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.pyket/data/usr/share/applications/pyket.desk: -------------------------------------------------------------------------------- 1 | name[en]: Store 2 | name[fa]: فروشگاه 3 | name[ar]: متجر 4 | name[tr]: uygulama mağazası 5 | name[de]: Pyabr-Shop 6 | name[cn]: 店铺 7 | name[ru]: Магазин 8 | logo: @icon/paye 9 | exec: pyket 10 | application: No 11 | category: internet -------------------------------------------------------------------------------- /packs/ir.pyabr.pysys/control/compile: -------------------------------------------------------------------------------- 1 | pysys.py:usr/app/pysys.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.pysys/control/list: -------------------------------------------------------------------------------- 1 | usr/share/applications/pysys.desk 2 | usr/app/empty 3 | usr/app/pysys.pyc 4 | -------------------------------------------------------------------------------- /packs/ir.pyabr.pysys/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.pysys/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.pysys/data/usr/share/applications/pysys.desk: -------------------------------------------------------------------------------- 1 | name[en]: Power Options 2 | name[fa]: تنظیمات خاموش/روشن 3 | name[ar]: خيارات الطاقة 4 | name[tr]: Güç seçenekleris 5 | name[de]: Energieeinstellungen 6 | name[cn]: 电源选项 7 | name[ru]: Варианты питания 8 | logo: @icon/pysys 9 | exec: pysys 10 | application: Yes 11 | category: system 12 | pin: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr.raz/control/compile: -------------------------------------------------------------------------------- 1 | raz.py:usr/app/raz.pyc 2 | negar.py:usr/app/negar.pyc 3 | gosha.py:usr/app/gosha.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.raz/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/raz.qml 2 | usr/share/layouts/gosha.qml 3 | usr/share/layouts/negar.qml 4 | usr/share/applications/negar.desk 5 | usr/share/applications/raz.desk 6 | usr/share/applications/gosha.desk 7 | usr/app/raz.pyc 8 | usr/app/negar.pyc 9 | usr/app/gosha.pyc 10 | -------------------------------------------------------------------------------- /packs/ir.pyabr.raz/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.raz 2 | name[fa]: پست ابری 3 | name[en]: Cloud Mail 4 | name[ar]: البريد السحابي 5 | name[tr]: bulut posta 6 | copyright: (c) 2022 Mani Jamali 7 | license: GNU GPL v3.0 8 | unpack: / 9 | version: 1.0.0 10 | description: Cloud Encrypted Mail 11 | compile: Yes 12 | 13 | build: 1400-12-26 14 | mirror: https://mirror.pyabr.ir/zayanderoad/ -------------------------------------------------------------------------------- /packs/ir.pyabr.raz/data/usr/share/applications/gosha.desk: -------------------------------------------------------------------------------- 1 | name[fa]: رمزگشایی 2 | name[en]: Decryptor 3 | name[ar]: فك التشفير 4 | name[tr]: şifre çözme 5 | name[de]: Entschlüsseler 6 | name[cn]: 解密器 7 | name[ru]: Расшифровщик 8 | logo: @icon/chat 9 | exec: gosha 10 | application: No 11 | hidden: Yes 12 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.raz/data/usr/share/applications/negar.desk: -------------------------------------------------------------------------------- 1 | name[fa]: رمزنگار 2 | name[en]: Cryptographer 3 | name[ar]: التشفير 4 | name[tr]: kriptograf 5 | name[de]: Kryptograf 6 | name[cn]: 密码学家 7 | name[ru]: Криптограф 8 | logo: @icon/chat 9 | exec: negar 10 | application: No 11 | hidden: Yes 12 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.raz/data/usr/share/applications/raz.desk: -------------------------------------------------------------------------------- 1 | name[fa]: پست ابری 2 | name[en]: Cloud Mail 3 | name[ar]: البريد السحابي 4 | name[tr]: bulut posta 5 | name[de]: Cloud-Mail 6 | name[cn]: 云邮件 7 | name[ru]: облачная почта 8 | logo: @icon/chat 9 | exec: raz 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.runapp/control/compile: -------------------------------------------------------------------------------- 1 | runapp.py:usr/app/runapp.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.runapp/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/runapp.qml 2 | usr/share/applications/runapp.desk 3 | usr/app/empty 4 | usr/app/runapp.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.runapp/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.runapp/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/control/compile: -------------------------------------------------------------------------------- 1 | sample.py:usr/app/sample.pyc 2 | debug.py:usr/app/debug.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.sample/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/applications/debug.desk: -------------------------------------------------------------------------------- 1 | name[en]: Debug Application 2 | name[fa]: برنامه دیباگی 3 | name[ar]: تطبيق التصحيح 4 | name[tr]: hata ayıklamas 5 | name[de]: Anwendung debuggen 6 | name[cn]: 调试应用程序 7 | name[ru]: Отладка приложения 8 | logo: @icon/app 9 | exec: debug 10 | application: No 11 | hidden: Yes 12 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/applications/sample.desk: -------------------------------------------------------------------------------- 1 | name[en]: Sample Application 2 | name[fa]: برنامه نمونه 3 | name[ar]: تطبيق العينة 4 | name[tr]: örneklem 5 | name[de]: Musteranwendung 6 | name[cn]: 示例应用程序 7 | name[ru]: образец заявления 8 | logo: @icon/app 9 | exec: sample 10 | application: No 11 | hidden: Yes 12 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/ir.pyabr.hello/code/hello.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf ("Hello World!\n"); 6 | return 0; 7 | } -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.c:usr/app/hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/c-console/publish.sa: -------------------------------------------------------------------------------- 1 | add config 2 | push :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/ir.pyabr.hello/code/hello.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() 6 | { 7 | cout << "Hello World!" << endl; 8 | return 0; 9 | } -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.cpp:usr/app/hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/cpp-console/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Audios/.logo: -------------------------------------------------------------------------------- 1 | @icon/audios -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Desktop/.logo: -------------------------------------------------------------------------------- 1 | @icon/desktop -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Documents/.logo: -------------------------------------------------------------------------------- 1 | @icon/documents -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Downloads/.logo: -------------------------------------------------------------------------------- 1 | @icon/downloads -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Pictures/.logo: -------------------------------------------------------------------------------- 1 | @icon/pictures -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Projects/.logo: -------------------------------------------------------------------------------- 1 | @icon/projects -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Samples/.logo: -------------------------------------------------------------------------------- 1 | @icon/templates -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/deskdirs/Vidoes/.logo: -------------------------------------------------------------------------------- 1 | @icon/videos -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/ir.pyabr.hello/code/hello.has: -------------------------------------------------------------------------------- 1 | function main(argv:[string]) : int { 2 | print("Hello World!") 3 | return 0 4 | } -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.has:usr/app/hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/hascal-console/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: No 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/pashmak-console/ir.pyabr.hello/data/usr/app/hello.pashm: -------------------------------------------------------------------------------- 1 | println("Hello from Pyabr!") -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/ir.pyabr.hello/code/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello from Pyabr!") -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.py:usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-console/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/ir.pyabr.hello/code/hello.py: -------------------------------------------------------------------------------- 1 | from pyabr.core import * 2 | from pyabr.quick import * 3 | 4 | class MainApp(QtWidgets.QMainWindow): 5 | def __init__(self): 6 | super(MainApp, self).__init__() 7 | 8 | self.show() 9 | 10 | application = QtWidgets.QApplication([]) 11 | w = MainApp() 12 | application.exec() -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.py:usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc 2 | usr/share/applications/hello.desk -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-qt/ir.pyabr.hello/data/usr/share/applications/hello.desk: -------------------------------------------------------------------------------- 1 | name[en]: Hello 2 | name[fa]: سلام 3 | name[ar]: سلام 4 | logo: @icon/breeze-app 5 | exec: hello 6 | application: Yes 7 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/ir.pyabr.hello/code/hello.py: -------------------------------------------------------------------------------- 1 | from pyabr.core import * 2 | from pyabr.quick import * 3 | 4 | class MainApp(MainApp): 5 | def __init__(self): 6 | super(MainApp, self).__init__() 7 | 8 | self.load (res.get('@layout/hello')) 9 | 10 | application = QtGui.QGuiApplication([]) 11 | w = MainApp() 12 | application.exec() -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.py:usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc 2 | usr/share/applications/hello.desk 3 | usr/share/layouts/hello.qml -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-quick/ir.pyabr.hello/data/usr/share/applications/hello.desk: -------------------------------------------------------------------------------- 1 | name[en]: Hello 2 | name[fa]: سلام 3 | name[ar]: سلام 4 | logo: @icon/breeze-app 5 | exec: hello 6 | application: Yes 7 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/ir.pyabr.hello/code/hello.py: -------------------------------------------------------------------------------- 1 | from pyabr.core import * 2 | 3 | app.browser('https://pyabr.ir') -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/ir.pyabr.hello/control/compile: -------------------------------------------------------------------------------- 1 | hello.py:usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/python-webapp/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: Yes 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample-quick.py: -------------------------------------------------------------------------------- 1 | from pyabr.core import * 2 | from pyabr.quick import * 3 | 4 | class MainApp(MainApp): 5 | def __init__(self, ports): 6 | super(MainApp, self).__init__() 7 | 8 | self.load (res.get('@layout/app')) 9 | 10 | application = QtGui.QGuiApplication([]) 11 | w = MainApp() 12 | application.exec() -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main () 4 | { 5 | puts ("Welcome to Pyabr with C programing language."); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main () 6 | { 7 | cout << "Welcome to Pyabr with C++ programing language." << endl; 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MyWelcomeApp 4 | { 5 | public class MainApp 6 | { 7 | public static void Main (string[] args) 8 | { 9 | Console.WriteLine ("Welcome to Pyabr with C# programing language."); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.has: -------------------------------------------------------------------------------- 1 | function main(argv:[string]) : int { 2 | print("Hello World!") 3 | return 0 4 | } -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Welcome 5 | 6 | 7 | 8 |

Welcome to Pyabr with HyperText markup language.

9 | 10 | -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.java: -------------------------------------------------------------------------------- 1 | class MainApp 2 | { 3 | pubic static void main (String[] args) 4 | { 5 | System.out.println ("Welcome to Pyabr with Java programing language."); 6 | } 7 | } -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.js: -------------------------------------------------------------------------------- 1 | window.alert ("Welcome to Pyabr with Javascript programing language."); -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.lua: -------------------------------------------------------------------------------- 1 | io.write("Welcome to Pyabr with Lua programing language.".."\n") 2 | -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Welcome 5 | 6 | 7 | 8 | Welcome to Pyabr with PHP programing language.

";?> 9 | 10 | -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.py: -------------------------------------------------------------------------------- 1 | print('Welcome to Pyabr with Python programing language.') -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/sample.sa: -------------------------------------------------------------------------------- 1 | echo Welcome to Pyabr with Saye commanding language. -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/build-packs.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/clean.sa: -------------------------------------------------------------------------------- 1 | add config 2 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/config: -------------------------------------------------------------------------------- 1 | project_name: ir.pyabr.hello 2 | project_pack: ir.pyabr.hello.pa 3 | project_dir: ir.pyabr.hello 4 | project_entry: hello -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/debug.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack 5 | :project_entry 6 | paye rm :project_name -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/install.sa: -------------------------------------------------------------------------------- 1 | add config 2 | paye pak :project_dir 3 | paye upak :project_pack 4 | rm :project_pack -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/ir.pyabr.hello/control/list: -------------------------------------------------------------------------------- 1 | usr/app/hello.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/ir.pyabr.hello/control/manifest: -------------------------------------------------------------------------------- 1 | name: ir.pyabr.hello 2 | name[fa]: سلام 3 | name[en]: Hello 4 | copyright: (c) 2022 Mani Jamali 5 | license: CC0 6 | unpack: / 7 | version: 1.0.0 8 | description: Hello Example 9 | compile: No 10 | build: 1400-12-14 -------------------------------------------------------------------------------- /packs/ir.pyabr.sample/data/usr/share/samples/saye-console/ir.pyabr.hello/data/usr/app/hello.sa: -------------------------------------------------------------------------------- 1 | echo Welcome from Pyabr! -------------------------------------------------------------------------------- /packs/ir.pyabr.setup/control/compile: -------------------------------------------------------------------------------- 1 | setup.py:usr/app/setup.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.setup/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/setup.qml 2 | usr/share/images/setup.png 3 | usr/share/applications/setup.desk 4 | usr/app/empty 5 | usr/app/setup.pyc 6 | -------------------------------------------------------------------------------- /packs/ir.pyabr.setup/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.setup/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.setup/data/usr/share/applications/setup.desk: -------------------------------------------------------------------------------- 1 | name[en]: Pyabr setup 2 | name[fa]: نصاب پای ابر 3 | name[ar]: مثبت بای ابر 4 | name[tr]: pyabr kurmak 5 | name[de]: Pyabr-Setup 6 | name[cn]: 设置 7 | name[ru]: настраивать 8 | logo: @icon/setup 9 | exec: setup 10 | application: No 11 | category: system 12 | img0: @image/setup -------------------------------------------------------------------------------- /packs/ir.pyabr.setup/data/usr/share/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.setup/data/usr/share/images/setup.png -------------------------------------------------------------------------------- /packs/ir.pyabr.sysinfo/control/compile: -------------------------------------------------------------------------------- 1 | sysinfo.py:usr/app/sysinfo.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.sysinfo/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/sysinfo.qml 2 | usr/share/applications/sysinfo.desk 3 | usr/app/empty 4 | usr/app/sysinfo.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.sysinfo/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.sysinfo/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.sysinfo/data/usr/share/applications/sysinfo.desk: -------------------------------------------------------------------------------- 1 | name[en]: System Informations 2 | name[fa]: اطلاعات سیستمی 3 | name[ar]: معلومات النظام 4 | name[tr]: sistem bilgisi 5 | name[de]: Systeminformationen 6 | name[cn]: 系统信息 7 | name[ru]: Информация о системе 8 | logo: @icon/info 9 | exec: sysinfo 10 | application: Yes 11 | category: system 12 | pin: Yes 13 | setting: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr.updates/code/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.updates/code/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.upstor/control/compile: -------------------------------------------------------------------------------- 1 | upstor.py:usr/app/upstor.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr.upstor/control/list: -------------------------------------------------------------------------------- 1 | usr/share/layouts/upstor.qml 2 | usr/share/applications/upstor.desk 3 | usr/app/empty 4 | usr/app/upstor.pyc 5 | -------------------------------------------------------------------------------- /packs/ir.pyabr.upstor/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr.upstor/data/usr/app/empty -------------------------------------------------------------------------------- /packs/ir.pyabr.upstor/data/usr/share/applications/upstor.desk: -------------------------------------------------------------------------------- 1 | name[en]: Upgrade 2 | name[fa]: ارتقا 3 | name[ar]: تطوير 4 | name[tr]: Güncelleme 5 | name[de]: Aktualisierung 6 | name[cn]: 升级 7 | name[ru]: Обновление 8 | logo: @icon/upstor 9 | exec: upstor 10 | application: Yes 11 | category: tools -------------------------------------------------------------------------------- /packs/ir.pyabr/code/UpdateFonts.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | 3 | subprocess.call('/usr/bin/cp /stor/usr/share/fonts/*.ttf /usr/share/fonts/truetype/',shell=True) -------------------------------------------------------------------------------- /packs/ir.pyabr/code/down.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from pyabr.core import * 3 | from pyabr.cloud import * 4 | 5 | for i in sys.argv[1:]: 6 | d = Drive() 7 | d.Download(i) 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr/code/link.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from pyabr.core import * 3 | from pyabr.cloud import * 4 | 5 | for i in sys.argv[1:]: 6 | d = Drive() 7 | print(d.Link(i)) 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr/code/push.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from pyabr.core import * 3 | from pyabr.cloud import * 4 | 5 | for i in sys.argv[1:]: 6 | d = Repo(i) 7 | d.Push() -------------------------------------------------------------------------------- /packs/ir.pyabr/code/unlink.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | from pyabr.core import * 4 | from pyabr.account import * 5 | 6 | for i in sys.argv[1:]: 7 | d = Drive() 8 | d.Unlink(i) 9 | 10 | commands.rm([i]) 11 | -------------------------------------------------------------------------------- /packs/ir.pyabr/code/up.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from pyabr.core import * 3 | from pyabr.cloud import * 4 | 5 | for i in sys.argv[1:]: 6 | d = Drive() 7 | d.Upload(i) 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr/code/zero.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from pyabr.core import * 3 | from pyabr.cloud import * 4 | 5 | for i in sys.argv[1:]: 6 | commands.up([i]) 7 | files.create(i) 8 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/channel: -------------------------------------------------------------------------------- 1 | host: https://sms.pyabr.ir 2 | send: send.php 3 | get: get.php 4 | connect: connect.php 5 | contact: contact.php 6 | clear: clear.php 7 | addcontact: addcontact.php 8 | del: del.php 9 | delchat: delchat.php -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/default/browser: -------------------------------------------------------------------------------- 1 | chromium -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/default/calendar: -------------------------------------------------------------------------------- 1 | # Gregorian: 0 2 | # Jalali: 1 3 | # Base locale: 2 4 | type: 2 -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/default/hidden_files: -------------------------------------------------------------------------------- 1 | Yes -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/default/terminals/konsole: -------------------------------------------------------------------------------- 1 | konsole --hide-tabbar --hide-menubar --qwindowtitle {0} --qwindowicon {1} -e -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/default/terminals/qterminal: -------------------------------------------------------------------------------- 1 | qterminal --execute -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/default/terminals/xterm: -------------------------------------------------------------------------------- 1 | xterm -fa dejavu -fg white -bg black -title {0} -fs 12 -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/deskdirs: -------------------------------------------------------------------------------- 1 | /usr/share/samples/deskdirs -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/distro: -------------------------------------------------------------------------------- 1 | code: Zayande Road 2 | version: 2.4.0 3 | name: Pyabr 4 | copyright: (c) 2022 Mani Jamali 5 | license: GNU General Public License v3.0 6 | build: 1400-12-27 7 | website: https://pyabr.ir -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/domain/pyabr.ir: -------------------------------------------------------------------------------- 1 | https://cloud.pyabr.ir/ -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/guest: -------------------------------------------------------------------------------- 1 | enable -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/hostname: -------------------------------------------------------------------------------- 1 | pyabr -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | 127.0.1.1 pyabr 3 | 4 | # The following lines are desirable for IPv6 capable hosts 5 | ::1 localhost ip6-localhost ip6-loopback 6 | ff02::1 ip6-allnodes 7 | ff02::2 ip6-allrouters -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/interface: -------------------------------------------------------------------------------- 1 | GUI -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/launched/logo.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/etc/launched/logo.list -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/modules: -------------------------------------------------------------------------------- 1 | /usr/games 2 | /opt/ring -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/profile.sa: -------------------------------------------------------------------------------- 1 | getv -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/etc/sudoers -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/time: -------------------------------------------------------------------------------- 1 | format: Asia/Tehran 2 | #start-week: Sat, Sun, Mon, Tue, Wed, Thu, Fri 3 | start-week: Sat -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/users/guest: -------------------------------------------------------------------------------- 1 | code: 2 | fullname: Guest user 3 | profile: @icon/breeze-users -------------------------------------------------------------------------------- /packs/ir.pyabr/data/etc/users/root: -------------------------------------------------------------------------------- 1 | code: 17bbd4bd5bcf969ab5874e84d389d9d28f511529c08fd55f6f733f3a43a9609759e6c955ef7211751fb40ea61292b289c424638801b00b223589e49b14d27a1b 2 | fullname: Super Account 3 | profile: @icon/breeze-root -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/boot: -------------------------------------------------------------------------------- 1 | vmabr.pyc -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/proc/info/id -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/proc/info/inp -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/os: -------------------------------------------------------------------------------- 1 | Pyabr -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/os_su: -------------------------------------------------------------------------------- 1 | root -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/pwd: -------------------------------------------------------------------------------- 1 | / -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/scn: -------------------------------------------------------------------------------- 1 | 1920x1080 -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/su: -------------------------------------------------------------------------------- 1 | root -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/sudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/proc/info/sudo -------------------------------------------------------------------------------- /packs/ir.pyabr/data/proc/info/wsel: -------------------------------------------------------------------------------- 1 | / -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/commonmark/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | from __future__ import unicode_literals, absolute_import 3 | 4 | from commonmark.main import commonmark 5 | from commonmark.dump import dumpAST, dumpJSON 6 | from commonmark.blocks import Parser 7 | from commonmark.render.html import HtmlRenderer 8 | from commonmark.render.rst import ReStructuredTextRenderer 9 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/commonmark/render/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/commonmark/render/__init__.py -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/commonmark/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/commonmark/tests/__init__.py -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/exit.sa: -------------------------------------------------------------------------------- 1 | shut -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/feedparser/namespaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/feedparser/namespaces/__init__.py -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/feedparser/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/feedparser/parsers/__init__.py -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/html2text/__main__.py: -------------------------------------------------------------------------------- 1 | from .cli import main 2 | 3 | main() 4 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/html2text/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/html2text/py.typed -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/html2text/typing.py: -------------------------------------------------------------------------------- 1 | class OutCallback: 2 | def __call__(self, s: str) -> None: 3 | ... 4 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/importlib_metadata/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/importlib_metadata/py.typed -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/rich/_extension.py: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | 4 | def load_ipython_extension(ip: Any) -> None: # pragma: no cover 5 | # prevent circular import 6 | from rich.pretty import install 7 | from rich.traceback import install as tr_install 8 | 9 | install() 10 | tr_install() 11 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/rich/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/ir.pyabr/data/usr/app/rich/py.typed -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/rich/region.py: -------------------------------------------------------------------------------- 1 | from typing import NamedTuple 2 | 3 | 4 | class Region(NamedTuple): 5 | """Defines a rectangular region of the screen.""" 6 | 7 | x: int 8 | y: int 9 | width: int 10 | height: int 11 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/app/ver.sa: -------------------------------------------------------------------------------- 1 | getv 2 | echo Static hostname: :host 3 | echo cloud Software: :cs :ver ( :cd ) 4 | echo Build date: :bl 5 | echo Operating System: :os 6 | echo Kernel: :kname :kver 7 | echo Switched User: :su 8 | echo Switched Process: :sp 9 | echo Architecture: :arch -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/applications/download.desk: -------------------------------------------------------------------------------- 1 | name[en]: Download 2 | logo: @icon/dmgr 3 | exec: Download 4 | application: No 5 | category: tools 6 | hidden: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/applications/sync.desk: -------------------------------------------------------------------------------- 1 | name[en]: Online Account 2 | name[fa]: حساب آنلاین 3 | name[ar]: حساب على الانترنت 4 | name[tr]: Çevrimiçi Hesap 5 | name[de]: Online-Konto 6 | name[cn]: 网上账户 7 | name[ru]: Онлайн-аккаунт 8 | logo: @icon/users 9 | exec: sync 10 | application: Yes 11 | category: tools 12 | hidden: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/applications/webapp.desk: -------------------------------------------------------------------------------- 1 | name[en]: WebApp 2 | logo: @icon/browser 3 | exec: webapp 4 | application: No 5 | category: internet 6 | hidden: Yes -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/docs/IRANSans/AUTHERS: -------------------------------------------------------------------------------- 1 | Moslem Ebrahimi -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/fonts/IRANSans Black.json: -------------------------------------------------------------------------------- 1 | { 2 | "objectName":"IRANSans_Black", 3 | "text":"ایران سنس (تیره)", 4 | "fontFamily":"IRANSans Black", 5 | "fontSize":30 6 | } -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/fonts/IRANSans Light.json: -------------------------------------------------------------------------------- 1 | { 2 | "objectName":"IRANSans_Light", 3 | "text":"ایران سنس (نازک)", 4 | "fontFamily":"IranSans Light", 5 | "fontSize":30 6 | } -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/fonts/IRANSans Medium.json: -------------------------------------------------------------------------------- 1 | { 2 | "objectName":"IRANSans_Medium", 3 | "text":"ایران سنس (متوسط)", 4 | "fontFamily":"IRANSans Medium", 5 | "fontSize":30 6 | } -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/fonts/IRANSans UltraLight.json: -------------------------------------------------------------------------------- 1 | { 2 | "objectName":"IRANSans_UltraLight", 3 | "text":"ایران سنس (بسیار نازک)", 4 | "fontFamily":"IRANSans UltraLight", 5 | "fontSize":30 6 | } -------------------------------------------------------------------------------- /packs/ir.pyabr/data/usr/share/fonts/IRANSans.json: -------------------------------------------------------------------------------- 1 | { 2 | "objectName":"IranSans", 3 | "text":"ایران سنس", 4 | "fontFamily":"IRANSans", 5 | "fontSize":30 6 | } -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/gtk/win10: -------------------------------------------------------------------------------- 1 | name[en]: Windows 10 theme 2 | name[fa]: تم ویندوز ۱۰ 3 | name[ar]: سمة فیندوز ۱۰ 4 | name[tr]: Windows 10 teması 5 | logo: @icon/theme -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet2_width 13 2 | #define bullet2_height 13 3 | static unsigned char bullet2_bits[] = { 4 | 0x08, 0x00, 0x10, 0x00, 0x20, 0x00, 0x40, 0x00, 0x80, 0x00, 0x00, 0x01, 5 | 0x00, 0x02, 0x00, 0x01, 0x80, 0x00, 0x40, 0x00, 0x20, 0x00, 0x10, 0x00, 6 | 0x08, 0x00 }; 7 | -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x00, 0x00, 0x02, 0x01, 0x84, 0x00, 0x48, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x48, 0x00, 0x84, 0x00, 0x02, 0x01, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 16 2 | #define desk_height 16 3 | static unsigned char desk_bits[] = { 4 | 0x01, 0x44, 0x01, 0x44, 0xff, 0x47, 0x00, 0x00, 0xff, 0xe7, 0x01, 0xe4, 5 | 0x01, 0xe4, 0x01, 0x04, 0x01, 0x44, 0x01, 0x44, 0xff, 0x47, 0x00, 0x40, 6 | 0xff, 0x47, 0x01, 0x44, 0x01, 0x44, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x03, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0xff, 0x03, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 5 | 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define max_toggled_width 10 2 | #define max_toggled_height 10 3 | static unsigned char max_toggled_bits[] = { 4 | 0xfc, 0x03, 0x04, 0x02, 0xff, 0x02, 0x81, 0x02, 0x81, 0x02, 0x81, 0x02, 5 | 0x81, 0x02, 0x81, 0x03, 0x81, 0x00, 0xff, 0x00 }; 6 | -------------------------------------------------------------------------------- /packs/org.box-look.win10/data/usr/share/themes/win10/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 10 2 | #define shade_height 10 3 | static unsigned char shade_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x03, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /packs/org.chromium/control/compile: -------------------------------------------------------------------------------- 1 | chromium.py:usr/app/chromium.pyc 2 | PDFReader.py:usr/app/PDFReader.pyc -------------------------------------------------------------------------------- /packs/org.chromium/control/list: -------------------------------------------------------------------------------- 1 | usr/share/icons/chromium.png 2 | usr/share/applications/PDFReader.desk 3 | usr/share/applications/chromium.desk 4 | usr/app/empty 5 | usr/app/chromium.pyc 6 | usr/app/PDFReader.pyc 7 | -------------------------------------------------------------------------------- /packs/org.chromium/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.chromium/data/usr/app/empty -------------------------------------------------------------------------------- /packs/org.chromium/data/usr/share/applications/PDFReader.desk: -------------------------------------------------------------------------------- 1 | name[en]: PDF Reader 2 | name[fa]: PDF خوان 3 | name[ar]: قارئ PDF 4 | name[tr]: PDF Okuyucu 5 | name[de]: PDF Reader 6 | name[cn]: PDF阅读器 7 | name[ru]: Читатель PDF 8 | logo: @icon/pdf 9 | exec: PDFReader 10 | application: No 11 | hidden: Yes 12 | category: tools 13 | pin: No -------------------------------------------------------------------------------- /packs/org.chromium/data/usr/share/applications/chromium.desk: -------------------------------------------------------------------------------- 1 | name[en]: Chromium 2 | name[fa]: کرومیوم 3 | name[ar]: کرومیوم 4 | name[tr]: Krom 5 | name[de]: Chrom 6 | name[cn]: 铬 7 | name[ru]: Хром 8 | logo: @icon/chromium 9 | exec: chromium 10 | application: Yes 11 | category: internet 12 | pin: No -------------------------------------------------------------------------------- /packs/org.chromium/data/usr/share/icons/chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.chromium/data/usr/share/icons/chromium.png -------------------------------------------------------------------------------- /packs/org.gnu.bash/control/compile: -------------------------------------------------------------------------------- 1 | bash.py:usr/app/bash_app.pyc -------------------------------------------------------------------------------- /packs/org.gnu.bash/control/list: -------------------------------------------------------------------------------- 1 | usr/share/applications/bash.desk 2 | usr/app/empty 3 | usr/app/bash_app.pyc 4 | -------------------------------------------------------------------------------- /packs/org.gnu.bash/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.gnu.bash/data/usr/app/empty -------------------------------------------------------------------------------- /packs/org.gnu.bash/data/usr/share/applications/bash.desk: -------------------------------------------------------------------------------- 1 | name[en]: Bash 2 | name[fa]: بش 3 | name[ar]: بش 4 | name[tr]: bash 5 | logo: @icon/commento 6 | exec: bash_app 7 | application: Yes 8 | category: tools -------------------------------------------------------------------------------- /packs/org.kde.breeze/code/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/code/empty -------------------------------------------------------------------------------- /packs/org.kde.breeze/control/manifest: -------------------------------------------------------------------------------- 1 | name: org.kde.breeze 2 | name[en]: Breeze theme 3 | copyright: (c) 2022 KDE 4 | license: GNU GPL v3.0 5 | unpack: / 6 | version: 1.0.0 7 | description: Breeze theme 8 | compile: No 9 | logo: https://mirror.pyabr.ir/zayanderoad/org.kde.breeze.svg 10 | logo.inside: @icon/breeze 11 | 12 | build: 1400-12-26 13 | mirror: https://mirror.pyabr.ir/zayanderoad/ -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/app/empty -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/icons/breeze-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/icons/breeze-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/00000000000000020006000e7e9ffc3f -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/00008160000006810000408080010102 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/03b6e0fcb3499374a867c041f52298f0 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/1081e37283d90000800003c07f3ef6bf -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/3085a0e285430894940527032f8b26df -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/4498f0e0c1937ffe01fd06f973665830 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/6407b0e94181790501fd1e167b474872 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/640fb0e74195791501fd1ed57b41487f -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/9081237383d90e509aa00f00170e968f -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/9d800788f1b08800ae810202380a0822 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/alias -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/all-scroll -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/bottom_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/bottom_left_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/bottom_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/bottom_right_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/bottom_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/cell -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/center_ptr -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/circle -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/closedhand -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/col-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/col-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/color-picker -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/context-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/context-menu -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/copy -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/cross -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/crossed_circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/crossed_circle -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/crosshair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/crosshair -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/d9ce0ab605698f320427677b458ad60b -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/default -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-copy -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-move -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-no-drop -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/dnd-none -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/down-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/down-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/draft -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/e-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/e-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/e29285e634086352946a0e7090d73106 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ew-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ew-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/fleur -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/forbidden -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/grab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/grab -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/grabbing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/grabbing -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/h_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/h_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/half-busy -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/hand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/hand1 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/hand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/hand2 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/help -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ibeam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ibeam -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_ptr -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_ptr_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_ptr_help -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_ptr_watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_ptr_watch -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/left_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/link -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/move -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/n-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/n-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ne-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ne-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/nesw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/nesw-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/no-drop -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/not-allowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/not-allowed -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ns-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/ns-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/nw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/nw-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/nwse-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/nwse-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/openhand -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pencil -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pirate -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/plus -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pointer -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/pointing_hand -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/progress -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/question_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/question_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/right-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/right-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/right_ptr -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/right_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/row-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/row-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/s-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/s-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/sb_h_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/sb_v_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/se-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/se-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-bdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-fdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-hor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size-ver -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_all -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_bdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_fdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_hor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/size_ver -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/split_h -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/split_v -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/sw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/sw-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/text -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_left_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_left_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_left_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_right_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/top_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/up-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/up-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/v_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/v_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/vertical-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/vertical-text -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/w-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/w-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/wait -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/watch -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/wayland-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/wayland-cursor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/whats_this: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/whats_this -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/x-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/x-cursor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/xterm -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/zoom-in -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors/cursors/zoom-out -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/00000000000000020006000e7e9ffc3f -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/00008160000006810000408080010102 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/03b6e0fcb3499374a867c041f52298f0 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/08e8e1c95fe2fc01f976f1e063a24ccd -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/1081e37283d90000800003c07f3ef6bf -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/3085a0e285430894940527032f8b26df -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/3ecb610c1bf2410f44200f48c40d3599 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/4498f0e0c1937ffe01fd06f973665830 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/6407b0e94181790501fd1e167b474872 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/640fb0e74195791501fd1ed57b41487f -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/9081237383d90e509aa00f00170e968f -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/9d800788f1b08800ae810202380a0822 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/a2a266d0498c3104214a47bd64ab0fc8 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/alias -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/all-scroll -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/b66166c04f8c3109214a4fbd64a50fc8 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/bottom_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/bottom_left_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/bottom_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/bottom_right_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/bottom_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/cell -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/center_ptr -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/circle -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/closedhand -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/col-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/col-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/color-picker -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/context-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/context-menu -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/copy -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/cross -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/crossed_circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/crossed_circle -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/crosshair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/crosshair -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/d9ce0ab605698f320427677b458ad60b -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/default -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-copy -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-move -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-no-drop -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/dnd-none -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/down-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/down-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/draft -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/e-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/e-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/e29285e634086352946a0e7090d73106 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ew-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ew-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/fleur -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/forbidden -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/grab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/grab -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/grabbing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/grabbing -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/h_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/h_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/half-busy -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/hand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/hand1 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/hand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/hand2 -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/help -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ibeam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ibeam -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_ptr -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_ptr_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_ptr_help -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_ptr_watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_ptr_watch -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/left_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/link -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/move -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/n-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/n-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ne-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ne-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/nesw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/nesw-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/no-drop -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/not-allowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/not-allowed -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ns-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/ns-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/nw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/nw-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/nwse-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/nwse-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/openhand -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pencil -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pirate -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/plus -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pointer -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/pointing_hand -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/progress -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/question_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/question_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/right-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/right-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/right_ptr -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/right_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/row-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/row-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/s-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/s-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/sb_h_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/sb_v_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/se-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/se-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-bdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-fdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-hor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size-ver -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_all -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_bdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_fdiag -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_hor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/size_ver -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/split_h -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/split_v -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/sw-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/sw-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/text -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_left_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_left_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_left_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_right_corner -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/top_side -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/up-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/up-arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/v_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/v_double_arrow -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/vertical-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/vertical-text -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/w-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/w-resize -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/wait -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/watch -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/wayland-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/wayland-cursor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/whats_this: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/whats_this -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/x-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/x-cursor -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/xterm -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/zoom-in -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.kde.breeze/data/usr/share/themes/breeze_cursors_dark/cursors/zoom-out -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/cursor/breeze_cursors: -------------------------------------------------------------------------------- 1 | name[en]: Breeze Cursors 2 | logo: @icon/breeze -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/cursor/breeze_cursors_dark: -------------------------------------------------------------------------------- 1 | name[en]: Breeze Cursors (Dark) 2 | logo: @icon/breeze -------------------------------------------------------------------------------- /packs/org.kde.breeze/data/usr/share/themes/icon/breeze: -------------------------------------------------------------------------------- 1 | name[en]: Breeze 2 | name[fa]: بریز 3 | name[ar]: بریز 4 | name[tr]: breeze 5 | logo: @icon/breeze -------------------------------------------------------------------------------- /packs/org.python/control/compile: -------------------------------------------------------------------------------- 1 | python.py:usr/app/python_app.pyc -------------------------------------------------------------------------------- /packs/org.python/control/list: -------------------------------------------------------------------------------- 1 | usr/share/icons/python.svg 2 | usr/share/applications/python.desk 3 | usr/app/empty 4 | usr/app/python_app.pyc 5 | -------------------------------------------------------------------------------- /packs/org.python/data/usr/app/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/packs/org.python/data/usr/app/empty -------------------------------------------------------------------------------- /packs/org.python/data/usr/share/applications/python.desk: -------------------------------------------------------------------------------- 1 | name[en]: Python Shell 2 | name[fa]: مفسر پایتون 3 | name[ar]: مفسر بایثون 4 | name[tr]: piton 5 | logo: @icon/python 6 | exec: python_app 7 | application: Yes 8 | category: tools -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | PyQtWebEngine 3 | requests 4 | wget 5 | psutil 6 | termcolor -------------------------------------------------------------------------------- /rootcopy/etc/issue: -------------------------------------------------------------------------------- 1 | Pyabr 2.4.0 \l \n 2 | -------------------------------------------------------------------------------- /rootcopy/etc/issue.net: -------------------------------------------------------------------------------- 1 | Pyabr 2.4.0 -------------------------------------------------------------------------------- /rootcopy/etc/os-release: -------------------------------------------------------------------------------- 1 | PRETTY_NAME="Pyabr 2.4.0" 2 | NAME="Pyabr" 3 | VERSION_ID="2.4.0" 4 | VERSION="2.4.0 (Zayande Road)" 5 | VERSION_CODENAME=zayanderoad 6 | ID=pyabr 7 | ID_LIKE=debian 8 | HOME_URL="https://pyabr.ir/" -------------------------------------------------------------------------------- /rootcopy/root/.xinitrc: -------------------------------------------------------------------------------- 1 | pyabr -------------------------------------------------------------------------------- /rootcopy/usr/bin/pyabr: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import subprocess,sys,os 3 | f = open ('/stor/proc/info/su','w') 4 | f.write('root') 5 | f.close() 6 | os.chdir('/stor') 7 | subprocess.call (f'QTWEBENGINE_DISABLE_SANDBOX=1 {sys.executable} vmabr.pyc',shell=True) -------------------------------------------------------------------------------- /rps/Disks/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/rps/Disks/empty -------------------------------------------------------------------------------- /rps/Etc/Users/07cd55c7b42715ec44c133a6a165e8d2.json: -------------------------------------------------------------------------------- 1 | {"name": "07cd55c7b42715ec44c133a6a165e8d2", "size": "10G", "ram": "4000", "smp": "2"} -------------------------------------------------------------------------------- /rps/Etc/Users/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/rps/Etc/Users/empty -------------------------------------------------------------------------------- /wheel/setup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFarsi/pyabr/4f2612d9a59e6f58aa69e9cf0564964e6adf9e76/wheel/setup.zip --------------------------------------------------------------------------------