confgen cursor size

This commit is contained in:
LordMZTE 2023-04-26 14:16:40 +02:00
parent 993cc18f55
commit 1e18e7ea45
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
5 changed files with 10 additions and 7 deletions

View File

@ -1,2 +1,2 @@
Xcursor.theme: <% opt.cursor_theme %>
Xcursor.size: 32
Xcursor.theme: <% opt.cursor.theme %>
Xcursor.size: <% opt.cursor.size %>

View File

@ -2,7 +2,7 @@
gtk-theme-name=Dracula
gtk-icon-theme-name=<% opt.icon_theme %>
gtk-font-name=<% opt.font %> 11
gtk-cursor-theme-name=<% opt.cursor_theme %>
gtk-cursor-theme-name=<% opt.cursor.theme %>
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR

View File

@ -2,7 +2,7 @@
gtk-theme-name=Dracula
gtk-icon-theme-name=<% opt.icon_theme %>
gtk-font-name=<% opt.font %> 11
gtk-cursor-theme-name=<% opt.cursor_theme %>
gtk-cursor-theme-name=<% opt.cursor.theme %>
gtk-cursor-theme-size=0
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1

View File

@ -161,7 +161,7 @@ riverctl csd-filter-add app-id "gedit"
riverctl map normal Alt Space spawn 'wofi --show run'
# cursor theme
riverctl xcursor-theme <% opt.cursor_theme %>
riverctl xcursor-theme <% opt.cursor.theme %>
# power dialog
riverctl map normal Super+Shift P spawn gpower2

View File

@ -10,7 +10,11 @@ opts.term = {
icon_name = "org.wezfurlong.wezterm",
}
opts.cursor_theme = "LyraQ-cursors"
opts.cursor = {
theme = "LyraQ-cursors",
size = 24,
}
opts.icon_theme = "candy-icons"
opts.commands = {
@ -19,7 +23,6 @@ opts.commands = {
calculator = "qalculate-gtk",
file_manager = "thunar",
file_manager_daemon = "thunar --daemon",
-- zenity-compatible dialoger
zenity = "yad",
}