This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Fix small icons on HiDPI screen by adding | |
-Dswt.autoScale=175 | |
##to the end of file: $ECLIPSE_HOME/eclipse.ini | |
##works for latest release, as of 2018 8th feburary. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Do not edit this file, it will be overwritten on install. | |
Copy the file to $HOME/.config/openbox/ instead. --> | |
<openbox_config xmlns="http://openbox.org/3.61/rc"> | |
<resistance> | |
<strength>20</strength> | |
<screen_edge_strength>30</screen_edge_strength> | |
</resistance> | |
<focus> | |
<focusNew>yes</focusNew> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################### | |
# To make screen available at login, append (no quotations ofc) 'screen -R' in ~/.profile | |
# | |
# RESOURCES | |
# Prerequisite: https://xaizek.github.io/2015-11-08/switching-from-tmux-to-gnu-screen/ | |
# --Contains all the necessary terminology for understanding screen. | |
# Hardstatus options: https://debian-administration.org/article/560/An_introduction_to_the_visual_features_of_GNU_Screen | |
# String escapes: https://www.gnu.org/software/screen/manual/html_node/String-Escapes.html#String-Escapes | |
# Great nesting example: https://andrewbrookins.com/tech/even-better-gnu-screen/ | |
# Nesting example: https://superuser.com/questions/132168/how-do-i-create-a-hierarchy-of-terminals-or-workspaces |