/
NeiroN
/
PySCP
Обзор
Документация
Войти
/
NeiroN
/
PySCP
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Theme/pkgIndex.tcl
15 строк
530 B
NeiroN
Add files
23 апр 2021, 16:21
23 апр 2021, 16:21
4b31692
Код
Авторство
О чём код?
# pkgIndex.tcl for additional tile pixmap theme Arc. # # We don't provide the package is the image subdirectory isn't present, # or we don't have the right version of Tcl/Tk # # To use this automatically within tile, the tile-using application should # use tile::availableThemes and tile::setTheme if {![file isdirectory [file join $dir Arc]]} { return } if {![package vsatisfies [package provide Tcl] 8.6]} { return } package ifneeded ttk::theme::Arc 0.1 \ [list source [file join $dir arc.tcl]] # vim:ts=8:sw=4:sts=4:et