diff --git a/.config/Nextcloud/nextcloud.cfg b/.config/Nextcloud/nextcloud.cfg new file mode 100644 index 0000000..b1963ba --- /dev/null +++ b/.config/Nextcloud/nextcloud.cfg @@ -0,0 +1,29 @@ +[General] +confirmExternalStorage=false +crashReporter=false +monoIcons=true +newBigFolderSizeLimit=999999 +optionalServerNotifications=false +showCallNotifications=false +useNewBigFolderSizeLimit=false + +[Accounts] +0\Folders\1\ignoreHiddenFiles=false +0\Folders\1\localPath=/home/alexander/data/ +0\Folders\1\paused=false +0\Folders\1\targetPath=/ +0\Folders\1\version=2 +0\Folders\1\virtualFilesMode=off +0\authType=webflow +0\dav_user=alexander +0\url=https://nextcloud.webartifex.biz +0\user=@Invalid() +0\version=1 +0\webflow_user=alexander +version=2 + +[Nextcloud] +autoUpdateCheck=false + +[Proxy] +type=2 diff --git a/.config/Nextcloud/sync-exclude.lst b/.config/Nextcloud/sync-exclude.lst new file mode 100644 index 0000000..21e1813 --- /dev/null +++ b/.config/Nextcloud/sync-exclude.lst @@ -0,0 +1,49 @@ +# This file contains fixed global exclude patterns + +*~ +~$* +.~lock.* +~*.tmp +]*.~* +]Icon\r* +].DS_Store +].ds_store +*.textClipping +._* +]Thumbs.db +]photothumb.db +System Volume Information + +.*.sw? +.*.*sw? + +].TemporaryItems +].Trashes +].DocumentRevisions-V100 +].Trash-* +.fseventd +.apdisk +.Spotlight-V100 + +.directory + +*.part +*.filepart +*.crdownload + +*.kate-swp +*.gnucash.tmp-* + +.synkron.* +.sync.ffs_db +.symform +.symform-store +.fuse_hidden* +*.unison +.nfs* + +My Saved Places. + +\#*# + +*.sb-* diff --git a/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop b/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop new file mode 100644 index 0000000..219765f --- /dev/null +++ b/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Nextcloud +GenericName=File Synchronizer +Exec="/usr/bin/nextcloud" --background +Terminal=false +Icon=Nextcloud +Categories=Network +Type=Application +StartupNotify=false +X-GNOME-Autostart-enabled=true +X-GNOME-Autostart-Delay=10 diff --git a/.config/shell/utils.sh b/.config/shell/utils.sh index dea2af8..3ce16ef 100644 --- a/.config/shell/utils.sh +++ b/.config/shell/utils.sh @@ -280,6 +280,15 @@ _update_zplug() { } +run-private-scripts() { # in the Nextcloud + if [ -d "$HOME/data/getraenkemarkt/shell" ]; then + for file in $HOME/data/getraenkemarkt/shell/*.sh; do + source $file + done + fi +} + + update-machine() { sudo --validate || return diff --git a/.config/user-dirs.dirs b/.config/user-dirs.dirs new file mode 100644 index 0000000..6daa862 --- /dev/null +++ b/.config/user-dirs.dirs @@ -0,0 +1,10 @@ +# Configure the XDG user directories to integrate Nextcloud + +XDG_DESKTOP_DIR="$HOME/desktop" +XDG_DOCUMENTS_DIR="$HOME/data" +XDG_DOWNLOAD_DIR="$HOME/downloads" +XDG_MUSIC_DIR="$HOME/data" +XDG_PICTURES_DIR="$HOME/data/pictures" +XDG_PUBLICSHARE_DIR="$HOME/data/shares/public" +XDG_TEMPLATES_DIR="$HOME/data/templates" +XDG_VIDEOS_DIR="$HOME/data/pictures/videos"