This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
forked from material-shell/material-awesome
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathconfig.lua
109 lines (102 loc) · 2.7 KB
/
config.lua
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
return {
-- Widget configurations
widget = {
weather = {
-- API Key
key = '',
-- City ID
city_id = '',
-- Units
units = 'metric',
-- Update in N seconds
update_interval = 1200
},
-- Yes I use military time by default, deal with it ;) (or just disable it)
clock = {
-- Clock widget format
military_mode = true
},
-- I do not use the widgets for the below configurations, but I left them here in-case you re-enable them!
screen_recorder = {
-- Default record dimension
resolution = '1366x768',
-- X,Y coordinate
offset = '0,0',
-- Enable audio by default
audio = false,
-- Recordings directory
save_directory = '$(xdg-user-dir VIDEOS)/Recordings/',
-- Mic level
mic_level = '20',
-- FPS
fps = '30'
},
network = {
-- Wired interface
wired_interface = 'enp5s0',
-- Wireless interface
wireless_interface = 'wlan0'
},
email = {
-- Email address
address = '',
-- App password
app_password = '',
-- Imap server
imap_server = 'imap.gmail.com',
-- Port
port = '993'
}
},
-- Module configurations
module = {
auto_start = {
-- Will create notification if true
debug_mode = false
},
dynamic_wallpaper = {
-- Will look for wallpapers here
wall_dir = 'theme/wallpapers/',
-- Image formats
valid_picture_formats = {'jpg', 'png', 'jpeg'},
-- Leave this table empty for full auto scheduling
wallpaper_schedule = {
['00:00:00'] = 'midnight-wallpaper.png',
['06:22:00'] = 'morning-wallpaper.png',
['12:00:00'] = 'noon-wallpaper.png',
['17:58:00'] = 'night-wallpaper.png'
-- Example of just using auto-scheduling with keywords
--[[
'midnight',
'morning',
'noon',
'afternoon',
'evening',
'night'
--]]
},
-- Stretch background image across all screens(monitor)
stretch = true
},
-- This module is not in use, configuration is left here for potential future use!
-- because this idea is actually really cool!
lockscreen = {
-- Clock format
military_clock = true,
-- Default password if there's no PAM integration
fallback_password = 'toor',
-- Capture intruder using webcam
capture_intruder = true,
-- Intruder image save location (Will create directory if it doesn't exist)
face_capture_dir = '$(xdg-user-dir PICTURES)/Intruders/',
-- Background directory - Defaults to 'awesome/config/theme/wallpapers/' if null
bg_dir = nil,
-- Will look for this image file under 'bg_dir'
bg_image = 'locksreen-bg.jpg',
-- Blur lockscreen background
blur_background = false,
-- Blurred/filtered background image path (No reason to change this)
tmp_wall_dir = '/tmp/awesomewm/' .. os.getenv('USER') .. '/'
}
}
}