0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ubuntu設定 - アプリケーションの自動起動,各種設定

Last updated at Posted at 2021-01-01

自動起動 autostart

terminator

cd ~/.config
mkdir autostart
~/.config/autostart/terminator.desktop
[Desktop Entry]
Exec=/usr/bin/terminator 
Type=Application

firefox

~/.config/autostart/firefox.desktop
[Desktop Entry]
Exec=/usr/bin/firefox
Type=Application

folder(ピクチャ)

open_folder_pictores.desktop
[Desktop Entry]
Exec=nautilus /home/dev/ピクチャ
#Exec=gnome-terminal -- bash -c "nautilus /home/dev/ピクチャ;exec bash"
Type=Application
# open folder command
# nautilus $PATH

google-chorme

~/.config/autostart/firefox.desktop
[Desktop Entry]
Exec=/usr/bin/google-chrome
Type=Application

参考:https://ludwig125.hatenablog.com/entry/2019/01/19/232600

各種アプリケーションの設定

terminator

ターミナル設定:左半分を埋めるような位置・サイズ

~/.config/terminator/config
[global_config]
  borderless = True
  hide_from_taskbar = True
  always_on_top = True
  sticky = True
[keybindings]
  hide_window = F12
[profiles]
  [[default]]
    cursor_color = "#aaaaaa"
    show_titlebar = False
[layouts]
  [[default]]
    [[[window0]]]
      type = Window
      size = 960, 1080
      position = 0:25
      parent = ""
    [[[child1]]]
      type = Terminal
      parent = window0
[plugins]

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?