Compare commits
2 Commits
7676943e69
...
30df2d5faf
| Author | SHA1 | Date | |
|---|---|---|---|
| 30df2d5faf | |||
| 896900392b |
@@ -14,6 +14,7 @@ desktop_roles:
|
|||||||
- kvantum
|
- kvantum
|
||||||
- minegrub
|
- minegrub
|
||||||
- nwg-look
|
- nwg-look
|
||||||
|
- qt5ct
|
||||||
- sddm
|
- sddm
|
||||||
- wakatime
|
- wakatime
|
||||||
|
|
||||||
|
|||||||
12
main.yml
12
main.yml
@@ -3,6 +3,18 @@
|
|||||||
hosts: localhost
|
hosts: localhost
|
||||||
connection: local
|
connection: local
|
||||||
tasks:
|
tasks:
|
||||||
|
- name: Get username
|
||||||
|
command: whoami
|
||||||
|
register: whoami
|
||||||
|
tags:
|
||||||
|
- always
|
||||||
|
|
||||||
|
- name: Set username
|
||||||
|
set_fact:
|
||||||
|
username: "{{ whoami.stdout }}"
|
||||||
|
tags:
|
||||||
|
- always
|
||||||
|
|
||||||
- name: Set default roles
|
- name: Set default roles
|
||||||
set_fact:
|
set_fact:
|
||||||
roles: "{{ ansible_run_tags != ['all'] and ansible_run_tags or default_roles | difference(ansible_skip_tags | default([])) }}"
|
roles: "{{ ansible_run_tags != ['all'] and ansible_run_tags or default_roles | difference(ansible_skip_tags | default([])) }}"
|
||||||
|
|||||||
@@ -20,4 +20,6 @@
|
|||||||
|
|
||||||
- name: "[Fish] Set shell"
|
- name: "[Fish] Set shell"
|
||||||
ansible.builtin.shell:
|
ansible.builtin.shell:
|
||||||
cmd: "usermod -s $(which fish) $(whoami)"
|
cmd: "sudo usermod -s $(which fish) {{ username }}"
|
||||||
|
become: true
|
||||||
|
ignore_errors: true
|
||||||
|
|||||||
@@ -6,4 +6,4 @@ env = HYPRCURSOR_THEME,rose-pine-hyprcursor
|
|||||||
env = XDG_SESSION_TYPE,wayland
|
env = XDG_SESSION_TYPE,wayland
|
||||||
env = WLR_NO_HARDWARE_CURSORS,1
|
env = WLR_NO_HARDWARE_CURSORS,1
|
||||||
env = QT_QPA_PLATFORMTHEME,qt5ct
|
env = QT_QPA_PLATFORMTHEME,qt5ct
|
||||||
env = QT_STYLE_OVERRIDE,kvantum
|
env = QT_STYLE_OVERRIDE,qt5ct
|
||||||
|
|||||||
@@ -8,10 +8,10 @@
|
|||||||
- name: "[Kvantum] Create config folder"
|
- name: "[Kvantum] Create config folder"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
mode: "0755"
|
mode: "0755"
|
||||||
path: "{{ ansible_user_dir }}/.config/kvantum"
|
path: "{{ ansible_user_dir }}/.config/Kvantum"
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
- name: "[Kvantum] Configure"
|
- name: "[Kvantum] Configure"
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "./"
|
src: "./"
|
||||||
dest: "{{ ansible_user_dir }}/.config/kvantum"
|
dest: "{{ ansible_user_dir }}/.config/Kvantum"
|
||||||
|
|||||||
@@ -27,8 +27,7 @@ require("lazy").setup({
|
|||||||
name = "catppuccin.vim",
|
name = "catppuccin.vim",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
vim.g.catppuccin_flavor = "macchiato"
|
vim.cmd.colorscheme("catppuccin")
|
||||||
vim.cmd [[colorscheme catppuccin]]
|
|
||||||
end,
|
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