Created
March 27, 2019 18:47
-
-
Save cyfrost/177d759b7e4b7fba53fb692a0032b62c to your computer and use it in GitHub Desktop.
Install Tilix on Fedora, and spice it up with awesome default config
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
#!/bin/bash | |
sudo dnf install -y tilix tilix-nautilus dconf && \ | |
filename="tilix_config.dconf" && \ | |
rm -f $filename; | |
gsettings set org.gnome.desktop.wm.keybindings activate-window-menu [] && | |
curl -s "https://raw.githubusercontent.com/cyfrost/var/master/tilix_conf.dconf" >> $filename && | |
dconf load /com/gexperts/Tilix/ < "$filename" && | |
py_script_filename="add-custom-keybindings.py" && | |
rm -f $py_script_filename; | |
curl -s "https://raw.githubusercontent.com/cyfrost/var/master/add-custom-keybindings.py" >> $py_script_filename && | |
python $py_script_filename 'Tilix Quake Mode Binding' 'tilix --quake' '<Alt>space' && | |
rm -f $py_script_filename && | |
echo -en "\n\nTilix installed and configured successfully! \n\nDone! Hit Alt + Space for some magic :) \n\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment