mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-01-08 11:13:50 +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.theme: <% opt.cursor.theme %>
|
||||||
Xcursor.size: 32
|
Xcursor.size: <% opt.cursor.size %>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
gtk-theme-name=Dracula
|
gtk-theme-name=Dracula
|
||||||
gtk-icon-theme-name=<% opt.icon_theme %>
|
gtk-icon-theme-name=<% opt.icon_theme %>
|
||||||
gtk-font-name=<% opt.font %> 11
|
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-cursor-theme-size=0
|
||||||
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
gtk-theme-name=Dracula
|
gtk-theme-name=Dracula
|
||||||
gtk-icon-theme-name=<% opt.icon_theme %>
|
gtk-icon-theme-name=<% opt.icon_theme %>
|
||||||
gtk-font-name=<% opt.font %> 11
|
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-cursor-theme-size=0
|
||||||
gtk-enable-event-sounds=1
|
gtk-enable-event-sounds=1
|
||||||
gtk-enable-input-feedback-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'
|
riverctl map normal Alt Space spawn 'wofi --show run'
|
||||||
|
|
||||||
# cursor theme
|
# cursor theme
|
||||||
riverctl xcursor-theme <% opt.cursor_theme %>
|
riverctl xcursor-theme <% opt.cursor.theme %>
|
||||||
|
|
||||||
# power dialog
|
# power dialog
|
||||||
riverctl map normal Super+Shift P spawn gpower2
|
riverctl map normal Super+Shift P spawn gpower2
|
||||||
|
|
|
@ -10,7 +10,11 @@ opts.term = {
|
||||||
icon_name = "org.wezfurlong.wezterm",
|
icon_name = "org.wezfurlong.wezterm",
|
||||||
}
|
}
|
||||||
|
|
||||||
opts.cursor_theme = "LyraQ-cursors"
|
opts.cursor = {
|
||||||
|
theme = "LyraQ-cursors",
|
||||||
|
size = 24,
|
||||||
|
}
|
||||||
|
|
||||||
opts.icon_theme = "candy-icons"
|
opts.icon_theme = "candy-icons"
|
||||||
|
|
||||||
opts.commands = {
|
opts.commands = {
|
||||||
|
@ -19,7 +23,6 @@ opts.commands = {
|
||||||
calculator = "qalculate-gtk",
|
calculator = "qalculate-gtk",
|
||||||
file_manager = "thunar",
|
file_manager = "thunar",
|
||||||
file_manager_daemon = "thunar --daemon",
|
file_manager_daemon = "thunar --daemon",
|
||||||
|
|
||||||
-- zenity-compatible dialoger
|
-- zenity-compatible dialoger
|
||||||
zenity = "yad",
|
zenity = "yad",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue