Update FreeBSD to use KDE Plasma
This commit is contained in:
parent
82518b8b16
commit
d21f21f3f4
6 changed files with 10 additions and 25 deletions
|
@ -2,7 +2,7 @@
|
||||||
- name: Install core CLI packages
|
- name: Install core CLI packages
|
||||||
become: true
|
become: true
|
||||||
pkgng:
|
pkgng:
|
||||||
name: drm-kmod,en-freebsd-doc,git,pkg,py36-ansible,sudo
|
name: drm-kmod,en-freebsd-doc,git,pkg,py37-ansible,sudo
|
||||||
state: present
|
state: present
|
||||||
- name: Install additional CLI packages
|
- name: Install additional CLI packages
|
||||||
become: true
|
become: true
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
- mc
|
- mc
|
||||||
- nmap
|
- nmap
|
||||||
- openvpn
|
- openvpn
|
||||||
- py36-psutil
|
- py37-psutil
|
||||||
- rubygem-asciidoctor
|
- rubygem-asciidoctor
|
||||||
- sqlite3
|
- sqlite3
|
||||||
- tmux
|
- tmux
|
||||||
|
|
|
@ -11,26 +11,22 @@
|
||||||
state: present
|
state: present
|
||||||
vars:
|
vars:
|
||||||
packages:
|
packages:
|
||||||
- adwaita-icon-theme
|
|
||||||
- atril
|
|
||||||
- dbus
|
- dbus
|
||||||
- emacs
|
- emacs
|
||||||
- en_GB-libreoffice
|
- en_GB-libreoffice
|
||||||
- firefox-esr
|
- firefox-esr
|
||||||
- fvwm
|
|
||||||
- galculator
|
- galculator
|
||||||
- git-gui
|
- git-gui
|
||||||
- iosevka
|
- iosevka
|
||||||
|
- kde5
|
||||||
- liberation-fonts-ttf
|
- liberation-fonts-ttf
|
||||||
- libreoffice
|
- libreoffice
|
||||||
- luit
|
|
||||||
- mate-terminal
|
|
||||||
- mpv
|
- mpv
|
||||||
- nextcloudclient
|
- nextcloudclient
|
||||||
- redshift
|
- redshift
|
||||||
- remmina
|
- remmina
|
||||||
- remmina-plugin-rdp
|
- remmina-plugin-rdp
|
||||||
- rxvt-unicode
|
- rxvt-unicode
|
||||||
- seahorse
|
- sddm
|
||||||
- vim
|
- vim
|
||||||
- xinput
|
- xinput
|
||||||
|
|
|
@ -23,3 +23,9 @@
|
||||||
path: /etc/rc.conf
|
path: /etc/rc.conf
|
||||||
regexp: '^ifconfig_wlan0_ipv6=.*'
|
regexp: '^ifconfig_wlan0_ipv6=.*'
|
||||||
line: 'ifconfig_wlan0_ipv6="inet6 accept_rtadv"'
|
line: 'ifconfig_wlan0_ipv6="inet6 accept_rtadv"'
|
||||||
|
- name: Enable SDDM
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/rc.conf
|
||||||
|
regexp: '^sddm_enable=.*'
|
||||||
|
line: 'sddm_enable="YES"'
|
||||||
|
|
|
@ -5,12 +5,6 @@
|
||||||
name: dbus
|
name: dbus
|
||||||
state: started
|
state: started
|
||||||
enabled: yes
|
enabled: yes
|
||||||
- name: Enable XDM
|
|
||||||
become: true
|
|
||||||
lineinfile:
|
|
||||||
path: /etc/ttys
|
|
||||||
regexp: '^ttyv8\s.*'
|
|
||||||
line: 'ttyv8 "/usr/local/bin/xdm -nodaemon" xterm on secure'
|
|
||||||
- name: Set xorg keyboard layout
|
- name: Set xorg keyboard layout
|
||||||
become: true
|
become: true
|
||||||
copy:
|
copy:
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
PATH=/usr/bin:/bin:/usr/local/bin
|
|
||||||
xrdb -merge ~/.Xresources
|
|
||||||
xset b off
|
|
||||||
stalonetray &
|
|
||||||
redshift &
|
|
||||||
exec ssh-agent fvwm
|
|
|
@ -27,11 +27,6 @@
|
||||||
copy:
|
copy:
|
||||||
src: stalonetrayrc
|
src: stalonetrayrc
|
||||||
dest: "{{ ansible_env.HOME }}/.stalonetrayrc"
|
dest: "{{ ansible_env.HOME }}/.stalonetrayrc"
|
||||||
- name: Create FreeBSD xsession file
|
|
||||||
copy:
|
|
||||||
src: xsession-freebsd
|
|
||||||
dest: "{{ ansible_env.HOME }}/.xsession"
|
|
||||||
when: ansible_system == "FreeBSD"
|
|
||||||
- name: Create fvwm config file
|
- name: Create fvwm config file
|
||||||
copy:
|
copy:
|
||||||
src: fvwmrc
|
src: fvwmrc
|
||||||
|
|
Loading…
Reference in a new issue