Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
le5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Linux Educacional 5
le5
Commits
6e2d38ee
Commit
6e2d38ee
authored
Dec 12, 2013
by
Michael Liang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
le-multiterminal: change script, exec_dialog.script, of package.
Signed-off-by:
Michael Liang
<
ml09@inf.ufpr.br
>
parent
b7a2acd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
83 deletions
+0
-83
le-multiterminal/package/etc/userful/scripts/PostLogin/exec_dialog.script
.../package/etc/userful/scripts/PostLogin/exec_dialog.script
+0
-83
No files found.
le-multiterminal/package/etc/userful/scripts/PostLogin/exec_dialog.script
deleted
100644 → 0
View file @
b7a2acd8
#!/bin/bash
# Copyright (C) 2004-2012 Centro de Computacao Cientifica e Software Livre
# Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
# This file is part of le-proinfodata
#
# exec_dialog.sh 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA.
F_MULT
=
"/tmp/.mult.lock"
F_LOCK
=
"/tmp/.dialog.lock"
F_INEP
=
"/opt/seed_mec/SEED2/client/conf/inep"
BACKGROUND
=
"/usr/share/backgrounds/le5-wallpaper1600X1200.png"
function
call_dialog_inep_mult_off
()
{
#Disable mouse right-click
xmodmap
-e
"pointer = 1 2 11 4 5 6 7 8 9"
&
xmodmap
-e
"keycode 64 = "
&
#Set background
xli
-onroot
-fillscreen
$BACKGROUND
dialog_inep.sh
#Reset background to default
xli
-onroot
-background
black
#Enable mouse right-click
xmodmap
-e
"pointer = 1 2 3 4 5 6 7 8 9"
&
xmodmap
-e
"keycode 64 = Alt_L Meta_L Alt_L Meta_L Alt_L Meta_L"
}
function
call_dialog_inep_mult_on
()
{
#Disable mouse right-click
xmodmap
-e
"pointer = 1 2 11 4 5 6 7 8 9"
&
xmodmap
-e
"keycode 64 = "
&
dialog_inep.sh
#Get PID
P_EDUBAR
=
$(
ps aux |
grep
"/usr/share/gnome/autostart/le-edubar_position.sh"
|
tr
-s
-t
" "
"|"
|
cut
-d
"|"
-f2
)
P_GPANEL
=
$(
pgrep gnome-panel
)
#Enable Edubar and Panel
kill
-cont
$P_GPANEL
kill
-cont
$P_EDUBAR
#Enable mouse right-click
xmodmap
-e
"pointer = 1 2 3 4 5 6 7 8 9"
&
xmodmap
-e
"keycode 64 = Alt_L Meta_L Alt_L Meta_L Alt_L Meta_L"
}
export
LANG
=
"pt_BR.UTF-8"
# SANITY CHECK -------------------------------------------------------
# Do not run script if we are on live-cd
# or the INEP code is already set
# or we are logging out
if
dpkg
--get-selections
"ubiquity-le"
|
grep
-q
'install$'
||
[
-f
$F_INEP
]
||
[
-f
$F_LOCK
]
;
then
exit
0
fi
# --------------------------------------------------------------------
sleep
3
# Check whether the computer is running on a the multiterminal
if
dpkg
--get-selections
"le-multiterminal"
|
grep
-q
'install$'
;
then
# In the first call (lightdm) in multiterminal this is script must leave, to be called again after.
if
[
-f
$F_MULT
]
;
then
touch
$F_LOCK
echo
"0"
>
$F_LOCK
call_dialog_inep_mult_on
else
touch
$F_MULT
exit
0
fi
else
touch
$F_LOCK
echo
"1"
>
$F_LOCK
call_dialog_inep_mult_off
fi
exit
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment