Compare commits
No commits in common. "94a0a3d5056232ddf93cf9060bb4586d9708b51d" and "7204fa768a13167dfca17bfceb13016c1582c2ad" have entirely different histories.
94a0a3d505
...
7204fa768a
|
@ -17,52 +17,10 @@
|
||||||
repo: "{{ comice_control_git }}"
|
repo: "{{ comice_control_git }}"
|
||||||
dest: "{{ home_directory }}/Downloads/comice-control-center"
|
dest: "{{ home_directory }}/Downloads/comice-control-center"
|
||||||
|
|
||||||
- name: Comice Control center | Install pip dependencies
|
- name: Comice Control center | Install dependencies
|
||||||
shell:
|
shell:
|
||||||
cmd: "cd {{ home_directory }}/Downloads/comice-control-center && pip3 install -r requirements.txt"
|
cmd: "cd {{ home_directory }}/Downloads/comice-control-center && pip3 install -r requirements.txt"
|
||||||
|
|
||||||
- name: Comice Control center | Add Launcher - plugin-31
|
# - name: Comice Control center | Run script
|
||||||
xfconf:
|
# shell:
|
||||||
channel: xfce4-panel
|
# cmd: "cd {{ home_directory }}/Downloads/comice-control-center && ./comice-control-center"
|
||||||
property: /plugins/plugin-31
|
|
||||||
value_type: string
|
|
||||||
value: launcher
|
|
||||||
|
|
||||||
- name: Comice Control center | Modify Launcher - plugin-31
|
|
||||||
xfconf:
|
|
||||||
channel: xfce4-panel
|
|
||||||
property: /plugins/plugin-31/items
|
|
||||||
value_type: string
|
|
||||||
value: "comice-control-center.desktop"
|
|
||||||
force_array: yes
|
|
||||||
|
|
||||||
- name: Comice Control center | Make sure ~/.config/xfce4/panel/launcher-31 exists
|
|
||||||
file:
|
|
||||||
path: "{{ home_directory }}/.config/xfce4/panel/launcher-31"
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: Comice Control center | Add comice-control-center.desktop
|
|
||||||
template:
|
|
||||||
src: comice-control-center.desktop
|
|
||||||
dest: "{{ home_directory }}/.config/xfce4/panel/launcher-31/comice-control-center.desktop"
|
|
||||||
|
|
||||||
- name: Comice Control center | Add separator - plugin-32
|
|
||||||
xfconf:
|
|
||||||
channel: xfce4-panel
|
|
||||||
property: /plugins/plugin-32
|
|
||||||
value_type: string
|
|
||||||
value: separator
|
|
||||||
|
|
||||||
- name: Comice Control center | Modify separator - plugin-32
|
|
||||||
xfconf:
|
|
||||||
channel: xfce4-panel
|
|
||||||
property: /plugins/plugin-32/style
|
|
||||||
value_type: uint
|
|
||||||
value: 0
|
|
||||||
|
|
||||||
- name: Xfce Panel | Rearrange Plugins
|
|
||||||
xfconf:
|
|
||||||
channel: xfce4-panel
|
|
||||||
property: /panels/panel-1/plugin-ids
|
|
||||||
value_type: int
|
|
||||||
value: [26,1,3,30,5,29,28,6,7,8,9,10,32,31,11,12,13,14,27]
|
|
||||||
|
|
|
@ -15,19 +15,17 @@
|
||||||
- include_tasks: rofi-launcher.yml
|
- include_tasks: rofi-launcher.yml
|
||||||
|
|
||||||
- include_tasks: ulauncher.yml
|
- include_tasks: ulauncher.yml
|
||||||
when: enable_ulauncher
|
|
||||||
|
|
||||||
- include_tasks: conky.yml
|
- include_tasks: conky.yml
|
||||||
when: enable_conky
|
|
||||||
|
|
||||||
- include_tasks: lightdm-greeter.yml
|
- include_tasks: lightdm-greeter.yml
|
||||||
|
|
||||||
- include_tasks: picom-compositor.yml
|
- include_tasks: picom-compositor.yml
|
||||||
when: enable_picom
|
|
||||||
|
|
||||||
- include_tasks: customize-firefox.yml
|
- include_tasks: customize-firefox.yml
|
||||||
|
|
||||||
- include_tasks: xfce-terminal.yml
|
- include_tasks: xfce-terminal.yml
|
||||||
|
|
||||||
|
- include_tasks: file-manager.yml
|
||||||
|
|
||||||
- include_tasks: comice-control.yml
|
- include_tasks: comice-control.yml
|
||||||
when: enable_comice_control
|
|
|
@ -1,10 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Version=1.0
|
|
||||||
Type=Application
|
|
||||||
Name=comice-control-center
|
|
||||||
Comment=Comice control center
|
|
||||||
Exec={{ home_directory }}/Downloads/comice-control-center/comice-control-center
|
|
||||||
Icon={{ home_directory }}/Downloads/update-xfce-bigsur/icons/sideBar-controlCentre-white.svg
|
|
||||||
Path={{ home_directory }}/Downloads/comice-control-center
|
|
||||||
Terminal=false
|
|
||||||
StartupNotify=false
|
|
|
@ -6,13 +6,7 @@ autostart_path: "{{ home_directory }}/.config/autostart"
|
||||||
lightdm_path: /etc/lightdm
|
lightdm_path: /etc/lightdm
|
||||||
terminal_config_path: "{{ home_directory }}/.config/xfce4/terminal"
|
terminal_config_path: "{{ home_directory }}/.config/xfce4/terminal"
|
||||||
|
|
||||||
# Add-ons
|
|
||||||
|
|
||||||
# Disabling compositor gives a beautiful blurry window borders
|
# Disabling compositor gives a beautiful blurry window borders
|
||||||
# But it's been observed that it cause issues with the whole system
|
# But it's been observed that it cause issues with the whole system
|
||||||
# So its default to false for now
|
# So its default to false for now
|
||||||
enable_picom: false
|
enable_picom: false
|
||||||
|
|
||||||
enable_ulauncher: false
|
|
||||||
enable_conky: true
|
|
||||||
enable_comice_control: true
|
|
Loading…
Reference in New Issue
Block a user