summaryrefslogtreecommitdiff
path: root/.termux
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2025-01-22 10:40:09 +0100
committerMarc Vertes <mvertes@free.fr>2025-01-22 10:40:09 +0100
commit386dccdbe3cb95fe0450907b57981f8684b264e5 (patch)
tree0a638f7d167d7b9a8372aeda86f83e0787c2d1da /.termux
parent953e0a3964e6c6f787c7ea70e1ffa26f254e2236 (diff)
fix note2
Diffstat (limited to '.termux')
-rw-r--r--.termux/colors.properties31
-rw-r--r--.termux/termux.properties180
2 files changed, 0 insertions, 211 deletions
diff --git a/.termux/colors.properties b/.termux/colors.properties
deleted file mode 100644
index 65558d7..0000000
--- a/.termux/colors.properties
+++ /dev/null
@@ -1,31 +0,0 @@
-# https://github.com/chriskempson/base16-xresources/blob/master/base16-bright.dark.256.xresources
-# Base16 Bright
-# Scheme: Chris Kempson (http://chriskempson.com)
-foreground=#e0e0e0
-background=#000000
-# cursor=#e0e0e0
-cursor=#ff0000
-
-color0=#000000
-color1=#fb0120
-color2=#a1c659
-color3=#fda331
-color4=#6fb3d2
-color5=#d381c3
-color6=#76c7b7
-color7=#e0e0e0
-color8=#b0b0b0
-color9=#fb0120
-color10=#a1c659
-color11=#fda331
-color12=#6fb3d2
-color13=#d381c3
-color14=#76c7b7
-color15=#ffffff
-
-color16=#fc6d24
-color17=#be643c
-color18=#303030
-color19=#505050
-color20=#d0d0d0
-color21=#f5f5f5
diff --git a/.termux/termux.properties b/.termux/termux.properties
deleted file mode 100644
index 0ae6b7f..0000000
--- a/.termux/termux.properties
+++ /dev/null
@@ -1,180 +0,0 @@
-### This is a `.properties` [https://en.wikipedia.org/wiki/.properties] file
-### for termux app properties and is loaded with the `java.util.Properties.load()`
-### [https://developer.android.com/reference/java/util/Properties#load(java.io.Reader)]
-### call by the termux app and must be formatted as per its spec.
-### To make changes to a property value, uncomment the property line by removing
-### any hash `#` characters at the start of the line.
-### After making required changes, save the file and run `termux-reload-settings`
-### in the terminal for changes to take effect. Some properties require app
-### process to be restarted to be updated which can be done by force stopping
-### the app from Android app settings.
-### All information here can also be found on the
-### wiki: https://wiki.termux.com/wiki/Terminal_Settings
-
-###############
-# General
-###############
-
-### Allow external applications to execute arbitrary commands within Termux.
-### This potentially could be a security issue, so option is disabled by
-### default. Uncomment to enable.
-# allow-external-apps = true
-
-### Default working directory that will be used when launching the app.
-# default-working-directory = /data/data/com.termux/files/home
-
-### Uncomment to disable toasts shown on terminal session change.
-# disable-terminal-session-change-toast = true
-
-### Uncomment to not show soft keyboard on application start.
-# hide-soft-keyboard-on-startup = true
-
-### Uncomment to let keyboard toggle button to enable or disable software
-### keyboard instead of showing/hiding it.
-# soft-keyboard-toggle-behaviour = enable/disable
-
-### Adjust terminal scrollback buffer. Max is 50000. May have negative
-### impact on performance.
-# terminal-transcript-rows = 2000
-
-### Uncomment to use volume keys for adjusting volume and not for the
-### extra keys functionality.
-# volume-keys = volume
-
-###############
-# Fullscreen mode
-###############
-
-### Uncomment to let Termux start in full screen mode.
-# fullscreen = true
-
-### Uncomment to attempt workaround layout issues when running in
-### full screen mode.
-# use-fullscreen-workaround = true
-
-###############
-# Cursor
-###############
-
-### Cursor blink rate. Values 0, 100 - 2000.
-# terminal-cursor-blink-rate = 0
-
-### Cursor style: block, bar, underline.
-# terminal-cursor-style = block
-
-###############
-# Extra keys
-###############
-
-### Settings for choosing which set of symbols to use for illustrating keys.
-### Choose between default, arrows-only, arrows-all, all and none
-# extra-keys-style = default
-
-### Force capitalize all text in extra keys row button labels.
-# extra-keys-text-all-caps = true
-
-### Default extra-key configuration
-# extra-keys = [[ESC, TAB, CTRL, ALT, {key: '-', popup: '|'}, DOWN, UP]]
-
-### Two rows with more keys
-# extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'], \
-# ['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]
-
-### Configuration with additional popup keys (swipe up from an extra key)
-# extra-keys = [[ \
-# {key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \
-# {key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \
-# {key: ALT, popup: {macro: "CTRL f TAB", display: "tmux →"}}, \
-# {key: TAB, popup: {macro: "ALT a", display: A-a}}, \
-# {key: LEFT, popup: HOME}, \
-# {key: DOWN, popup: PGDN}, \
-# {key: UP, popup: PGUP}, \
-# {key: RIGHT, popup: END}, \
-# {macro: "ALT j", display: A-j, popup: {macro: "ALT g", display: A-g}}, \
-# {key: KEYBOARD, popup: {macro: "CTRL d", display: exit}} \
-# ]]
-
-### Another configuration with advanced popup key usage designed for more
-### specific use-cases. In this case, it is designed for working with Vim-like
-### editors for faster navigation
-#extra-keys = [ \
-# [ \
-# { key: ESC, popup: { macro: ":q\n", display: "QuickExit" } }, \
-# { key: '/', popup: '\\\\' }, \
-# { key: '-', popup: '_' }, \
-# { key: HOME, popup: { macro: "CTRL HOME", display: "Top" } }, \
-# { key: UP, popup: { macro: "CTRL UP", display: "UP" } }, \
-# { key: END, popup: { macro: "CTRL END", display: "End" } }, \
-# { key: ":", popup: ";" }, \
-# { key: "(", popup: "{" } \
-# ], \
-# [ \
-# { key: TAB, popup: { macro: ":wq\n", display: "Write And Exit" } }, \
-# { key: CTRL, popup: { macro: ":w\n", display: "Write" } }, \
-# ALT, \
-# { key: LEFT, popup: { macro: "CTRL LEFT", display: "Left" } }, \
-# { key: DOWN, popup: { macro: "CTRL DOWN", display: "Bottom" } }, \
-# { key: RIGHT, popup: { macro: "CTRL RIGHT", display: "Right" } }, \
-# { key: "#", popup: "$" }, \
-# { key: ")", popup: "}" } \
-# ] \
-#]
-
-###############
-# Colors/themes
-###############
-
-### Force black colors for drawer and dialogs
-# use-black-ui = true
-
-###############
-# HW keyboard shortcuts
-###############
-
-### Disable hardware keyboard shortcuts.
-# disable-hardware-keyboard-shortcuts = true
-
-### Open a new terminal with ctrl + t (volume down + t)
-# shortcut.create-session = ctrl + t
-
-### Go one session down with (for example) ctrl + 2
-# shortcut.next-session = ctrl + 2
-
-### Go one session up with (for example) ctrl + 1
-# shortcut.previous-session = ctrl + 1
-
-### Rename a session with (for example) ctrl + n
-# shortcut.rename-session = ctrl + n
-
-###############
-# Bell key
-###############
-
-### Vibrate device (default).
-# bell-character = vibrate
-
-### Beep with a sound.
-# bell-character = beep
-
-### Ignore bell character.
-# bell-character = ignore
-
-###############
-# Back key
-###############
-
-### Send the Escape key.
-# back-key=escape
-
-### Hide keyboard or leave app (default).
-# back-key=back
-
-###############
-# Keyboard issue workarounds
-###############
-
-### Letters might not appear until enter is pressed on Samsung devices
-# enforce-char-based-input = true
-
-### ctrl+space (for marking text in emacs) does not work on some devices
-# ctrl-space-workaround = true