forked from actlaboratory/falcon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefaultSettings.py
More file actions
123 lines (118 loc) · 3.15 KB
/
Copy pathDefaultSettings.py
File metadata and controls
123 lines (118 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# -*- coding: utf-8 -*-
#Falcon default setting config
#Copyright (C) 2019 yamahubuki <itiro.ishino@gmail.com>
#Note: All comments except these top lines will be written in Japanese.
from FalconConfigParser import *
class DefaultSettings:
def get():
config = FalconConfigParser()
config["general"]={
"language": "ja-JP",
"fileVersion": "100",
"locale": "ja-JP"
}
config["speech"]={
"reader": "AUTO",
"fx_volume": 100
}
config["FileList"]={
"sorting": 0,
"descending": 0,
"column_width_0" : "650",
"column_width_1" : "150",
"column_width_2" : "320",
"column_width_3" : "70",
"column_width_4" : "240"
}
config["GrepResultList"]={
"sorting": 0,
"descending": 0,
"column_width_0" : 300,
"column_width_1" : 80,
"column_width_2" : 300,
"column_width_3" : 70,
"column_width_4" : 150,
"column_width_5" : 320,
"column_width_6" : 70,
"column_width_7" : 240
}
config["DriveList"]={
"sorting": 1,
"descending": 0,
"column_width_0": 250,
"column_width_1": 120,
"column_width_2": 150,
"column_width_3": 150,
"column_width_4": 480
}
config["SearchResultList"]={
"sorting": 0,
"descending": 0,
"column_width_0" : "330",
"column_width_1" : "150",
"column_width_2" : "320",
"column_width_3" : "320",
"column_width_4" : "70",
"column_width_5" : "240"
}
config["NetworkResourceList"]={
"sorting" : "0",
"descending" : "0",
"column_width_0" : "620"
}
config["view"]={
"font": "bold 'MS ゴシック' 22 windows-932",
"colorMode":"normal",
"header_title_length":20
}
config["mainView"]={
"sizeX": "800",
"sizeY": "600",
}
config["browse"]={
"startPath": "%%HOMEDRIVE%%"
}
config["sounds"]={
"startup" : "tip.ogg",
"boundary" : "tip.ogg",
"checked":"click.ogg",
"check":"checked.ogg"
}
config["favorite_directories"]={
"ドキュメント" : "%%%%userprofile%%%%\documents",
"デスクトップ" : "%%%%userprofile%%%%\desktop"
}
config["favorite_directories_shortcut"]={
"ドキュメント" : "alt+1",
"デスクトップ" : "alt+2"
}
config["open_here"]={
"Explorer" : "%%%%windir%%%%\explorer.exe \"%%%%1\"",
"コマンド プロンプト" : "%%%%windir%%%%\system32\cmd.exe /K cd /d \"%%%%1\"",
"Windows Power Shell" : "%%%%windir%%%%\System32\WindowsPowerShell\\v1.0\powershell.exe -NoExit -command cd \'%%%%1\'"
}
config["open_here_shortcut"]={
"Explorer" : "ctrl+e",
"コマンド プロンプト" : "ctrl+shift+o",
"Windows Power Shell" : "ctrl+shift+p"
}
config["preview"]={
"header_line_count": 10,
"footer_line_count": 10,
"audio_volume": 100
}
config['on_list_moved']={
"read_directory_level": True,
"read_directory_name": True,
"read_item_count": True
}
config["originalAssociation"]={
"<default_file>": "C:\Program Files (x86)\KSD\MyEdit\MyEdit.exe",
"<default_dir>": "falcon.exe"
}
config["on_list_moved"]={
"read_directory_level": True,
"read_directory_name": True,
"read_item_count": True
}
return config