From 3c67187644a4589aa7ea1f2625b87179f571bb8b Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 5 Jul 2021 18:20:54 +0200 Subject: [PATCH] xsession: remove duplicate --- xsession | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 xsession diff --git a/xsession b/xsession deleted file mode 100644 index bc68080..0000000 --- a/xsession +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# Ensure we use the appropriate gtkrc-2.0 file -export GTK2_RC_FILES=$HOME/.gtkrc-2.0 - -# We do not want to rely on crappy mailcap -export MAILCAPS=$HOME/.mailcap - -# Make QT automatically scale according to screen DPI -export QT_AUTO_SCREEN_SCALE_FACTOR=1 -export QT_QPA_PLATFORMTHEME=qt5ct - -# GTK3 apps try to contact org.a11y.Bus. Disable that. -export NO_AT_BRIDGE=1 - -# Environment variables -unset LC_ALL -[ -e ~/.zshenv ] && . ~/.zshenv - -# Copy dotfiles -while read source target; do - mkdir -p $(dirname $target) - ln -sf ~/.config/i3/dotfiles/$source $HOME/$target -done <