-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackages.yml
70 lines (69 loc) · 2.46 KB
/
packages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
- hosts: local
connection: local
tasks:
- name: Enable the Yum repo for rpmfusion
shell: yum localinstall -y --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm creates=/etc/yum.repos.d/rpmfusion-free.repo
- yum: name={{item}} state=present
with_items:
- ack
- aggregate
- cantata
- clusterssh
- emacs
- emacs-color-theme-el
- gstreamer-ffmpeg
- gstreamer-plugins-ugly
- hunspell-en
- ktouch
- mplayer
- picard
- pssh
- pwgen
- sipcalc
- strace
- swaks
- telnet
- unrar
- whois
- wireshark-gnome
- words
# for xterm:
- xorg-x11-fonts-misc
- name: Add sheldonh to the wireshark group
user: name=sheldonh append=yes groups=wireshark
- name: configure cantata
hosts: local
connection: local
sudo: yes
sudo_user: "{{user}}"
tasks:
- kconfig: file=cantatarc group=Connection key=dir value=/var/lib/mpd/music/
- kconfig: file=cantatarc group=Connection key=host value=linsh.dur1.host-h.net
- kconfig: file=cantatarc group=Connection key=passwd value=true
- kconfig: file=cantatarc group=Connection key=port value=6600
- name: disable Nepomuk File Indexer
hosts: local
connection: local
sudo: yes
sudo_user: "{{user}}"
tasks:
- kconfig: file=nepomukserverrc group="Basic Settings" key="Start Nepomuk" value=true
- kconfig: file=nepomukserverrc group="Service-nepomukfileindexer" key=autostart value=false
- name: enable auto-login
hosts: local
connection: local
tasks:
- kconfig: file=/etc/kde/kdm/kdmrc group=X-:0-Core key=AutoLoginEnable value=true
- kconfig: file=/etc/kde/kdm/kdmrc group=X-:0-Core key=AutoLoginLocked value=false
- kconfig: file=/etc/kde/kdm/kdmrc group=X-:0-Core key=AutoLoginUser value="{{user}}"
- kconfig: file=/etc/kde/kdm/kdmrc group=X-:0-Core key=ClientLogFile value=.xsession-errors
- name: enable mouse hover focus
hosts: local
connection: local
sudo: yes
sudo_user: "{{user}}"
tasks:
- kconfig: file=kwinrc group=Windows key=FocusPolicy value=FocusFollowsMouse
- kconfig: file=kwinrc group=Windows key=NextFocusPrefersMouse value=true
- kconfig: file=kwinrc group=Windows key=DelayFocusInterval value=true