Compare commits

..

No commits in common. "508ca8aa6afacbd46c47a341f4be894cb9a845ae" and "5cb62073a91f2bca96177f6f3ff7f44291ab32fa" have entirely different histories.

6 changed files with 8 additions and 121 deletions

View file

@ -1,8 +0,0 @@
[Appearance]
ColorScheme=AntTango
[General]
Command=$SHELL
Name=Ant
Parent=FALLBACK/
StartInCurrentSessionDir=false

View file

@ -1,100 +0,0 @@
[Background]
Color=238,238,236
[BackgroundFaint]
Color=238,238,236
[BackgroundIntense]
Color=238,238,236
[Color0]
Color=85,87,83
[Color0Faint]
Color=136,138,133
[Color0Intense]
Color=46,52,54
[Color1]
Color=204,0,0
[Color1Faint]
Color=239,41,41
[Color1Intense]
Color=164,0,0
[Color2]
Color=115,210,22
[Color2Faint]
Color=138,226,52
[Color2Intense]
Color=78,154,6
[Color3]
Color=237,212,0
[Color3Faint]
Color=252,233,79
[Color3Intense]
Color=196,160,0
[Color4]
Color=52,101,164
[Color4Faint]
Color=114,159,207
[Color4Intense]
Color=32,74,135
[Color5]
Color=117,80,123
[Color5Faint]
Color=173,127,168
[Color5Intense]
Color=92,53,102
[Color6]
Color=52,226,226
[Color6Faint]
Color=138,226,226
[Color6Intense]
Color=6,152,154
[Color7]
Color=211,215,207
[Color7Faint]
Color=238,238,236
[Color7Intense]
Color=186,189,182
[Foreground]
Color=46,52,54
[ForegroundFaint]
Color=46,52,54
[ForegroundIntense]
Color=46,52,54
[General]
Anchor=0.5,0.5
Blur=false
ColorRandomization=false
Description=AntTango
FillStyle=Tile
Opacity=1
Wallpaper=
WallpaperFlipType=NoFlip
WallpaperOpacity=1

View file

@ -1,5 +0,0 @@
[General]
Command=/home/ant/.dotnet/tools/pwsh
Name=PowerShell
Parent=FALLBACK/
StartInCurrentSessionDir=false

View file

@ -37,7 +37,3 @@
ansible.builtin.file:
path: "{{ ansible_env.XDG_DATA_HOME }}/icons"
state: directory
- name: Create $XDG_DATA_HOME/konsole
ansible.builtin.file:
path: "{{ ansible_env.XDG_DATA_HOME }}/konsole"
state: directory

View file

@ -87,7 +87,3 @@
ansible.builtin.copy:
src: "pwsh.svg"
dest: "{{ ansible_env.XDG_DATA_HOME }}/icons/pwsh.svg"
- name: Create $XDG_DATA_HOME/konsole/*
ansible.builtin.copy:
src: "konsole/"
dest: "{{ ansible_env.XDG_DATA_HOME }}/konsole"

View file

@ -17,6 +17,7 @@
ansible.builtin.stat:
path: /usr/bin/flatpak
register: flatpak
- name: Install flathub repo
community.general.flatpak_remote:
name: flathub
@ -24,3 +25,10 @@
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
method: user
when: flatpak.stat.exists == true
- name: Install Chromium flatpak
community.general.flatpak:
name: org.chromium.Chromium
state: present
method: user
when: flatpak.stat.exists == true