Update 3 files
- /home/.chezmoiscripts/universal/run_onchange_after_22-kde-settings.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_70-misc-bug-fixes.tmpl - /software.yml
This commit is contained in:
parent
604996fa10
commit
fe6b3e96d2
3 changed files with 32 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
||||||
|
{{- if eq .host.distro.family "linux" -}}
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
{{ includeTemplate "universal/profile" }}
|
||||||
|
{{ includeTemplate "universal/logg" }}
|
||||||
|
|
||||||
|
if command -v plasmashell > /dev/null; then
|
||||||
|
logg info 'KDE plasmashell is installed'
|
||||||
|
fi
|
||||||
|
|
||||||
|
{{ end -}}
|
|
@ -6,6 +6,14 @@
|
||||||
{{ includeTemplate "universal/profile" }}
|
{{ includeTemplate "universal/profile" }}
|
||||||
{{ includeTemplate "universal/logg" }}
|
{{ includeTemplate "universal/logg" }}
|
||||||
|
|
||||||
|
### Remove Ubuntu logo branding from GDM lock screen
|
||||||
|
if [ '{{ .whiteLabel }}' == 'true' ]; then
|
||||||
|
if [ -f /usr/share/plymouth/ubuntu-logo.png ]; then
|
||||||
|
logg info 'Renaming `/usr/share/plymouth/ubuntu-logo.png` to `/usr/share/plymouth/ubuntu-logo.png.bak` since the whiteLabel setting is true'
|
||||||
|
sudo mv /usr/share/plymouth/ubuntu-logo.png /usr/share/plymouth/ubuntu-logo.png.bak
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
### Fix for Ubuntu default extension conflicting with dash-to-dock
|
### Fix for Ubuntu default extension conflicting with dash-to-dock
|
||||||
if dconf read /org/gnome/shell/enabled-extensions | grep dash-to-dock > /dev/null; then
|
if dconf read /org/gnome/shell/enabled-extensions | grep dash-to-dock > /dev/null; then
|
||||||
if [ -d '/usr/share/gnome-shell/extensions/ubuntu-dock@ubuntu.com' ]; then
|
if [ -d '/usr/share/gnome-shell/extensions/ubuntu-dock@ubuntu.com' ]; then
|
||||||
|
|
13
software.yml
13
software.yml
|
@ -175,6 +175,9 @@ installerPreference:
|
||||||
- ansible
|
- ansible
|
||||||
- binary
|
- binary
|
||||||
softwarePackages:
|
softwarePackages:
|
||||||
|
_kde:
|
||||||
|
_deps:
|
||||||
|
- plasma-desktop
|
||||||
_misc-flatpaks:
|
_misc-flatpaks:
|
||||||
_deps:
|
_deps:
|
||||||
- bottles
|
- bottles
|
||||||
|
@ -1556,6 +1559,16 @@ softwarePackages:
|
||||||
pkg: git-delta
|
pkg: git-delta
|
||||||
scoop: delta
|
scoop: delta
|
||||||
_service: false
|
_service: false
|
||||||
|
plasma-desktop:
|
||||||
|
_bin: plasmashell
|
||||||
|
_desc: null
|
||||||
|
_docs: null
|
||||||
|
_github: null
|
||||||
|
_home: null
|
||||||
|
_name: KDE
|
||||||
|
apt: plasma-desktop
|
||||||
|
dnf: plasma-desktop
|
||||||
|
pacman: plasma-desktop
|
||||||
delve:
|
delve:
|
||||||
_bin: dlv
|
_bin: dlv
|
||||||
_desc: Delve is a debugger for the Go programming language.
|
_desc: Delve is a debugger for the Go programming language.
|
||||||
|
|
Loading…
Reference in a new issue