-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.lua
64 lines (60 loc) · 1.46 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
local apps = {
launcher = "rofi -show-icons -modi windowcd,window,drun -show drun -filter ",
xrandr = "lxrandr",
screenshot = "scrot -e 'echo $f'",
volume = "pavucontrol",
appearance = "lxappearance",
browser = "firefox-developer-edition",
fileexplorer = "dolphin",
musicplayer = "pragha",
editor = "code",
ide = "gtk-launch jetbrains-idea-docker.desktop",
settings = "code /home/box/.config/awesome/"
}
local terminal_cmds = {
{
cmd = 'journalctl -n 15 --no-pager -u "systemd-*"'
},
{
cmd = 'journalctl -n 30 --no-pager'
},
{
cmd = 'notes_sync',
timeout = 100000
},
{
cmd = 'ls'
},
{
cmd = 'sh chat-gpt "Describe cons and pros of awesomewm." 1.0',
timeout = 100000
},
{
cmd = 'sh chat-gpt "${input}" 1.0',
timeout = 100000,
prompt = 'Enter question for chat-gpt:'
},
{
cmd = 'echo "${input}"',
prompt = 'Enter text for echo:'
}
}
local user = {
terminal = "alacritty",
terminal2nd = "wezterm",
}
local config = {
apps = apps,
user = user,
terminal_cmds = terminal_cmds,
weather_coordinates = { 49.261749, 13.903450 },
dashboard_monitor_storage = {"/", "/home", "/efi", "/tmp" },
main_panel = 'wibar', -- variants: wibar, polybar, none
--{{{ Features Activity
dashboard_enabled = true,
collage_enabled = true,
desktop_enabled = false,
active_corners_enabled = true,
--}}}
}
return config