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
my xfce setup | |
================== | |
1. settings->session and startup->autostart: | |
- remove all unneccessary stuff | |
- add "superkey-fix": "xcape -e "Super_L=Super_L|R" | |
2. settings->keyboard: | |
- super+R dmenu_run | |
- super+E exo-open --launch FileManager | |
- super+X xkill |
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
#!/usr/bin/env bash | |
# debian only for now | |
echo "==== installing texlive + heb lang + lyx ====" | |
sudo apt install texlive texlive-lang-other lyx | |
echo "==== installing culmus ====" | |
wget https://sourceforge.net/projects/ivritex/files/culmus-latex/culmus-latex-0.7/culmus-latex_0.7-1_all_fixed.deb/download -O culmus.deb | |
sudo dpkg -i culmus.deb | |
echo "==== done ====" |
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
# Copy this to ~/.config/skippy-xd/skippy-xd.rc and edit it to your liking | |
[general] | |
distance = 30 | |
useNetWMFullscreen = true | |
ignoreSkipTaskbar = true | |
updateFreq = 10.0 | |
lazyTrans = false | |
pipePath = /tmp/skippy-xd-fifo | |
movePointerOnStart = true |
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
#tty8 as default | |
function start-xinit() | |
{ | |
sudo xinit "$1" -- :1 vt8 | |
} | |
function pyxinit() | |
{ |