// find a key code
xev | grep keycode
// re-map them
xmodmap -e "keycode 49 = asciitilde"
xmodmap -e "keycode 66 = grave"
// to save them:
// put the above keycode parts into a .modmap file, and add the .xsession from devconfig to load it each time
This file contains hidden or 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
#!/bin/bash | |
guake -n guake -e 'cd dev/dragonlaw && c && v' guake -r 'Main' | |
guake -n guake -e 'cd dev/dragonlaw/src/scripts/modules/document && c && v' guake -r 'Document' | |
guake -n guake -e 'cd dev/dragonlaw/src/scripts/modules/doctype && c && v' guake -r 'Doctype' | |
guake -n guake -e 'cd dev/dragonlaw/src/scripts/baseApp && c && v' guake -r 'BaseApp' | |
guake -n guake -e 'cd dev/dragonlaw/src/scripts/submodules/entities && c && v' guake -r 'Entities' | |
guake -n guake -e 'cd dev/dragonlaw/src/scripts/submodules/components && c && v' guake -r 'Components' | |
exit 1 |
This file contains hidden or 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
#!/bin/bash | |
red(){ | |
RED="\033[0;31m" | |
printf "${RED}${1}\n" | |
} | |
tmpFile="/tmp/frontend_test" | |
errorFrontend="/tmp/.error_tests_frontend" | |
rm -rf $tmpFile |
This file contains hidden or 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
# check the volumes | |
sudo pvs | |
# mount the right one | |
sudo mount /dev/mapper/mint--vg-root /mnt | |
sudo mount --bind /sys /mnt/sys/ | |
sudo mount --bind /proc /mnt/proc/ | |
sudo mount --bind /dev /mnt/dev/ | |
sudo mount /dev/sda2 /mnt/boot | |
# confim | |
ls /mnt/boot/ |
OlderNewer