mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
34 lines
697 B
Lua
34 lines
697 B
Lua
local opts = {}
|
|
|
|
opts.font = "Iosevka Nerd Font"
|
|
opts.term_font = "Iosevka Term Nerd Font Mono"
|
|
|
|
opts.term = {
|
|
name = "Wezterm",
|
|
command = "wezterm",
|
|
workdir_command = "wezterm-gui start --cwd",
|
|
icon_name = "org.wezfurlong.wezterm",
|
|
}
|
|
|
|
opts.cursor_theme = "LyraQ-cursors"
|
|
opts.icon_theme = "candy-icons"
|
|
|
|
opts.commands = {
|
|
browser = "openbrowser",
|
|
email = "claws-mail",
|
|
calculator = "qalculate-gtk",
|
|
file_manager = "thunar",
|
|
file_manager_daemon = "thunar --daemon",
|
|
|
|
-- zenity-compatible dialoger
|
|
zenity = "yad",
|
|
}
|
|
|
|
-- Device temperature levels. Used for status bar.
|
|
opts.temperatures = {
|
|
normal = 40,
|
|
medium = 65,
|
|
high = 80,
|
|
}
|
|
|
|
return opts
|