mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-01-05 19:43:41 +01:00
confgen cursor size
This commit is contained in:
parent
993cc18f55
commit
1e18e7ea45
5 changed files with 10 additions and 7 deletions
|
@ -1,2 +1,2 @@
|
|||
Xcursor.theme: <% opt.cursor_theme %>
|
||||
Xcursor.size: 32
|
||||
Xcursor.theme: <% opt.cursor.theme %>
|
||||
Xcursor.size: <% opt.cursor.size %>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue