Compare commits

...

2 commits

Author SHA1 Message Date
508ca8aa6a Stop installing Chromium 2024-11-05 11:09:10 +00:00
a65019044c Add Konsole profiles 2024-11-05 11:08:32 +00:00
6 changed files with 121 additions and 8 deletions

View file

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

View file

@ -0,0 +1,100 @@
[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

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

View file

@ -37,3 +37,7 @@
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,3 +87,7 @@
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,7 +17,6 @@
ansible.builtin.stat:
path: /usr/bin/flatpak
register: flatpak
- name: Install flathub repo
community.general.flatpak_remote:
name: flathub
@ -25,10 +24,3 @@
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