Advertisement
constantin-net

awesomewm_gtk3_theme_test

Jun 16th, 2023
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.94 KB | None | 0 0
  1. local naughty = require("naughty")
  2. naughty.notify({timeout = 100, position = "bottom_right", font = "Liberation Mono Bold 12",
  3. text = " font_size = " .. theme_gtk.font_size .."\n" ..
  4. " font_family = " .. theme_gtk.font_family .. "\n" ..
  5. " button_border_radius = " .. theme_gtk.button_border_radius .. "\n" ..
  6. " button_border_width = " .. theme_gtk.button_border_width .. "\n" ..
  7. theme_gtk.bg_color .. ' =<span color="' .. theme_gtk.bg_color .. '"> bg_color </span> \n' ..
  8. theme_gtk.fg_color .. ' =<span color="' .. theme_gtk.fg_color .. '"> fg_color </span> \n' ..
  9. theme_gtk.base_color .. ' =<span color="' .. theme_gtk.base_color .. '"> base_color </span> \n' ..
  10. theme_gtk.text_color .. ' =<span color="' .. theme_gtk.text_color .. '"> text_color </span> \n' ..
  11. theme_gtk.button_bg_color .. ' =<span color="' .. theme_gtk.button_bg_color .. '"> button_bg_color </span> \n' ..
  12. theme_gtk.button_fg_color .. ' =<span color="' .. theme_gtk.button_fg_color .. '"> button_fg_color </span> \n' ..
  13. theme_gtk.button_border_color .. ' =<span color="' .. theme_gtk.button_border_color .. '"> button_border_color </span> \n' ..
  14. theme_gtk.selected_bg_color .. ' =<span color="' .. theme_gtk.selected_bg_color .. '"> selected_bg_color </span> \n' ..
  15. theme_gtk.selected_fg_color .. ' =<span color="' .. theme_gtk.selected_fg_color .. '"> selected_fg_color </span> \n' ..
  16. theme_gtk.menubar_bg_color .. ' =<span color="' .. theme_gtk.menubar_bg_color .. '"> menubar_bg_color </span> \n' ..
  17. theme_gtk.menubar_fg_color .. ' =<span color="' .. theme_gtk.menubar_fg_color .. '"> menubar_fg_color </span> \n' ..
  18. theme_gtk.header_button_bg_color .. ' =<span color="' .. theme_gtk.header_button_bg_color .. '"> header_button_bg_color </span> \n' ..
  19. theme_gtk.header_button_fg_color .. ' =<span color="' .. theme_gtk.header_button_fg_color .. '"> header_button_fg_color </span> \n' ..
  20. theme_gtk.header_button_border_color .. ' =<span color="' .. theme_gtk.header_button_border_color .. '"> header_button_border_color </span> \n' ..
  21. theme_gtk.error_color .. ' =<span color="' .. theme_gtk.error_color .. '"> error_color </span> \n' ..
  22. theme_gtk.error_bg_color .. ' =<span color="' .. theme_gtk.error_bg_color .. '"> error_bg_color </span> \n' ..
  23. theme_gtk.error_fg_color .. ' =<span color="' .. theme_gtk.error_fg_color .. '"> error_fg_color </span> \n' ..
  24. theme_gtk.warning_color .. ' =<span color="' .. theme_gtk.warning_color .. '"> warning_color </span> \n' ..
  25. theme_gtk.warning_bg_color .. ' =<span color="' .. theme_gtk.warning_bg_color .. '"> warning_bg_color </span> \n' ..
  26. theme_gtk.warning_fg_color .. ' =<span color="' .. theme_gtk.warning_fg_color .. '"> warning_fg_color </span> \n' ..
  27. theme_gtk.success_color .. ' =<span color="' .. theme_gtk.success_color .. '"> success_color  </span> \n' ..
  28. theme_gtk.success_bg_color .. ' =<span color="' .. theme_gtk.success_bg_color .. '"> success_bg_color </span> \n' ..
  29. theme_gtk.success_fg_color .. ' =<span color="' .. theme_gtk.success_fg_color .. '"> success_fg_color </span> \n' ..
  30. theme_gtk.tooltip_bg_color .. ' =<span color="' .. theme_gtk.tooltip_bg_color .. '"> tooltip_bg_color </span> \n' ..
  31. theme_gtk.tooltip_fg_color .. ' =<span color="' .. theme_gtk.tooltip_fg_color .. '"> tooltip_fg_color </span> \n' ..
  32. theme_gtk.osd_bg_color .. ' =<span color="' .. theme_gtk.osd_bg_color .. '"> osd_bg_color </span> \n' ..
  33. theme_gtk.osd_fg_color .. ' =<span color="' .. theme_gtk.osd_fg_color .. '"> osd_fg_color  </span> \n' ..
  34. theme_gtk.osd_border_color .. ' =<span color="' .. theme_gtk.osd_border_color .. '"> osd_border_color </span> \n' ..       
  35. theme_gtk.wm_bg_color .. ' =<span color="' .. theme_gtk.wm_bg_color .. '"> wm_bg_color </span> \n' ..
  36. theme_gtk.wm_border_focused_color .. ' =<span color="' .. theme_gtk.wm_border_focused_color .. '"> wm_border_focused_color </span> \n' ..
  37. theme_gtk.wm_border_unfocused_color ..' =<span color="' .. theme_gtk.wm_border_unfocused_color .. '"> wm_border_unfocused_color </span> \n'
  38. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement