chore(pp): remove alacritty terminal install

Now I am using the builtin terminal, simple-terminal or mate terminal
for ubuntu.
This commit is contained in:
Ade Attwood 2022-07-07 19:42:18 +01:00
parent 742e5fa82d
commit 42e3ec99e4
2 changed files with 0 additions and 27 deletions

View file

@ -39,24 +39,6 @@ node default {
#
apt::ppa { 'ppa:neovim-ppa/stable': }
#
# Install alacritty from deb archive is not available
#
archive { '/tmp/alacritty.deb':
ensure => present,
source => 'https://github.com/alacritty/alacritty/releases/download/v0.4.3/Alacritty-v0.4.3-ubuntu_18_04_amd64.deb',
checksum => 'f4e40511e1e1495d15e518f5bfccfff2ed69b171ff53964622c1e66bbe954000',
checksum_type => 'sha256',
}
package { 'alacritty':
ensure => present,
provider => dpkg,
source => '/tmp/alacritty.deb',
require => [
Archive['/tmp/alacritty.deb']
],
}
#
# Install all the packages that the workstation needs to run

View file

@ -1,13 +1,4 @@
class core::terminal {
file { "${user_home}/.config/alacritty":
ensure => 'directory',
}
file { "${user_home}/.config/alacritty/alacritty.yml":
ensure => 'link',
target => find_file('core/alacritty.yml'),
}
vcsrepo { "${user_home}/.config/base16-shell":
ensure => latest,
source => 'https://github.com/chriskempson/base16-shell.git',