-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from FRiMN/config
Config
- Loading branch information
Showing
3 changed files
with
192 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Держать главное окно поверх всех остальных | ||
# Менеджер окон может игнорировать эти установки | ||
# True -- да | ||
# False -- нет | ||
master_above = True | ||
|
||
# Держать измеритель поверх всех остальных окон | ||
# Менеджер окон может игнорировать эти установки | ||
# True -- да | ||
# False -- нет | ||
slave_above = True | ||
|
||
# Заголовок главного окна | ||
# <строка> | ||
master_title = "Rackman [Master]" | ||
|
||
# Заголовок измерителя | ||
# <строка> | ||
slave_title = "Rackman [Slave]" | ||
|
||
# Прозрачность измерителя | ||
# <число> (от 0 до 1) | ||
slave_opacity = 0.5 | ||
|
||
# Перекрывать главное окно измерителем | ||
# True -- да | ||
# False -- нет | ||
transient = False | ||
|
||
# Цвет фона и линий измерителя по-умолчанию | ||
# 'Black' -- чёрный | ||
# 'White' -- белый | ||
# 'Green' -- зелёный | ||
# 'Blue' -- синий | ||
# 'Red' -- красный | ||
# 'Orange' -- оранжевый | ||
# 'Violet' -- фиолетовый | ||
# 'Pink' -- розовый | ||
background_color = 'White' | ||
foreground_color = 'Red' | ||
|
||
# Скорость перемещения и изменения размеров окна измерителя в Fast Mode | ||
# <число> (в пикселях) | ||
fast_mode_speed = 50 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters