From 873442815ad9030dbf9694dbdd1a23685317f74b Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 3 Jun 2019 15:17:22 +0200 Subject: Some stuff --- .bashrc | 3 +++ .compton.conf | 8 ++++++-- install.sh | 3 +-- nvim/init.vim | 3 +++ packages.txt | 10 ++++++++++ 5 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 nvim/init.vim create mode 100644 packages.txt diff --git a/.bashrc b/.bashrc index 8266fd0..1725fa7 100644 --- a/.bashrc +++ b/.bashrc @@ -9,6 +9,9 @@ #[ -n "$XTERM_VERSION" ] && transset-df --id "$WINDOWID" >/dev/null #MOVED TO COMPTON CONF +export EDITOR=nvim +export VISUAL=nvim + alias ls='ls --color=auto' PS1='[\u@\h \W]\$ ' diff --git a/.compton.conf b/.compton.conf index d11924d..4302c79 100644 --- a/.compton.conf +++ b/.compton.conf @@ -116,14 +116,18 @@ inactive-opacity-override = false; # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred. blur-background = true; # Blur background of opaque windows with transparent frames as well. - blur-background-frame = true; +blur-background-frame = true; # Do not let blur radius adjust based on window opacity. -blur-background-fixed = false; +blur-background-fixed = true; blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ]; +blur-kern = "7x7box"; +blur-method = "kawase"; +blur-strength = 5; + opacity-rule = [ "70:class_g *= 'XTerm'" ]; diff --git a/install.sh b/install.sh index 1e7001d..45bc38b 100755 --- a/install.sh +++ b/install.sh @@ -3,13 +3,12 @@ # Programs: # compton: Compositor # xterm fo default terminal -# transset-df for xterm transparency #Configs for home dir MODULES=(.i3 .vim .xinitrc .compton.conf .bashrc .Xresources) #Configs for .config -CFGFOLDER=(polybar powerline) +CFGFOLDER=(polybar powerline nvim) echo Configs to install: ${MODULES[@]} ${CFGFOLDER[@]} diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..fc8de71 --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,3 @@ +set runtimepath^=~/.vim runtimepath+=~/.vim/after +let &packpath=&runtimepath +source ~/.vim/vimrc diff --git a/packages.txt b/packages.txt new file mode 100644 index 0000000..aefd385 --- /dev/null +++ b/packages.txt @@ -0,0 +1,10 @@ +base-devel +htop +i3gaps +neovim +xorg-xinit +xorg-server +compton +xterm +powerline +xf86-input-libinput -- cgit v1.2.3