Add Konsole profiles
This commit is contained in:
parent
5cb62073a9
commit
a65019044c
5 changed files with 121 additions and 0 deletions
8
roles/home-gui/files/konsole/Ant.profile
Normal file
8
roles/home-gui/files/konsole/Ant.profile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[Appearance]
|
||||||
|
ColorScheme=AntTango
|
||||||
|
|
||||||
|
[General]
|
||||||
|
Command=$SHELL
|
||||||
|
Name=Ant
|
||||||
|
Parent=FALLBACK/
|
||||||
|
StartInCurrentSessionDir=false
|
100
roles/home-gui/files/konsole/AntTango.colorscheme
Normal file
100
roles/home-gui/files/konsole/AntTango.colorscheme
Normal 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
|
5
roles/home-gui/files/konsole/PowerShell.profile
Normal file
5
roles/home-gui/files/konsole/PowerShell.profile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[General]
|
||||||
|
Command=/home/ant/.dotnet/tools/pwsh
|
||||||
|
Name=PowerShell
|
||||||
|
Parent=FALLBACK/
|
||||||
|
StartInCurrentSessionDir=false
|
|
@ -37,3 +37,7 @@
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ ansible_env.XDG_DATA_HOME }}/icons"
|
path: "{{ ansible_env.XDG_DATA_HOME }}/icons"
|
||||||
state: directory
|
state: directory
|
||||||
|
- name: Create $XDG_DATA_HOME/konsole
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ ansible_env.XDG_DATA_HOME }}/konsole"
|
||||||
|
state: directory
|
||||||
|
|
|
@ -87,3 +87,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "pwsh.svg"
|
src: "pwsh.svg"
|
||||||
dest: "{{ ansible_env.XDG_DATA_HOME }}/icons/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"
|
||||||
|
|
Loading…
Reference in a new issue