Advertisement
ezarchproject

ezcudm.conf

Jan 21st, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.28 KB | None | 0 0
  1. #!/bin/bash
  2. #-------------------------------------------------------------------------------
  3. # Script Created by Vincent - EZ-Arch Project (ezarchproject@gmail.com)
  4. # Distro Sourceforge - https://sourceforge.net/projects/ezarchlinux/
  5. # Distro Dailymotion -   http://www.dailymotion.com/ezarchproject
  6. #
  7. # I shall be using Dailymotion more for the videos instead of Youtube.
  8. #
  9. #-------------------------------------------------------------------------------
  10. #This program is free software: you can redistribute it and/or modify
  11. #it under the terms of the GNU General Public License as published by
  12. #the Free Software Foundation, either version 3 of the License, or
  13. #(at your option) any later version.
  14. #
  15. #This program is distributed in the hope that it will be useful,
  16. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. #GNU General Public License for more details.
  19. #
  20. #You should have received a copy of the GNU General Public License
  21. #along with this program.  If not, see <http://www.gnu.org/licenses/>.
  22. #-------------------------------------------------------------------------------
  23. # Run this script after your first boot with archlinux (as root)
  24. #--------------------------------------------------------------------------------
  25. # Explaination of the Script:
  26. # This is the comnfig file for the Scripts which will have settings to be
  27. # used with the main User interface scripts
  28. #
  29. #
  30. ##########################################################################
  31.  
  32. #Menu Specific Stuff
  33.  
  34. FUNCTION='Console User Display Manager'
  35.  
  36. #Program Locations
  37.  
  38. BASH=/bin/bash
  39. ZSH=/bin/zsh
  40. MKSH=/bin/mksh
  41. TCSH=/bin/tcsh
  42. ###############################
  43. SETUP=/root/setup
  44. REBOOT='/usr/bin/systemctl reboot'
  45. POWEROFF='/usr/bin/systemctl poweroff'
  46. INXI=/usr/bin/inxi
  47. DF=/bin/df
  48.  
  49. # X Org WM Sessions
  50.  
  51. OPENMOTIF=/etc/X11/Sessions/openmotif
  52. ICEWM=/etc/X11/Sessions/icewm
  53. AWESOME=/etc/X11/Sessions/awesome
  54. TWM=/etc/X11/Sessions/twm
  55.  
  56.  
  57. #Directories
  58.  
  59. TMP=/tmp
  60.  
  61.  
  62. ###################### Functions to be used as a helper program
  63.  
  64. pause_function() { #{{{
  65.     #print_line
  66.     printf "%$(tput cols)s\n"|tr ' ' '-'
  67.     echo
  68.     if [[ $AUTOMATIC_MODE -eq 0 ]]; then
  69.       read -e -sn 1 -p "Press enter to continue..."
  70.     fi
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement