Un petit script pour nautilus / gedit

Voici un petit script pour gconf qui m'evite de perdre du temps avec la souris:

[BASH linenumbers='false'] #!/bin/bash ## CONFIGURATION DE NAUTILUS ET DE SON THEME gconftool-2 --type=Boolean --set /apps/nautilus/desktop/computer_icon_visible false gconftool-2 --type=Boolean --set /apps/nautilus/preferences/always_use_location_entry true gconftool-2 --type=Boolean --set /apps/nautilus/desktop/volumes_visible false gconftool-2 --type=Boolean --set /apps/nautilus/desktop/trash_icon_visible true gconftool-2 --type=Boolean --set /apps/nautilus/desktop/home_icon_visible true gconftool-2 --type=String --set /apps/nautilus/desktop/home_icon_name Nom_de_mon_home gconftool-2 --type=Boolean --set /desktop/gnome/interface/menus_have_icons true gconftool-2 --type=Boolean --set /desktop/gnome/interface/buttons_have_icons true gconftool-2 --type=Boolean --set /apps/nautilus/preferences/media_automount_open false gconftool-2 --type=Boolean --set /apps/nautilus/preferences/media_autorun_never true gconftool-2 --type=String --set /apps/nautilus/preferences/executable_text_activation display gconftool-2 --type=String --set /apps/nautilus/compact_view/default_zoom_level small gconftool-2 --type=String --set /apps/nautilus/icon_view/default_zoom_level small gconftool-2 --type=String --set /apps/nautilus/list_view/default_zoom_level small gconftool-2 --type=String --set /desktop/gnome/interface/toolbar_style icons gconftool-2 --type=String --set /desktop/gnome/interface/gtk_theme Nom_de_mon_theme_gtk gconftool-2 --type=String --set /desktop/gnome/interface/icon_theme Nom_de_mon_theme_d_icones gconftool-2 --type=String --set /apps/metacity/general/theme Nom_de_mon_theme_metacity gconftool-2 --type=String --set /apps/metacity/global_keybindings/panel_main_menu "Super_L" ## CONFIGURATION DE GEDIT gconftool-2 --type=Boolean --set /apps/gedit-2/preferences/editor/bracket_matching/bracket_matching true gconftool-2 --type=Boolean --set /apps/gedit-2/preferences/editor/line_numbers/display_line_numbers true gconftool-2 --type=Boolean --set /apps/gedit-2/preferences/editor/tabs/insert_spaces true gconftool-2 --type=int --set /apps/gedit-2/preferences/editor/tabs/tabs_size 2 gconftool-2 --type=Boolean --set /apps/gedit-2/preferences/ui/side_pane/side_pane_visible true ## CONFIGURATION DE GNOME TERMINAL gconftool-2 --type=String --set /apps/gnome-terminal/profiles/Default/background_type transparent gconftool-2 --type=String --set /apps/gnome-terminal/profiles/Default/title Titre_du_terminal gconftool-2 --type=String --set /apps/gnome-terminal/profiles/Default/visible_name Nom_du_terminal gconftool-2 --type=Boolean --set /apps/gnome-terminal/profiles/Default/use_theme_colors false gconftool-2 --type=Boolean --set /apps/gnome-terminal/profiles/Default/silent_bell true gconftool-2 --type=String --set /apps/gnome-terminal/profiles/Default/background_color "#000000000000" gconftool-2 --type=String --set /apps/gnome-terminal/profiles/Default/foreground_color "#FBFBFBFBFBFB" ## THEME DE SONS DANS GNOME (/usr/share/sounds) gconftool-2 --type=String --set /desktop/gnome/sound/theme_name Nom_de_mon_theme_sonore gconftool-2 --type=Boolean --set /desktop/gnome/sound/event_sounds true ## CONFIGURATION DES POLICES gconftool-2 --type=String --set /desktop/gnome/font_rendering/antialiasing rgba gconftool-2 --type=String --set /desktop/gnome/font_rendering/hinting slight gconftool-2 --type=float --set /desktop/gnome/font_rendering/dpi 96 [/BASH]
Vus : 218
Publié par Philippe EauLand : 110