diff --git a/.bashrc b/.bashrc index e78747b..3aeccb1 100644 --- a/.bashrc +++ b/.bashrc @@ -124,5 +124,8 @@ fi # Add users bin directory to the PATH if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" + PATH="$HOME/bin:/opt/Hyper:$PATH" fi + +# Add SDL support for the WiiU-Gamecube-Adapter +export SDL_GAMECONTROLLERCONFIG="0300000057696920552047616d654300,Wii U GameCube Adapter Port 1,platform:Linux,x:b3,a:b0,b:b1,y:b2,start:b7,dpleft:b10,dpdown:b9,dpright:b11,dpup:b8,lefttrigger:a2,rightshoulder:b6,righttrigger:a5,leftx:a0,lefty:a1,rightx:a3,righty:a4," diff --git a/.config/compton.conf b/.config/compton.conf new file mode 100644 index 0000000..774d21c --- /dev/null +++ b/.config/compton.conf @@ -0,0 +1,3 @@ +opacity-rule = [ + "80:class_g = 'Hyper'" +]; diff --git a/.hyper.js b/.hyper.js index c806aa8..c7ada8a 100644 --- a/.hyper.js +++ b/.hyper.js @@ -58,7 +58,7 @@ module.exports = { plugins: [ "hyper-tomorrow-night", - "hyper-hide-tabs" + "hyper-blink", ], localPlugins: [] diff --git a/install.sh b/install.sh index 9ba4ee6..d9df6a2 100644 --- a/install.sh +++ b/install.sh @@ -19,6 +19,7 @@ ln -s "$DIR/.xinitrc" "$HOME/.xinitrc" ln -s "$DIR/.Xresources" "$HOME/.Xresources" ln -s "$DIR/.config/i3" "$HOME/.config/i3" ln -s "$DIR/.dircolors" "$HOME/.dircolors" +ln -s "$DIR/.config/compton.conf" "$HOME/.config/compton.conf # Symlinking scripts directory and giving execute permissions ln -s "$DIR/bin" "$HOME/bin"