summaryrefslogtreecommitdiff
path: root/modules/profiles/manifests/dolphin.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
commitdd28dcf3d620a4ac7d0a1532b812213cf094cd3c (patch)
treea3fa8c8ef446de2bcc2f317bceb4bca868f7e0f0 /modules/profiles/manifests/dolphin.pp
parentMove webdav into profiles. (diff)
downloadwebdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.gz
webdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.xz
Revert "Move webdav into profiles."
It actually reverts the non-need for the nginx module webdav_ext. Since Omnifocus requires PROPFIND. This reverts commit edf6ffe8b399679ba28cc5e558a6838919dd1ee8.
Diffstat (limited to 'modules/profiles/manifests/dolphin.pp')
-rw-r--r--modules/profiles/manifests/dolphin.pp70
1 files changed, 0 insertions, 70 deletions
diff --git a/modules/profiles/manifests/dolphin.pp b/modules/profiles/manifests/dolphin.pp
deleted file mode 100644
index f1fdcf8..0000000
--- a/modules/profiles/manifests/dolphin.pp
+++ /dev/null
@@ -1,70 +0,0 @@
-# Configure the file manager dolphin
-class profiles::dolphin {
- ensure_packages ([
- 'dolphin',
- 'kde-cli-tools',
- 'ffmpegthumbs',
- 'kdegraphics-thumbnailers',
- 'konsole',
- 'breeze-icons',
- ], { ensure => installed })
-
-
- $dolphin_settings = {
- 'General' => {
- 'BrowseThroughArchives' => 'true',
- 'GlobalViewProps' => 'false',
- 'HomeUrl' => '/usr/net/video',
- 'OpenExternallyCalledFolderInNewTab' => 'false',
- 'RememberOpenedTabs' => 'false',
- 'ShowFullPath' => 'true',
- },
- 'MainWindow' => {
- 'MenuBar' => 'Disabled',
- 'ToolBarsMovable' => 'Disabled',
- },
- 'VersionControl' => {
- 'enabledPlugins' => [
- 'Dropbox',
- 'Git',
- ]
- },
- 'PreviewSettings' => {
- 'Plugins' => [
- 'appimagethumbnail',
- 'audiothumbnail',
- 'blenderthumbnail',
- 'comicbookthumbnail',
- 'djvuthumbnail',
- 'ebookthumbnail',
- 'exrthumbnail',
- 'directorythumbnail',
- 'fontthumbnail',
- 'imagethumbnail',
- 'jpegthumbnail',
- 'kraorathumbnail',
- 'windowsexethumbnail',
- 'windowsimagethumbnail',
- 'opendocumentthumbnail',
- 'gsthumbnail',
- 'svgthumbnail',
- 'textthumbnail',
- 'ffmpegthumbs',
- ]
- }
- }
-
- $dolphin_settings.map |$category, $group| {
- $group.map |$setting, $value| {
- ini_setting { "Dolphin [${category}].${setting}":
- path => '/etc/xdg/dolphinrc',
- section => $category,
- setting => $setting,
- value => $value ? {
- Array => $value.join(','),
- String => $value,
- }
- }
- }
- }
-}