mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-08 17:23:53 +00:00
44 lines
1.6 KiB
Nix
44 lines
1.6 KiB
Nix
{ pkgs, config, ... }: {
|
|
xdg.configFile = {
|
|
"qt5ct/qt5ct.conf".text = with pkgs.libsForQt5; ''
|
|
[Appearance]
|
|
color_scheme_path=${config.home.homeDirectory}/.config/qt5ct/colors/paradise.conf
|
|
custom_palette=true
|
|
icon_theme=Papirus-Dark
|
|
standard_dialogs=default
|
|
style=Fusion
|
|
|
|
[Fonts]
|
|
fixed="JetBrainsMono Nerd Font Mono,12,-1,5,50,0,0,0,0,0,Regular"
|
|
general="JetBrainsMono Nerd Font,12,-1,5,50,0,0,0,0,0,Regular"
|
|
|
|
[Interface]
|
|
activate_item_on_single_click=1
|
|
buttonbox_layout=0
|
|
cursor_flash_time=1000
|
|
dialog_buttons_have_icons=1
|
|
double_click_interval=400
|
|
gui_effects=@Invalid()
|
|
keyboard_scheme=2
|
|
menus_have_icons=true
|
|
show_shortcuts_in_context_menus=true
|
|
stylesheets=@Invalid()
|
|
toolbutton_style=4
|
|
underline_shortcut=1
|
|
wheel_scroll_lines=3
|
|
stylesheets=${qt5ct}/share/qt5ct/qss/scrollbar-simple.qss, ${qt5ct}/share/qt5ct/qss/sliders-simple.qss, ${qt5ct}/share/qt5ct/qss/tooltip-simple.qss, ${qt5ct}/share/qt5ct/qss/traynotification-simple.qss
|
|
|
|
[PaletteEditor]
|
|
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2v\0\0\x2\x10\0\0\0\0\0\0\0\0\0\0\x2v\0\0\x2\x10\0\0\0\0\x2\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x2v\0\0\x2\x10)
|
|
|
|
[SettingsWindow]
|
|
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x3\xad\0\0\x3\xf5\0\0\0\0\0\0\0\0\0\0\x3\xbf\0\0\x4\v\0\0\0\0\x2\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x3\xad\0\0\x3\xf5)
|
|
|
|
[Troubleshooting]
|
|
force_raster_widgets=1
|
|
ignored_applications=@Invalid()
|
|
'';
|
|
};
|
|
}
|
|
|