This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathsettings_constants.py
More file actions
105 lines (102 loc) · 2.94 KB
/
settings_constants.py
File metadata and controls
105 lines (102 loc) · 2.94 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
from fabric.utils.helpers import get_relative_path
from .data import (
APP_NAME,
APP_NAME_CAP,
)
SOURCE_STRING = f"""
# {APP_NAME_CAP}
source = ~/.config/{APP_NAME_CAP}/config/hypr/{APP_NAME}.conf
"""
DEFAULTS = {
"prefix_restart": "SUPER ALT",
"suffix_restart": "B",
"prefix_axmsg": "SUPER",
"suffix_axmsg": "A",
"prefix_dash": "SUPER",
"suffix_dash": "D",
"prefix_bluetooth": "SUPER",
"suffix_bluetooth": "B",
"prefix_pins": "SUPER",
"suffix_pins": "Q",
"prefix_kanban": "SUPER",
"suffix_kanban": "N",
"prefix_launcher": "SUPER",
"suffix_launcher": "R",
"prefix_tmux": "SUPER",
"suffix_tmux": "T",
"prefix_cliphist": "SUPER",
"suffix_cliphist": "V",
"prefix_toolbox": "SUPER",
"suffix_toolbox": "S",
"prefix_overview": "SUPER",
"suffix_overview": "TAB",
"prefix_wallpapers": "SUPER",
"suffix_wallpapers": "COMMA",
"prefix_randwall": "SUPER SHIFT",
"suffix_randwall": "COMMA",
"prefix_mixer": "SUPER",
"suffix_mixer": "M",
"prefix_emoji": "SUPER",
"suffix_emoji": "PERIOD",
"prefix_power": "SUPER",
"suffix_power": "ESCAPE",
"prefix_caffeine": "SUPER SHIFT",
"suffix_caffeine": "M",
"prefix_toggle": "SUPER CTRL",
"suffix_toggle": "B",
"prefix_css": "SUPER SHIFT",
"suffix_css": "B",
"wallpapers_dir": get_relative_path("../assets/wallpapers_example"),
"prefix_restart_inspector": "SUPER CTRL ALT",
"suffix_restart_inspector": "B",
"bar_position": "Top",
"vertical": False,
"centered_bar": False,
"datetime_12h_format": False,
"terminal_command": "kitty -e",
"auto_append_hyprland": True,
"dock_enabled": True,
"dock_icon_size": 28,
"dock_always_show": False,
"bar_workspace_start": 1,
"bar_workspace_end": 10,
"bar_workspace_show_number": False,
"bar_workspace_use_chinese_numerals": False,
"bar_hide_special_workspace": True,
"bar_theme": "Pills",
"dock_theme": "Pills",
"panel_theme": "Notch",
"panel_position": "Center",
"notif_pos": "Top",
"bar_button_apps_visible": True,
"bar_systray_visible": True,
"bar_control_visible": True,
"bar_network_visible": True,
"bar_button_tools_visible": True,
"bar_sysprofiles_visible": True,
"bar_button_overview_visible": True,
"bar_ws_container_visible": True,
"bar_weather_visible": True,
"bar_battery_visible": True,
"bar_metrics_visible": True,
"bar_language_visible": True,
"bar_date_time_visible": True,
"bar_button_power_visible": True,
"corners_visible": True,
"bar_metrics_disks": ["/"],
"metrics_visible": {
"cpu": True,
"ram": True,
"disk": True,
"gpu": True,
},
"metrics_small_visible": {
"cpu": True,
"ram": True,
"disk": True,
"gpu": True,
},
"limited_apps_history": ["Spotify"],
"history_ignored_apps": ["Hyprshot"],
"selected_monitors": [],
}