parent
26015b3613
commit
1c3d582c26
7 changed files with 0 additions and 152 deletions
@ -1,6 +0,0 @@ |
||||
install(FILES konsole.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) |
||||
install(PROGRAMS konsole-2.9.0-global-options.sh DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) |
||||
install(PROGRAMS konsole-2.9.0-colorscheme-bold-key.sh DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) |
||||
install(PROGRAMS konsole-2.10.0-remove-menuindex-from-profiles.sh DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) |
||||
|
||||
install(FILES konsole_remove_background_mode.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) |
||||
@ -1,25 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
# The "MenuIndex" entry in profile is expected to be absent or 0. |
||||
# However, old versions of konsole might leave some problematic |
||||
# "MenuIndex" entries due to buggy code. This script simply removes them. |
||||
|
||||
local_path=`kde4-config --localprefix` |
||||
konsole_data_path="${local_path}/share/apps/konsole" |
||||
|
||||
# do nothing when no user data exsit at all |
||||
if ! test -d "${konsole_data_path}" ; then |
||||
exit 0 |
||||
fi |
||||
|
||||
cd "${konsole_data_path}" |
||||
|
||||
for i in *.profile ; do |
||||
# no match? |
||||
if test "$i" = "*.profile" ; then |
||||
break |
||||
fi |
||||
|
||||
sed -i '/MenuIndex=/d' "$i" |
||||
done |
||||
|
||||
@ -1,25 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
# 'Bold=false' is non-functioning before konsole 2.9, but it might |
||||
# become functional in the future versions, so remove those entries as |
||||
# preparation for future changes. |
||||
|
||||
local_path=`kde4-config --localprefix` |
||||
konsole_data_path="${local_path}/share/apps/konsole" |
||||
|
||||
# do nothing when no user data exsit at all |
||||
if ! test -d "${konsole_data_path}" ; then |
||||
exit 0 |
||||
fi |
||||
|
||||
cd "${konsole_data_path}" |
||||
|
||||
for i in *.colorscheme ; do |
||||
# no match? |
||||
if test "$i" = "*.colorscheme" ; then |
||||
break |
||||
fi |
||||
|
||||
sed -i '/Bold=false/d' "$i" |
||||
done |
||||
|
||||
@ -1,82 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
# Starting from konsole 2.9.0, menubar and tabbar setttings are global instead of per profile |
||||
# This stupid script migrates those settings from default profile into konsolerc |
||||
|
||||
default_profile_name=`kreadconfig5 --file konsolerc --group 'Desktop Entry' --key DefaultProfile` |
||||
|
||||
# empty name implies that the user use is using the stock profile |
||||
if test -z "$default_profile_name" ; then |
||||
exit 0 |
||||
fi |
||||
|
||||
default_profile_path="" |
||||
|
||||
OLD_IFS="$IFS" |
||||
IFS=":" |
||||
for path in `kde4-config --path data`; do |
||||
if test -f "$path/konsole/$default_profile_name"; then |
||||
default_profile_path="$path/konsole/$default_profile_name" |
||||
break |
||||
fi |
||||
done |
||||
IFS="$OLD_IFS" |
||||
|
||||
# empty path implies that the specified default profile does not exist |
||||
if test -z "$default_profile_path" ; then |
||||
exit 0 |
||||
fi |
||||
|
||||
echo "[KonsoleWindow]" |
||||
|
||||
show_menu_bar=`kreadconfig5 --file "$default_profile_path" --group 'General' --key 'ShowMenuBar'` |
||||
if test -n "$show_menu_bar"; then |
||||
echo "ShowMenuBarByDefault=$show_menu_bar" |
||||
fi |
||||
|
||||
echo "[TabBar]" |
||||
|
||||
# The order of enum value has changed |
||||
tab_bar_visibility=`kreadconfig5 --file "$default_profile_path" --group 'General' --key 'TabBarMode'` |
||||
if test -n "$tab_bar_visibility"; then |
||||
new_value="" |
||||
|
||||
if test "$tab_bar_visibility" = "0" ; then |
||||
new_value="2" |
||||
elif test "$tab_bar_visibility" = "1" ; then |
||||
new_value="1" |
||||
elif test "$tab_bar_visibility" = "2" ; then |
||||
new_value="0" |
||||
fi |
||||
|
||||
if test -n "$new_value"; then |
||||
echo "TabBarVisibility=$new_value" |
||||
fi |
||||
fi |
||||
|
||||
# The order of this enum value has changed |
||||
tab_bar_position=`kreadconfig5 --file "$default_profile_path" --group 'General' --key 'TabBarPosition'` |
||||
if test -n "$tab_bar_position"; then |
||||
new_value="" |
||||
if test "$tab_bar_position" = "0" ; then |
||||
new_value="1" |
||||
elif test "$tab_bar_position" = "1" ; then |
||||
new_value="0" |
||||
fi |
||||
|
||||
if test -n "$new_value"; then |
||||
echo "TabBarPosition=$new_value" |
||||
fi |
||||
fi |
||||
|
||||
|
||||
show_quick_buttons=`kreadconfig5 --file "$default_profile_path" --group 'General' --key 'ShowNewAndCloseTabButtons'` |
||||
if test -n "$show_quick_buttons"; then |
||||
echo "ShowQuickButtons=$show_quick_buttons" |
||||
fi |
||||
|
||||
new_tab_behavior=`kreadconfig5 --file "$default_profile_path" --group 'General' --key 'NewTabBehavior'` |
||||
if test -n "$new_tab_behavior"; then |
||||
echo "NewTabBehavior=$new_tab_behavior" |
||||
fi |
||||
|
||||
@ -1,9 +0,0 @@ |
||||
Id=2.9.0-global-options |
||||
File=konsolerc |
||||
Script=konsole-2.9.0-global-options.sh |
||||
|
||||
Id=2.9.0-colorscheme-bold-key |
||||
Script=konsole-2.9.0-colorscheme-bold-key.sh |
||||
|
||||
Id=2.10.0-remove-menuindex-from-profiles |
||||
Script= konsole-2.10.0-remove-menuindex-from-profiles.sh |
||||
@ -1,4 +0,0 @@ |
||||
Id=2.11.0-remove-background-mode |
||||
File=kglobalshortcutsrc |
||||
RemoveGroup=konsole |
||||
|
||||
Loading…
Reference in new issue