Skip to content

Instantly share code, notes, and snippets.

@cyfrost
Created March 27, 2019 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyfrost/177d759b7e4b7fba53fb692a0032b62c to your computer and use it in GitHub Desktop.
Save cyfrost/177d759b7e4b7fba53fb692a0032b62c to your computer and use it in GitHub Desktop.
Install Tilix on Fedora, and spice it up with awesome default config
#!/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