Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- #-------------------------------------------------------------------------------
- # Script Created by Vincent - EZ-Arch Project (ezarchproject@gmail.com)
- # Distro Sourceforge - https://sourceforge.net/projects/ezarchlinux/
- # Distro Dailymotion - http://www.dailymotion.com/ezarchproject
- #
- # I shall be using Dailymotion more for the videos instead of Youtube.
- #
- #-------------------------------------------------------------------------------
- #This program is free software: you can redistribute it and/or modify
- #it under the terms of the GNU General Public License as published by
- #the Free Software Foundation, either version 3 of the License, or
- #(at your option) any later version.
- #
- #This program is distributed in the hope that it will be useful,
- #but WITHOUT ANY WARRANTY; without even the implied warranty of
- #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- #GNU General Public License for more details.
- #
- #You should have received a copy of the GNU General Public License
- #along with this program. If not, see <http://www.gnu.org/licenses/>.
- #-------------------------------------------------------------------------------
- # Run this script after your first boot with archlinux (as root)
- #--------------------------------------------------------------------------------
- # Explaination of the Script:
- # This is the comnfig file for the Scripts which will have settings to be
- # used with the main User interface scripts
- #
- #
- ##########################################################################
- #Menu Specific Stuff
- FUNCTION='Console User Display Manager'
- #Program Locations
- BASH=/bin/bash
- ZSH=/bin/zsh
- MKSH=/bin/mksh
- TCSH=/bin/tcsh
- ###############################
- SETUP=/root/setup
- REBOOT='/usr/bin/systemctl reboot'
- POWEROFF='/usr/bin/systemctl poweroff'
- INXI=/usr/bin/inxi
- DF=/bin/df
- # X Org WM Sessions
- OPENMOTIF=/etc/X11/Sessions/openmotif
- ICEWM=/etc/X11/Sessions/icewm
- AWESOME=/etc/X11/Sessions/awesome
- TWM=/etc/X11/Sessions/twm
- #Directories
- TMP=/tmp
- ###################### Functions to be used as a helper program
- pause_function() { #{{{
- #print_line
- printf "%$(tput cols)s\n"|tr ' ' '-'
- echo
- if [[ $AUTOMATIC_MODE -eq 0 ]]; then
- read -e -sn 1 -p "Press enter to continue..."
- fi
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement