Nxl67170 - Ubuntu - Files: Difference between revisions
Jump to navigation
Jump to search
(update with crontab) |
No edit summary |
||
Line 85: | Line 85: | ||
=== Directory /var/spool/cron/crontabs === |
=== Directory /var/spool/cron/crontabs === |
||
'''beq06659''' |
'''beq06659''' |
||
{{pl2|{{hiddenSourceFile|/var/spool/cron/crontabs/|beq06659|content=<source lang= |
{{pl2|{{hiddenSourceFile|/var/spool/cron/crontabs/|beq06659|content=<source lang=bash> |
||
# Crontab |
# Crontab |
||
# |
# |
Revision as of 08:18, 7 November 2014
Generated with script ./generate_wiki_page.sh on host nxl67170ux
These are the configuration files on Configuration NXP Dell Latitude E5430 - Ubuntu.
Directory /etc
fstab
/etc/fstab (<file name="fstab" tag="source">download</file>)
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda5 during installation
UUID=754ca35b-fe65-4fce-a06d-8197f9494d7a / reiserfs notail,noatime,acl 0 1
# /boot was on /dev/sda3 during installation
UUID=0af7ef1a-cf55-4e67-913f-e53711178a70 /boot ext3 defaults 0 2
# /home was on /dev/sda7 during installation
UUID=a171b32b-886d-4e5f-b1ea-5e92fe8e25f5 /data ext4 defaults,noatime,data=writeback,acl 0 2
# swap was on /dev/sda6 during installation
UUID=bda1aa71-fca5-4294-98d1-29ccae735411 none swap sw 0 0
# Native mount - READ-ONLY for C drive (or corruption if vbox is running)
#
###################################################################################
# NEVER MOUNT /dev/sda1 READ-WRITE OR IT WILL CORRUPT VBOX SNAPSHOTS !!!
###################################################################################
/dev/sda1 /c ntfs ro,users,nls=utf8,exec 0 2
sudoers
/etc/sudoers (<file name="sudoers" tag="source">download</file>)
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults env_keep += "http_proxy https_proxy GREP_OPTIONS DISPLAY XAUTHORITY HOME"
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
# Specific commands that do not require password
ALL ALL = (ALL) NOPASSWD: /etc/privoxy/set-network-config
ALL ALL = NOPASSWD: /usr/bin/truecrypt
# ALL ALL = NOPASSWD: /usr/bin/synergyc
# ALL ALL = NOPASSWD: /usr/bin/killall -9 synergyc
# ALL ALL = NOPASSWD: /usr/bin/killall -9 synergys
ALL ALL = NOPASSWD: /sbin/rfkill
beq06659 ALL = (vbox) NOPASSWD: /usr/bin/virtualbox
beq06659 ALL = (vbox) NOPASSWD: /usr/bin/vboxmanage list usbhost
beq06659 ALL = (vbox) NOPASSWD: /usr/bin/vboxmanage controlvm NXL67170 usbattach *
beq06659 ALL = (vbox) NOPASSWD: /usr/bin/vboxmanage controlvm NXL67170 usbdetach *
beq06659 ALL = (vbox) NOPASSWD: /usr/bin/vboxmanage controlvm NXL67170 setlinkstate1 *
beq06659 ALL = NOPASSWD: /usr/bin/tee /sys/class/backlight/intel_backlight/brightness
Directory /var/spool/cron/crontabs
beq06659
/var/spool/cron/crontabs/beq06659 (<file name="beq06659" tag="source">download</file>)
# Crontab
#
# Install this crontab with
#
# sed -r '/^#/!s/\$USER/'$USER'/g' crontab-noekeon | crontab
#
# !!! THIS WILL OVERWRITE ANY CURRENT CRONTAB !!!
#
# Or append only job to current crontab
#
# ( crontab -l; sed -r '$!d;s/\$USER/'$USER'/g' crontab-noekeon ) | crontab
#
# Use /bin/bash to run commands, instead of the default /bin/sh
SHELL=/bin/bash
# Define variable USER because we need it in our job scripts
USER=beq06659
# Mail any output to '$USER', no matter whose crontab this is
MAILTO=beq06659
# Set PATH - by default it is set to /usr/bin:/bin
PATH=/home/beq06659/bin:/usr/local/bin:/usr/bin:/bin
#
#
# m h dom mon dow command (dow=0|7 is sunday)
37 * * * * chronic ~beq06659/bin/backup_main ~beq06659/etc/backup-noekeon
33 * * * * chronic ~beq06659/work/nxp/atop/bin/atop_prj_fetch_svn.sh
30 12 * * * RCLCRON_RCLINDEX= RECOLL_CONFDIR="/home/beq06659/.recoll/" recollindex
42 * * * * chronic ~beq06659/bin/local/fetch_all_git.sh
37 * * * * chronic ~beq06659/bin/backup_main ~beq06659/etc/backup-nxpwiki
47 * * * * chronic ~beq06659/local/bin/deduplocal.sh
Directory /etc/privoxy
set-network-config - This file must be chmod 755. Also the following line must be added to /etc/sudoers:
ALL ALL=(ALL) NOPASSWD: /etc/privoxy/set-network-config
/etc/privoxy/set-network-config (<file name="set-network-config" tag="source">download</file>)
#! /bin/bash
# Exit if no network name given or if no corresponding configuration file
[ -n "$1" ] || exit 1
TARGET_FILE="config-$1"
[ -a "/etc/privoxy/$TARGET_FILE" ] || exit 1
ln -sf "$TARGET_FILE" /etc/privoxy/config
/etc/init.d/privoxy restart
config-home.patch
/etc/privoxy/config-home.patch (<file name="config-home.patch" tag="source">download</file>)
--- config.original 2012-01-08 03:40:09.000000000 +0100
+++ config-home 2013-03-12 00:59:16.000000000 +0100
@@ -773,7 +773,7 @@
#
# listen-address [::1]:8118
#
-listen-address localhost:8118
+listen-address :8118
#
#
# 4.2. toggle
@@ -847,7 +847,7 @@
# Note that you must have compiled Privoxy with support for this
# feature, otherwise this option has no effect.
#
-enable-remote-toggle 0
+enable-remote-toggle 1
#
#
# 4.4. enable-remote-http-toggle
config-nxp.patch
/etc/privoxy/config-nxp.patch (<file name="config-nxp.patch" tag="source">download</file>)
--- config-home 2013-03-12 00:59:16.000000000 +0100
+++ config-nxp 2014-06-03 11:59:47.000000000 +0200
@@ -600,7 +600,7 @@
# problem on your own.
#
#debug 1 # Log the destination for each request Privoxy let through.
-#debug 1024 # Log the destination for requests Privoxy didn't let through, and the reason why.
+debug 1024 # Log the destination for requests Privoxy didn't let through, and the reason why.
#debug 4096 # Startup banner and warnings
#debug 8192 # Non-fatal errors
#
@@ -1312,6 +1312,21 @@
# that look like this:
#
# forward localhost/ .
+# nxp only:
+forward-socks5 / localhost:1080 .
+forward localhost .
+forward 192.168.*.*/ .
+forward 10.*.*.*/ .
+forward 127.*.*.*/ .
+forward 172.19.*.*/ .
+forward 134.27.*.* .
+forward 92.120.*.* .
+forward .nxp.com .
+forward .local .
+# 3 forward rules for chromanova radio
+forward 85.25.86.69 emea.nics.nxp.com:8080
+forward 91.143.81.239 emea.nics.nxp.com:8080
+forward 212.112.241.88 emea.nics.nxp.com:8080
#
#
#
config-nxp_auth - symlinked to config-nxp
config-nxp_direct.patch
/etc/privoxy/config-nxp_direct.patch (<file name="config-nxp_direct.patch" tag="source">download</file>)
--- config-nxp 2014-06-03 11:59:47.000000000 +0200
+++ config-nxp_direct 2013-11-18 14:16:30.000000000 +0100
@@ -600,7 +600,7 @@
# problem on your own.
#
#debug 1 # Log the destination for each request Privoxy let through.
-debug 1024 # Log the destination for requests Privoxy didn't let through, and the reason why.
+#debug 1024 # Log the destination for requests Privoxy didn't let through, and the reason why.
#debug 4096 # Startup banner and warnings
#debug 8192 # Non-fatal errors
#
@@ -1313,7 +1313,7 @@
#
# forward localhost/ .
# nxp only:
-forward-socks5 / localhost:1080 .
+forward / emea.nics.nxp.com:8080
forward localhost .
forward 192.168.*.*/ .
forward 10.*.*.*/ .
@@ -1323,10 +1323,6 @@
forward 92.120.*.* .
forward .nxp.com .
forward .local .
-# 3 forward rules for chromanova radio
-forward 85.25.86.69 emea.nics.nxp.com:8080
-forward 91.143.81.239 emea.nics.nxp.com:8080
-forward 212.112.241.88 emea.nics.nxp.com:8080
#
#
#
be
/usr/share/X11/xkb/symbols/be (<file name="be" tag="source">download</file>)
// $XKeyboardConfig$
// based on a keyboard map from an 'xkb/symbols/be' file
// copy this file to /usr/share/X11/xkb/symbols/be:
//
// sudo cp ~/etc/be /usr/share/X11/xkb/symbols/be
//
// $XFree86: xc/programs/xkbcomp/symbols/be,v 1.3 2003/04/12 10:53:48 pascal Exp $
partial default alphanumeric_keys
xkb_symbols "basic" {
include "latin"
name[Group1]="Belgium";
key <AE01> { [ ampersand, 1, bar, exclamdown ] };
key <AE02> { [ eacute, 2, at, at ] }; //MIP 20140724 - 'oneeighth' -> 'at' to fix auto-type in keepassx
key <AE03> { [ quotedbl, 3, numbersign, sterling ] };
key <AE04> { [apostrophe, 4, onequarter, dollar ] };
key <AE05> { [ parenleft, 5, onehalf, threeeighths ] };
key <AE06> { [ section, 6, asciicircum, fiveeighths ] };
key <AE07> { [ egrave, 7, braceleft, seveneighths ] };
key <AE08> { [ exclam, 8, bracketleft, trademark ] };
key <AE09> { [ ccedilla, 9, braceleft, plusminus ] };
key <AE10> { [ agrave, 0, braceright, degree ] };
key <AE11> { [parenright, degree, backslash, questiondown ] };
key <AE12> { [ minus, underscore, dead_cedilla, dead_ogonek ] };
// key <AD01> { [ a, A, at, Greek_OMEGA ] }; //MIP 20100719 - GREEK LETTERS (removed)
key <AD01> { [ a, A, at, Greek_alpha ] }; //MIP 20100719 - GREEK LETTERS (added)
// key <AD02> { [ z, Z, lstroke, Lstroke ] }; //MIP 20100719 - GREEK LETTERS (removed)
key <AD02> { [ z, Z, lstroke, Greek_omega ] }; //MIP 20100719 - GREEK LETTERS (added)
// key <AD03> { [ e, E, EuroSign, cent ] }; //MIP 20100719 - GREEK LETTERS (removed)
key <AD03> { [ e, E, EuroSign,Greek_epsilon ] }; //MIP 20100719 - GREEK LETTERS (added)
key <AD04> { [ r, R, paragraph, Greek_rho ] }; //MIP 20100719 - GREEK LETTERS (added)
key <AD09> { [ o, O, oe, OE ] }; // o O œ Œ
key <AD10> { [ p, P, thorn, Greek_pi ] }; //MIP 20100719 - GREEK LETTERS (added)
key <AD11> { [dead_circumflex, dead_diaeresis, bracketleft, dead_abovering ] };
key <AD12> { [ dollar, asterisk, bracketright, dead_macron ] };
key <AC01> { [ q, Q, ae, AE ] };
key <AC03> { [ d, D, eth, Greek_delta] }; //MIP 20100719 - GREEK LETTERS (added)
key <AC06> { [ h, H, hstroke, Greek_theta ] }; //MIP 20100719 - GREEK LETTERS (added)
key <AC09> { [ l, L, lstroke, Greek_lambda ] }; //MIP 20100719 - GREEK LETTERS (added)
key <AC10> { [ m, M, dead_acute, dead_doubleacute ] };
key <AC11> { [ ugrave, percent, dead_acute, dead_caron ] };
key <TLDE> { [twosuperior, threesuperior, notsign, notsign ] };
key <BKSL> { [ mu, sterling, dead_grave, dead_breve ] };
key <AB01> { [ w, W, guillemotleft, less ] };
key <AB03> { [ c, C, cent, Greek_gamma ] }; //MIP 20100719 - GREEK LETTERS (added)
key <AB05> { [ b, B, rightdoublequotemark, Greek_beta ] }; //MIP 20100719 - GREEK LETTERS (added)
// key <AB07> { [ comma, question, dead_cedilla, masculine ] }; //MIP 20131212 - Ease BE layout on US kbd (removed)
key <AB07> { [ comma, question, backslash, masculine ] }; //MIP 20131212 - Ease BE layout on US kbd (added)
// key <AB08> { [ semicolon, period, horizconnector, multiply ] }; //MIP 20100613 - Ease BE layout on US kbd (removed)
key <AB08> { [ semicolon, period, less, lessthanequal] }; //MIP 20100613 - Ease BE layout on US kbd (added)
// key <AB09> { [ colon, slash, periodcentered, division ] }; //MIP 20100613 - Ease BE layout on US kbd (removed)
key <AB09> { [ colon, slash, greater,greaterthanequal] }; //MIP 20100613 - Ease BE layout on US kbd (added)
// key <AB10> { [ equal, plus, dead_tilde, dead_abovedot] }; //MIP 20100728 - NOT EQUAL (removed)
key <AB10> { [ equal, plus, dead_tilde, notequal ] }; //MIP 20100728 - NOT EQUAL (removed)
key <LSGT> { [ less, greater, backslash, backslash ] };
include "level3(ralt_switch)"
};
// Variant of the fr(oss) layout for Belgium
// Copyright © 2006 Nicolas Mailhot <nicolas.mailhot @ laposte.net>
//
// ┌─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┲━━━━━━━━━┓
// │ ³ ≤ │ 1 ≥ │ 2 É │ 3 ˘ │ 4 — │ 5 – │ 6 ™ │ 7 È │ 8 ¡ │ 9 Ç │ 0 À │ ° Ø │ _ ± ┃ ⌫ Retour┃
// │ ² ¹ │ & | │ é @ │ " # │ ' ¸ │ ( ˇ │ § ^ │ è ` │ ! ~ │ ç { │ à } │ ) ø │ - ‑ ┃ arrière┃
// ┢━━━━━┷━┱───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┴─┬───┺━┳━━━━━━━┫
// ┃ ┃ A Æ │ Z  │ E ¢ │ R Ê │ T Þ │ Y Ÿ │ U Û │ I Î │ O Œ │ P Ô │ ¨ ˚ │ * ̨ ┃Entrée ┃
// ┃Tab ↹ ┃ a æ │ z â │ e € │ r ê │ t þ │ y ÿ │ u û │ i î │ o œ │ p ô │ ^ [ │ $ ] ┃ ⏎ ┃
// ┣━━━━━━━┻┱────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┴┬────┺┓ ┃
// ┃ ┃ Q Ä │ S „ │ D Ë │ F ‚ │ G ¥ │ H Ð │ J Ü │ K Ï │ L Ł │ M Ö │ % Ù │ £ ̄ ┃ ┃
// ┃Maj ⇬ ┃ q ä │ s ß │ d ë │ f ‘ │ g ’ │ h ð │ j ü │ k ï │ l ł │ m ö │ ù ' │ µ ` ┃ ┃
// ┣━━━━━━━┳┹────┬┴────┬┴────┬┴────┬┴────┬┴────┬┴────┬┴────┬┴────┬┴────┬┴────┲┷━━━━━┻━━━━━━┫
// ┃ ┃ > ≠ │ W “ │ X ” │ C ® │ V ← │ B ↑ │ N → │ ? … │ . . │ / ∕ │ + − ┃ ┃
// ┃Shift ⇧┃ < \ │ w « │ x » │ c © │ v ⍽ │ b ↓ │ n ¬ │ , ¿ │ ; × │ : ÷ │ = ~ ┃Shift ⇧ ┃
// ┣━━━━━━━╋━━━━━┷━┳━━━┷━━━┱─┴─────┴─────┴─────┴─────┴─────┴───┲━┷━━━━━╈━━━━━┻━┳━━━━━━━┳━━━┛
// ┃ ┃ ┃ ┃ ␣ Espace insécable ⍽ ┃ ┃ ┃ ┃
// ┃Ctrl ┃Meta ┃Alt ┃ ␣ Espace ␣ ┃AltGr ⇮┃Menu ┃Ctrl ┃
// ┗━━━━━━━┻━━━━━━━┻━━━━━━━┹───────────────────────────────────┺━━━━━━━┻━━━━━━━┻━━━━━━━┛
partial alphanumeric_keys
xkb_symbols "oss" {
include "fr(oss)"
include "be(oss_frbe)"
name[Group1]="Belgium - Alternative";
};
partial alphanumeric_keys
xkb_symbols "oss_frbe" {
// First row
key <TLDE> { [ twosuperior, threesuperior, onesuperior, lessthanequal ] }; // ² ³ ¹ ≤
key <AE01> { [ ampersand, 1, bar, greaterthanequal ] }; // & 1 | ≥
key <AE02> { [ eacute, 2, at, Eacute ] }; // é 2 @ É
key <AE04> { [ apostrophe, 4, dead_cedilla, 0x1002014 ] }; // ' 4 ¸ — (tiret cadratin)
key <AE05> { [ parenleft, 5, dead_caron, 0x1002013 ] }; // ( 5 ˇ – (tiret demi-cadratin)
key <AE06> { [ section, 6, asciicircum, trademark ] }; // § 6 ^ ™
key <AE08> { [ exclam, 8, asciitilde, exclamdown ] }; // ! 8 ~ ¡
key <AE09> { [ ccedilla, 9, braceleft, Ccedilla ] }; // ç 9 { Ç
key <AE10> { [ agrave, 0, braceright, Agrave ] }; // à 0 } À
key <AE11> { [ parenright, degree, oslash, Ooblique ] }; // ) ° ø Ø
key <AE12> { [ minus, underscore, 0x1002011, plusminus ] }; // - _ - (tiret insécable) ±
// Second row
key <AD11> { [ dead_circumflex, dead_diaeresis, bracketleft, dead_abovering ] }; // ^ ̈ [ ˚
key <AD12> { [ dollar, asterisk, bracketright, dead_ogonek ] }; // $ * ] ̨
// Third row
key <AC09> { [ l, L, dead_stroke ] }; // l L ł Ł
key <BKSL> { [ mu, sterling, dead_grave, dead_macron ] }; // µ £ ` ̄
// Fourth row
key <LSGT> { [ less, greater, backslash, notequal ] }; // < > \ ≠
key <AB10> { [ equal, plus, dead_tilde, 0x1002212 ] }; // = + ~ −
};
partial alphanumeric_keys
xkb_symbols "oss_latin9" {
// Restricts the be(oss) layout to latin9 symbols
include "fr(oss_latin9)"
include "be(oss_frbe)"
include "keypad(oss_latin9)"
name[Group1]="Belgium - Alternative, latin-9 only";
// First row
key <TLDE> { [ twosuperior, threesuperior, onesuperior, less ] }; // ² ³ ¹ <
key <AE01> { [ ampersand, 1, bar, greater ] }; // & 1 | >
key <AE04> { [ apostrophe, 4, dead_cedilla, minus ] }; // ' 4 ¸ -
key <AE05> { [ parenleft, 5, dead_caron, minus ] }; // ( 5 ˇ -
key <AE06> { [ section, 6, asciicircum, asciicircum ] }; // § 6 ^ ^
key <AE12> { [ minus, underscore, minus, plusminus ] }; // - _ - ±
// Second row
key <AD12> { [ dollar, asterisk, bracketright, dead_cedilla ] }; // $ * ] ¸
// Third row
key <AC09> { [ l, L, l, L ] }; // l L l L
key <BKSL> { [ mu, sterling, dead_grave, dead_circumflex ] }; // µ £ ` ^
// Fourth row
key <LSGT> { [ less, greater, backslash, equal ] }; // < > \ =
key <AB10> { [ equal, plus, dead_tilde, minus ] }; // = + ~ -
};
partial alphanumeric_keys
xkb_symbols "oss_Sundeadkeys" {
// Modifies the basic be(oss) layout to use the Sun dead keys
include "be(oss)"
// First row
key <AE04> { [ apostrophe, 4, SunFA_Cedilla, 0x1002014 ] }; // ' 4 ¸ — (tiret cadratin)
// Second row
key <AD11> { [ SunFA_Circum, SunFA_Diaeresis, bracketleft, dead_abovering ] }; // ^ ̈ [ ˚
//Third row
key <AC11> { [ ugrave, percent, SunFA_Acute, Ugrave ] }; // ù % ' Ù
key <BKSL> { [ mu, sterling, SunFA_Grave, dead_macron ] }; // µ £ ` ̄
// Fourth row
key <AB10> { [ equal, plus, SunFA_Tilde, 0x1002212 ] }; // = + ~ −
};
partial alphanumeric_keys
xkb_symbols "oss_sundeadkeys" {
include "be(oss_Sundeadkeys)"
name[Group1]="Belgium - Alternative, Sun dead keys";
};
partial alphanumeric_keys
xkb_symbols "iso-alternate" {
include "be(basic)"
name[Group1]="Belgium - ISO Alternate";
key <AD01> { [ a, A, ae, AE ] };
key <AD02> { [ z, Z, guillemotleft, less ] };
key <AC01> { [ q, Q, at, Greek_OMEGA ] };
key <AC10> { [ m, M, mu, masculine ] };
key <AB01> { [ w, W, lstroke, Lstroke ] };
key <AB07> { [ comma, question, dead_cedilla, dead_doubleacute ] };
};
partial alphanumeric_keys
xkb_symbols "sundeadkeys" {
// Use the Sun dead keys
include "be(basic)"
name[Group1]="Belgium - Sun dead keys";
key <AD11> { [SunFA_Circum, SunFA_Diaeresis, bracketleft, bracketleft] };
key <AC11> { [ ugrave, percent, SunFA_Acute, SunFA_Acute ] };
key <BKSL> { [ mu, sterling, SunFA_Grave, SunFA_Grave ] };
key <AB07> { [ comma, question, SunFA_Cedilla, SunFA_Cedilla] };
key <AB10> { [ equal, plus, SunFA_Tilde, SunFA_Tilde ] };
};
partial alphanumeric_keys
xkb_symbols "Sundeadkeys" {
// Use the Sun dead keys
include "be(sundeadkeys)"
};
partial alphanumeric_keys
xkb_symbols "nodeadkeys" {
// Eliminates dead keys from the basic Belgian layout
include "be(basic)"
name[Group1]="Belgium - Eliminate dead keys";
key <AE12> { [ minus, underscore, cedilla, ogonek ] };
key <AD11> { [asciicircum, diaeresis, bracketleft, bracketleft] };
key <AD12> { [ dollar, asterisk, bracketright, macron ] };
key <AC10> { [ m, M, acute, doubleacute ] };
key <AC11> { [ ugrave, percent, quoteright, quoteright ] };
key <BKSL> { [ mu, sterling, quoteleft, quoteleft ] };
key <AB07> { [ comma, question, cedilla, masculine ] };
key <AB10> { [ equal, plus, asciitilde, asciitilde ] };
};
// Wang model 724 azerty Belgium keyboard
partial alphanumeric_keys
xkb_symbols "wang" {
include "be(basic)"
include "keypad(legacy_wang)"
name[Group1]="Belgium - Wang model 724 azerty";
// Engravings on Wang 725-3771-ae
key <TLDE> { [ twosuperior, threesuperior, notsign, asciitilde ] };
key <LSGT> { [ less, greater, backslash, brokenbar ] };
};
Directory /home/beq06659/.kde
share/config/kioslaverc
/home/beq06659/.kde/share/config/kioslaverc (<file name="share/config/kioslaverc" tag="source">download</file>)
[$Version]
update_info=kioslave.upd:kde2.2/r1,kioslave.upd:kde2.2/r2,kioslave.upd:kde2.2/r3
Directory /home/beq06659/.opera
speeddial.ini
/home/beq06659/.opera/speeddial.ini (<file name="speeddial.ini" tag="source">download</file>)
Opera Preferences version 2.1
; Do not edit this file while Opera is running
; This file is stored in UTF-8 encoding
[Deleted Items]
opera-operaportal
opera-travel
opera-webshop
opera-operasocial
opera-social
opera-mail
opera-discount
opera-auction
[Background]
Enabled=1
[Speed Dial 1]
Title=http://www.google.be/webhp?hl=en
Custom Title=0
Url=http://www.google.be/webhp?hl=en
Reload Policy=1
ID=44540A270E4FF70E9065C41D73AF5F5D
Reload Interval=2147483647
Reload Only If Expired=1
[Speed Dial 2]
Title=Vim Tips Wiki
Custom Title=0
Url=http://vim.wikia.com/wiki/Vim_Tips_Wiki
Reload Policy=0
ID=3C7A1AC6C1345EE824F865F32F118969
Reload Interval=2147483646
Reload Only If Expired=0
[Speed Dial 3]
Title=PriorWeb Webmail
Custom Title=0
Url=https://secure.priorweb.be/webmail/src/login.php
Reload Policy=3
ID=59D4E5CFC8966A3B1225CF02C3A590D3
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 4]
Title=miki
Custom Title=0
Url=https://kiwi.noekeon.org/miki/index.php?title=Main_Page
Reload Policy=3
ID=8C369614C4216D84EA59D9DE70CEC3F4
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 5]
Title=Wikipedia
Custom Title=0
Url=http://www.wikipedia.org/
Reload Policy=3
ID=68383D4B1F4F1F449C5F226689F689AD
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 6]
Title=Scarlet - Espace client Scarlet | Gérez votre abonnement et profitez des dernières offres.
Custom Title=0
Url=http://www.scarlet.be/fr/gestion.php
Reload Policy=3
ID=6F109CE93BE5EEBFC77C792A09EC8620
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 7]
Title=My To-Do List
Custom Title=0
Url=https://kiwi.noekeon.org/miki/todo/
Reload Policy=3
ID=2AF0D1EA06B45FFB1CA43839F7E54C86
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 8]
Title=http://localhost/
Custom Title=0
Url=http://localhost/
Reload Policy=0
ID=5F7B3420604311E08508A113A25B7002
Reload Interval=2147483646
Reload Only If Expired=0
[Speed Dial 9]
Title=Wikipédia, l'encyclopédie libre
Custom Title=0
Url=http://fr.wikipedia.org/wiki/Wikipédia:Accueil_principal
Reload Policy=3
ID=B3FA5593D033E5E90E688133EE2384ED
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 10]
Title=IMDb - Movies, TV and Celebrities
Custom Title=0
Url=http://www.imdb.com/
Reload Policy=3
ID=9DF1E3520AB579E8079635FD64A22060
Reload Interval=2147483646
Reload Only If Expired=1
[Speed Dial 11]
Title=Delicious
Custom Title=0
Url=http://delicious.com/m1p
Reload Policy=1
ID=24B3A694BDC106E7565DC6FEAE221451
Reload Interval=2147483647
Reload Only If Expired=1
[Speed Dial 12]
Title=Michaël Peeters' Personal Homepage
Custom Title=0
Url=http://mip.noekeon.org/
Reload Policy=1
ID=C337DCBF8F5D3E5B264BFEF30AED21FA
Reload Interval=2147483647
Reload Only If Expired=1