Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
382 B

6 years ago
  1. #!/bin/sh
  2. # Get directory variables from script.
  3. sh ../../dirs.sh
  4. config_file_name="10-evdev.conf"
  5. sys_layout_file="/etc/X11/xorg.conf.d/$config_file_name"
  6. config_dir="$linux_config_dir/x/marble-mouse"
  7. # Remove system file.
  8. sudo rm -rf "$sys_layout_file"
  9. # Link config file in repository to system config location.
  10. sudo ln -s "$config_dir"/"$config_file_name" "$sys_layout_file"