Added qt5ct
This commit is contained in:
@@ -20,4 +20,6 @@
|
||||
|
||||
- name: "[Fish] Set shell"
|
||||
ansible.builtin.shell:
|
||||
cmd: "usermod -s $(which fish) $(whoami)"
|
||||
cmd: "sudo usermod -s $(which fish) $(whoami)"
|
||||
become: true
|
||||
ignore_errors: true
|
||||
|
||||
@@ -6,4 +6,4 @@ env = HYPRCURSOR_THEME,rose-pine-hyprcursor
|
||||
env = XDG_SESSION_TYPE,wayland
|
||||
env = WLR_NO_HARDWARE_CURSORS,1
|
||||
env = QT_QPA_PLATFORMTHEME,qt5ct
|
||||
env = QT_STYLE_OVERRIDE,kvantum
|
||||
env = QT_STYLE_OVERRIDE,qt5ct
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
- name: "[Kvantum] Create config folder"
|
||||
ansible.builtin.file:
|
||||
mode: "0755"
|
||||
path: "{{ ansible_user_dir }}/.config/kvantum"
|
||||
path: "{{ ansible_user_dir }}/.config/Kvantum"
|
||||
state: directory
|
||||
|
||||
- name: "[Kvantum] Configure"
|
||||
ansible.builtin.copy:
|
||||
src: "./"
|
||||
dest: "{{ ansible_user_dir }}/.config/kvantum"
|
||||
dest: "{{ ansible_user_dir }}/.config/Kvantum"
|
||||
|
||||
@@ -27,8 +27,7 @@ require("lazy").setup({
|
||||
name = "catppuccin.vim",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.g.catppuccin_flavor = "macchiato"
|
||||
vim.cmd [[colorscheme catppuccin]]
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
end,
|
||||
},
|
||||
|
||||
|
||||
32
roles/qt5ct/files/qt5ct.conf
Normal file
32
roles/qt5ct/files/qt5ct.conf
Normal file
@@ -0,0 +1,32 @@
|
||||
[Appearance]
|
||||
color_scheme_path=/usr/share/qt5ct/colors/darker.conf
|
||||
custom_palette=false
|
||||
icon_theme=Papirus
|
||||
standard_dialogs=default
|
||||
style=kvantum-dark
|
||||
|
||||
[Fonts]
|
||||
fixed="CaskaydiaCove Nerd Font Mono,12,-1,5,50,0,0,0,0,0,Regular"
|
||||
general="CaskaydiaCove 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
|
||||
|
||||
[SettingsWindow]
|
||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x80\0\0\0\0\0\0\fw\0\0\x2\xb7\0\0\0\0\0\0\0\0\0\0\x4\xff\0\0\x2\xbe\0\0\0\0\x2\0\0\0\n\0\0\0\a\x80\0\0\0\0\0\0\fw\0\0\x2\xb7)
|
||||
|
||||
[Troubleshooting]
|
||||
force_raster_widgets=1
|
||||
ignored_applications=@Invalid()
|
||||
17
roles/qt5ct/tasks/main.yml
Normal file
17
roles/qt5ct/tasks/main.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
- name: "[QT5CT] Install"
|
||||
kewlfft.aur.aur:
|
||||
name:
|
||||
- qt5ct
|
||||
state: present
|
||||
|
||||
- name: "[QT5CT] Create config folder"
|
||||
ansible.builtin.file:
|
||||
mode: "0755"
|
||||
path: "{{ ansible_user_dir }}/.config/qt5ct"
|
||||
state: directory
|
||||
|
||||
- name: "[QT5CT] Configure"
|
||||
ansible.builtin.copy:
|
||||
src: "./"
|
||||
dest: "{{ ansible_user_dir }}/.config/qt5ct"
|
||||
Reference in New Issue
Block a user