diff options
Diffstat (limited to 'files/etc/profile.d')
-rw-r--r-- | files/etc/profile.d/kde.sh.desktop | 2 | ||||
-rw-r--r-- | files/etc/profile.d/local-homedir.sh.common | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/files/etc/profile.d/kde.sh.desktop b/files/etc/profile.d/kde.sh.desktop index 010d5c1..55d0065 100644 --- a/files/etc/profile.d/kde.sh.desktop +++ b/files/etc/profile.d/kde.sh.desktop @@ -3,4 +3,6 @@ if [ "$XDG_CURRENT_DESKTOP" = KDE ]; then export SSH_ASKPASS_REQUIRE=prefer export SSH_ASKPASS=/usr/local/bin/ksshaskpass + # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280638 + export KWIN_SCREENSHOT_NO_PERMISSION_CHECKS=1 fi diff --git a/files/etc/profile.d/local-homedir.sh.common b/files/etc/profile.d/local-homedir.sh.common index 170a966..2310d7c 100644 --- a/files/etc/profile.d/local-homedir.sh.common +++ b/files/etc/profile.d/local-homedir.sh.common @@ -23,9 +23,3 @@ ln -sfn "${LOCAL_HOME}/.mozilla" "${HOME}/.mozilla" # thunderbird mkdir -p "${LOCAL_HOME}/.thunderbird" ln -sfn "${LOCAL_HOME}/.thunderbird" "${HOME}/.thunderbird" - -# kwallet -# The kwallet PAM module hard-codes ~/.local/share/kwalletd, but kwallet itself -# honors XDG_DATA_HOME! So we symlink from the local disk back into NFS. Gross! -mkdir -p "${LOCAL_HOME}/.local/share/kwalletd" -ln -sfn "${HOME}/.local/share/kwalletd/kwallet.salt" "${LOCAL_HOME}/.local/share/kwalletd/kdewallet.salt" |