web-dev-qa-db-ja.com

特殊文字、ウムラウト、外国文字を挿入できるアプリケーションまたはコマンドはありますか

私は、ドイツ語、スペイン語、フランス語、ギリシャ語、英語のいくつかの言語で書いて作業しています。 Macでは、2秒より長いキーを押すと、メインキャラクターから派生した特殊文字から選択できます。 Windowsには、同じことをするHoldkeyと呼ばれるソフトウェアがあります。 Linuxにも同様のものはありますか。まだ見つけていません。

3
George G.

2つのアドバイスがあります。

  1. 適切なキーボードレイアウト、つまりデッドキーのあるレイアウトを使用します。英語のキーボードを使用している場合は、たとえばEnglish(US、intl。、with dead keys)を選択します。しかし、他にもいくつかの変種があります。
  2. 構成キー を定義します。これにより、使用しているキーボードレイアウトに含まれていない多くの文字を入力できるようになります。 (作成キーはXKB機能であるため、Kubuntuで使用できますが、そこで定義する方法を理解する必要があります。)
2

セットアップを恐れない場合(手順は明確になっている必要があります)、以下に、よく使用する特殊文字(-alternatives)をすばやく挿入する代替手段を示します。

編集可能な特殊文字ツール

以下のスクリプトは、頻繁に使用される文字を1秒で使用できるようにする柔軟なツール(クリックで文字を挿入するウィンドウ)です。

enter image description here

使い方

  • ショートカットでウィンドウを呼び出す
  • 文字を挿入するには、その文字をクリックするだけで、作業していたウィンドウに文字が貼り付けられます。
  • 文字のセットを追加するには、 + テキストエディタウィンドウが開き、最初の行に「ファミリ」名を、次の行に関連する特殊文字を1行に1文字ずつ追加します。次に例を示します。

    a
    å
    ä
    ã
    â
    á
    à
    ª
    

    (画像から)。ファイルを閉じると、次にウィンドウを呼び出すときから、特殊文字を使用できるようになります。

  • 使用可能な文字のセットを削除するには、を押します x

