diff options
| -rw-r--r-- | alias | 1 | ||||
| -rw-r--r-- | misc/keymap | 1 | ||||
| -rw-r--r-- | misc/openbox/rc.xml | 22 | ||||
| -rw-r--r-- | xorg/09-custom-kbd.conf | 6 |
4 files changed, 19 insertions, 11 deletions
| @@ -334,6 +334,7 @@ alias sample.poly='curl -O http://download.geofabrik.de/asia/taiwan.poly' | |||
| 334 | alias sample.image='curl -O https://file-examples-com.github.io/uploads/2017/10/file_example_JPG_100kB.jpg' | 334 | alias sample.image='curl -O https://file-examples-com.github.io/uploads/2017/10/file_example_JPG_100kB.jpg' |
| 335 | alias sample.gpkg='curl -O http://www.geopackage.org/data/sample1_1.gpkg' | 335 | alias sample.gpkg='curl -O http://www.geopackage.org/data/sample1_1.gpkg' |
| 336 | alias sample.mvt='curl -O https://demotiles.maplibre.org/tiles/5/25/14.pbf' | 336 | alias sample.mvt='curl -O https://demotiles.maplibre.org/tiles/5/25/14.pbf' |
| 337 | alias sample.mp4='curl -O https://jsoncompare.org/LearningContainer/SampleFiles/Video/MP4/Sample-MP4-Video-File-Download.mp4' | ||
| 337 | alias proto.mvt='curl -O https://raw.githubusercontent.com/mapbox/vector-tile-spec/master/2.1/vector_tile.proto' | 338 | alias proto.mvt='curl -O https://raw.githubusercontent.com/mapbox/vector-tile-spec/master/2.1/vector_tile.proto' |
| 338 | alias proto.osm='curl -O https://raw.githubusercontent.com/openstreetmap/OSM-binary/master/src/osmformat.proto' | 339 | alias proto.osm='curl -O https://raw.githubusercontent.com/openstreetmap/OSM-binary/master/src/osmformat.proto' |
| 339 | alias proto.geobuf='curl -O https://raw.githubusercontent.com/mapbox/geobuf/master/geobuf.proto' | 340 | alias proto.geobuf='curl -O https://raw.githubusercontent.com/mapbox/geobuf/master/geobuf.proto' |
diff --git a/misc/keymap b/misc/keymap new file mode 100644 index 0000000..82d1db5 --- /dev/null +++ b/misc/keymap | |||
| @@ -0,0 +1 @@ | |||
| keycode 58 = Control | |||
diff --git a/misc/openbox/rc.xml b/misc/openbox/rc.xml index 4cdffdf..a2d781b 100644 --- a/misc/openbox/rc.xml +++ b/misc/openbox/rc.xml | |||
| @@ -28,37 +28,37 @@ | |||
| 28 | <animateIconify>yes</animateIconify> | 28 | <animateIconify>yes</animateIconify> |
| 29 | <font place="ActiveWindow"> | 29 | <font place="ActiveWindow"> |
| 30 | <name>Sans</name> | 30 | <name>Sans</name> |
| 31 | <size>16</size> | 31 | <size>18</size> |
| 32 | <weight>Bold</weight> | 32 | <weight>Bold</weight> |
| 33 | <slant>Normal</slant> | 33 | <slant>Normal</slant> |
| 34 | </font> | 34 | </font> |
| 35 | <font place="InactiveWindow"> | 35 | <font place="InactiveWindow"> |
| 36 | <name>Sans</name> | 36 | <name>Hack Nerd Font</name> |
| 37 | <size>16</size> | 37 | <size>18</size> |
| 38 | <weight>Normal</weight> | 38 | <weight>Normal</weight> |
| 39 | <slant>Normal</slant> | 39 | <slant>Normal</slant> |
| 40 | </font> | 40 | </font> |
| 41 | <font place="MenuHeader"> | 41 | <font place="MenuHeader"> |
| 42 | <name>Sans</name> | 42 | <name>Hack Nerd Font</name> |
| 43 | <size>16</size> | 43 | <size>18</size> |
| 44 | <weight>Bold</weight> | 44 | <weight>Bold</weight> |
| 45 | <slant>Normal</slant> | 45 | <slant>Normal</slant> |
| 46 | </font> | 46 | </font> |
| 47 | <font place="MenuItem"> | 47 | <font place="MenuItem"> |
| 48 | <name>Sans</name> | 48 | <name>Hack Nerd Font</name> |
| 49 | <size>16</size> | 49 | <size>18</size> |
| 50 | <weight>Normal</weight> | 50 | <weight>Normal</weight> |
| 51 | <slant>Normal</slant> | 51 | <slant>Normal</slant> |
| 52 | </font> | 52 | </font> |
| 53 | <font place="ActiveOnScreenDisplay"> | 53 | <font place="ActiveOnScreenDisplay"> |
| 54 | <name>Sans</name> | 54 | <name>Hack Nerd Font</name> |
| 55 | <size>16</size> | 55 | <size>18</size> |
| 56 | <weight>Bold</weight> | 56 | <weight>Bold</weight> |
| 57 | <slant>Normal</slant> | 57 | <slant>Normal</slant> |
| 58 | </font> | 58 | </font> |
| 59 | <font place="InactiveOnScreenDisplay"> | 59 | <font place="InactiveOnScreenDisplay"> |
| 60 | <name>Sans</name> | 60 | <name>Hack Nerd Font</name> |
| 61 | <size>16</size> | 61 | <size>18</size> |
| 62 | <weight>Normal</weight> | 62 | <weight>Normal</weight> |
| 63 | <slant>Normal</slant> | 63 | <slant>Normal</slant> |
| 64 | </font> | 64 | </font> |
diff --git a/xorg/09-custom-kbd.conf b/xorg/09-custom-kbd.conf new file mode 100644 index 0000000..f2123ff --- /dev/null +++ b/xorg/09-custom-kbd.conf | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | Section "InputClass" | ||
| 2 | Identifier "keyboard defaults" | ||
| 3 | MatchIsKeyboard "on" | ||
| 4 | |||
| 5 | Option "XKbOptions" "ctrl:nocaps" | ||
| 6 | EndSection | ||