設定方法

  1. いくつかの依存関係を満たす必要があります。

    • python3-xlib

      Sudo apt install python3-xlib
      
    • pyautogui:

      pip3 install pyautogui
      
    • pyperclip:

      Sudo apt install python3-pyperclip xsel xclip
      
    • Wnckのインストールが必要になる場合があります。

      python3-gi gir1.2-wnck-3.0
      

    ログアウトして再度ログインします。

  2. 以下のスクリプトを空のファイルにコピーし、specialchars.pyとして保存し、実行可能にします

    #!/usr/bin/env python3
    import os
    import gi
    gi.require_version("Gtk", "3.0")
    gi.require_version('Wnck', '3.0')
    from gi.repository import Gtk, Wnck, Gdk
    import subprocess
    import pyperclip
    import pyautogui
    
    
    css_data = """
    .label {
      font-weight: bold;
      color: blue;
    }
    .delete {
      color: red;
    }
    """
    
    fpath = os.environ["HOME"] + "/.specialchars"
    
    def create_dirs():
        try:
            os.mkdir(fpath)
        except FileExistsError:
            pass
    
    
    def listfiles():
        files = os.listdir(fpath)
        chardata = []
        for f in files:
            f = os.path.join(fpath, f)
            chars = [s.strip() for s in open(f).readlines()]
            try:
                category = chars[0]
                members = chars[1:]
            except IndexError:
                os.remove(f)
            else:
                chardata.append([category, members, f])
        chardata.sort(key=lambda x: x[0])
        return chardata
    
    
    def create_newfamily(button):
        print("yay")
        n = 1
        while True:
            name = "charfamily_" + str(n)
            file = os.path.join(fpath, name)
            if os.path.exists(file):
                n = n + 1
            else:
                break
        open(file, "wt").write("")
        subprocess.Popen(["xdg-open", file])
    
    
    class Window(Gtk.Window):
        def __init__(self):
            Gtk.Window.__init__(self)
            self.set_decorated(False)
            # self.set_active(True)
            self.set_keep_above(True);
            self.set_position(Gtk.WindowPosition.CENTER_ALWAYS)
            self.connect("key-press-event", self.get_key)
            self.set_default_size(0, 0)
            self.provider = Gtk.CssProvider.new()
            self.provider.load_from_data(css_data.encode())
            self.maingrid = Gtk.Grid()
            self.add(self.maingrid)
            chardata = listfiles()
            # get the currently active window
            self.screendata = Wnck.Screen.get_default()
            self.screendata.force_update()
            self.curr_subject = self.screendata.get_active_window().get_xid()
            row = 0
            for d in chardata:
                bbox = Gtk.HBox()
                fambutton = Gtk.Button(d[0])
                fambutton_cont = fambutton.get_style_context()
                fambutton_cont.add_class("label")
                fambutton.connect("pressed", self.open_file, d[2])
                Gtk.StyleContext.add_provider(
                    fambutton_cont,
                    self.provider,
                    Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION,
                )
                fambutton.set_tooltip_text(
                    "Edit special characters of '" + d[0] + "'"
                )
                bbox.pack_start(fambutton, False, False, 0)
                for c in d[1]:
                    button = Gtk.Button(c)
                    button.connect("pressed", self.replace, c)
                    button.set_size_request(1, 1)
                    bbox.pack_start(button, False, False, 0)
                self.maingrid.attach(bbox, 0, row, 1, 1)
                deletebutton = Gtk.Button("X")
    
                deletebutton_cont = deletebutton.get_style_context()
                deletebutton_cont.add_class("delete")
                Gtk.StyleContext.add_provider(
                    deletebutton_cont,
                    self.provider,
                    Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION,
                )
    
                deletebutton.connect("pressed", self.delete_file, d[2], bbox)
                deletebutton.set_tooltip_text("Delete family")
    
                self.maingrid.attach(deletebutton, 100, row, 1, 1)
                row = row + 1
            addbutton = Gtk.Button("+")
            addbutton.connect("pressed", create_newfamily)
            addbutton.set_tooltip_text("Add family")
            self.maingrid.attach(addbutton, 100, 100, 1, 1)
            self.maingrid.attach(Gtk.Label("- Press Esc to exit -"), 0, 100, 1, 1)
            self.show_all()
            Gtk.main()
    
        def get_key(self, button, val):
            # keybinding to close the previews
            if Gdk.keyval_name(val.keyval) == "Escape":
                Gtk.main_quit()
    
        def replace(self, button, char, *args):
            pyperclip.copy(char)
            subprocess.call(["wmctrl", "-ia", str(self.curr_subject)])
            pyautogui.hotkey('ctrl', 'v')
            Gtk.main_quit()
    
    
        def open_file(self, button, path):
            subprocess.Popen(["xdg-open", path])
    
        def delete_file(self, button, path, widget):
            os.remove(path)
            widget.destroy()
            button.destroy()
            self.resize(10, 10)
    
    create_dirs()
    Window()
    
  3. 実行するショートカットキーを設定します。

    python3 /path/to/specialchars.py
    

最初の実行では、 + ボタン。キャラクター「家族」の追加を開始し、ウィンドウを再起動(-call)して、すべてをワンクリックで使用できるようにします。

それでおしまい...

2
Jacob Vlijm

Linuxでは、Unicodeを使用して特殊文字を入力できます。

特殊文字を入力するには、まず下を押します CTRL+SHIFT+U そして鍵を手放します。

次に、挿入する文字の16進コードを入力して、を押します ENTER

「ü」の16進コードは00fc

ここをクリックすると、Unicode文字のWikipediaページが表示されます。

ここをクリックすると、Unicode数学文字のWikipediaページが表示されます。

0
mchid