diff options
| author | benj <benj@rse8.com> | 2023-12-27 21:19:06 -0800 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2023-12-27 21:19:06 -0800 |
| commit | 65a1bc83f196f34665c83b8914e789e754a07523 (patch) | |
| tree | d36789b8027cf08108c4bdcb76416502909f6a7f | |
| parent | d27235969cf1d60784ea9cc200743a1b0c70bd3f (diff) | |
| download | setup-65a1bc83f196f34665c83b8914e789e754a07523.tar setup-65a1bc83f196f34665c83b8914e789e754a07523.tar.gz setup-65a1bc83f196f34665c83b8914e789e754a07523.tar.bz2 setup-65a1bc83f196f34665c83b8914e789e754a07523.tar.lz setup-65a1bc83f196f34665c83b8914e789e754a07523.tar.xz setup-65a1bc83f196f34665c83b8914e789e754a07523.tar.zst setup-65a1bc83f196f34665c83b8914e789e754a07523.zip | |
update alacritty config and add davinci launcher with hidpi opt
Diffstat (limited to '')
| -rw-r--r-- | .alacritty.toml | 46 | ||||
| -rw-r--r-- | .alacritty.yml | 79 | ||||
| -rw-r--r-- | .bash_profile | 2 | ||||
| -rw-r--r-- | com.blackmagicdesign.resolve.desktop | 14 | ||||
| -rw-r--r-- | des/i3/assets/wallpaper/morning_break_mountain_illustrated.jpg | bin | 0 -> 122641 bytes | |||
| -rw-r--r-- | des/i3/assets/wallpaper/old/anime-ocean-landscape1.png (renamed from des/i3/assets/wallpaper/anime-ocean-landscape1.png) | bin | 1714461 -> 1714461 bytes | |||
| -rw-r--r-- | des/i3/assets/wallpaper/old/anime-ocean-lights.png (renamed from des/i3/assets/wallpaper/anime-ocean-lights.png) | bin | 3169963 -> 3169963 bytes | |||
| -rw-r--r-- | des/i3/assets/wallpaper/old/anime-power-lines.png (renamed from des/i3/assets/wallpaper/anime-power-lines.png) | bin | 886142 -> 886142 bytes | |||
| -rw-r--r-- | des/i3/assets/wallpaper/old/anime-train-stop.png (renamed from des/i3/assets/wallpaper/anime-train-stop.png) | bin | 3607321 -> 3607321 bytes | |||
| -rw-r--r-- | des/i3/assets/wallpaper/old/cozy-view.png (renamed from des/i3/assets/wallpaper/cozy-view.png) | bin | 4850076 -> 4850076 bytes | |||
| -rw-r--r-- | des/i3/config | 3 | ||||
| -rw-r--r-- | solarized_dark.toml | 28 |
12 files changed, 92 insertions, 80 deletions
diff --git a/.alacritty.toml b/.alacritty.toml new file mode 100644 index 0000000..9ba36fa --- /dev/null +++ b/.alacritty.toml @@ -0,0 +1,46 @@ +import = [ + "~/.setup/solarized_dark.toml" +] + +[bell] +duration = 0 + +[cursor] +style = "Block" +unfocused_hollow = true + +[font] +size = 9 + +[font.bold] +family = "Source Code Pro" +style = "Bold" + +[font.italic] +family = "Source Code Pro" +style = "Medium Italic" + +[font.normal] +family = "Source Code Pro" +style = "Medium" + +[[keyboard.bindings]] +action = "Paste" +key = "V" +mods = "Control|Shift" + +[[keyboard.bindings]] +action = "Copy" +key = "C" +mods = "Control|Shift" + +[scrolling] +history = 100000 + +[window.dimensions] +columns = 100 +lines = 85 + +[window.padding] +x = 1 +y = 0 diff --git a/.alacritty.yml b/.alacritty.yml deleted file mode 100644 index b413aa2..0000000 --- a/.alacritty.yml +++ /dev/null @@ -1,79 +0,0 @@ -window: - # Window dimensions (changes require restart) - # - # Specified in number of columns/lines, not pixels. If both are zero this - # setting is ignored. - dimensions: - columns: 100 - lines: 85 - - # Window padding (changes require restart) - # - # Blank space added around the window in pixels. This padding is not scaled by - # DPI and the specified value is always added at both opposing sides. - padding: - x: 1 - y: 0 - -# Colors -# See: https://github.com/eendroroy/alacritty-theme -schemes: - solarized_dark: &solarized_dark - primary: - background: '0x002b36' - foreground: '0x839496' - normal: - black: '0x073642' - red: '0xdc322f' - green: '0x859900' - yellow: '0xb58900' - blue: '0x268bd2' - magenta: '0xd33682' - cyan: '0x2aa198' - white: '0xeee8d5' - bright: - black: '0x002b36' - red: '0xcb4b16' - green: '0x586e75' - yellow: '0x657b83' - blue: '0x839496' - magenta: '0x6c71c4' - cyan: '0x93a1a1' - white: '0xfdf6e3' - -colors: *solarized_dark - -font: - size: 9 - bold: - family: Source Code Pro - style: Bold - normal: - family: Source Code Pro - style: Medium - italic: - family: Source Code Pro - style: Medium Italic - -bell: - duration: 0 - -# Background opacity -background_opacity: 1.0 - -key_bindings: - - { key: V, mods: Control|Shift, action: Paste } - - { key: C, mods: Control|Shift, action: Copy } - -cursor: - # Cursor style - # - # Values for 'style': - # - ▇ Block - # - _ Underline - # - | Beam - style: Block - - # If this is `true`, the cursor will be rendered as a hollow box when the - # window is not focused. - unfocused_hollow: true diff --git a/.bash_profile b/.bash_profile index 027c569..d0d394c 100644 --- a/.bash_profile +++ b/.bash_profile @@ -3,6 +3,8 @@ # PATH=$PATH:$HOME/.cargo/bin PATH=$PATH:$HOME/go/bin +PATH=$PATH:$HOME/.local/bin + export PATH [[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/com.blackmagicdesign.resolve.desktop b/com.blackmagicdesign.resolve.desktop new file mode 100644 index 0000000..28cbe6d --- /dev/null +++ b/com.blackmagicdesign.resolve.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=DaVinci Resolve +GenericName=DaVinci Resolve +Comment=Revolutionary new tools for editing, visual effects, color correction and professional audio post production, all in a single application! +Path=/opt/resolve/ +Exec=env QT_DEVICE_PIXEL_RATIO=2 QT_AUTO_SCREEN_SCALE_FACTOR=true /opt/resolve/bin/resolve %u +Terminal=false +MimeType=application/x-resolveproj; +Icon=/opt/resolve/graphics/DV_Resolve.png +StartupNotify=true +Name[en_US]=DaVinci Resolve +StartupWMClass=resolve diff --git a/des/i3/assets/wallpaper/morning_break_mountain_illustrated.jpg b/des/i3/assets/wallpaper/morning_break_mountain_illustrated.jpg Binary files differnew file mode 100644 index 0000000..1825f1e --- /dev/null +++ b/des/i3/assets/wallpaper/morning_break_mountain_illustrated.jpg diff --git a/des/i3/assets/wallpaper/anime-ocean-landscape1.png b/des/i3/assets/wallpaper/old/anime-ocean-landscape1.png Binary files differindex ff6308f..ff6308f 100644 --- a/des/i3/assets/wallpaper/anime-ocean-landscape1.png +++ b/des/i3/assets/wallpaper/old/anime-ocean-landscape1.png diff --git a/des/i3/assets/wallpaper/anime-ocean-lights.png b/des/i3/assets/wallpaper/old/anime-ocean-lights.png Binary files differindex ebe0f5e..ebe0f5e 100644 --- a/des/i3/assets/wallpaper/anime-ocean-lights.png +++ b/des/i3/assets/wallpaper/old/anime-ocean-lights.png diff --git a/des/i3/assets/wallpaper/anime-power-lines.png b/des/i3/assets/wallpaper/old/anime-power-lines.png Binary files differindex f7474e1..f7474e1 100644 --- a/des/i3/assets/wallpaper/anime-power-lines.png +++ b/des/i3/assets/wallpaper/old/anime-power-lines.png diff --git a/des/i3/assets/wallpaper/anime-train-stop.png b/des/i3/assets/wallpaper/old/anime-train-stop.png Binary files differindex e923a55..e923a55 100644 --- a/des/i3/assets/wallpaper/anime-train-stop.png +++ b/des/i3/assets/wallpaper/old/anime-train-stop.png diff --git a/des/i3/assets/wallpaper/cozy-view.png b/des/i3/assets/wallpaper/old/cozy-view.png Binary files differindex 3ad1724..3ad1724 100644 --- a/des/i3/assets/wallpaper/cozy-view.png +++ b/des/i3/assets/wallpaper/old/cozy-view.png diff --git a/des/i3/config b/des/i3/config index 84c8fac..6d0a955 100644 --- a/des/i3/config +++ b/des/i3/config @@ -23,6 +23,7 @@ font pango:monospace 8 font pango:Source Code Pro 8 # Notifications via dunst - handled by systemd +exec --no-startup-id dunst bindsym $mod+F12 exec --no-startup-id /usr/bin/dunstctl close bindsym $mod+Shift+F12 exec --no-startup-id /usr/bin/dunstctl history-pop @@ -30,7 +31,7 @@ bindsym $mod+Shift+F12 exec --no-startup-id /usr/bin/dunstctl history-pop exec --no-startup-id xrandr --output DVI-D-0 --auto --output HDMI-0 --auto --left-of DVI-D-0 # Background -exec --no-startup-id feh --bg-fill ~/.setup/des/i3/assets/wallpaper/yosemite_color_block.png +exec --no-startup-id feh --bg-fill --randomize ~/.setup/des/i3/assets/wallpaper # ~/.setup/des/i3/assets/wallpaper/yosemite_color_block.png # Change background randomly bindsym $mod+F8 exec --no-startup-id feh --bg-fill --randomize ~/.setup/des/i3/assets/wallpaper diff --git a/solarized_dark.toml b/solarized_dark.toml new file mode 100644 index 0000000..dbcce2b --- /dev/null +++ b/solarized_dark.toml @@ -0,0 +1,28 @@ +# Colors (Solarized Dark) + +# Default colors +[colors.primary] +background = '#002b36' +foreground = '#839496' + +# Normal colors +[colors.normal] +black = '#073642' +red = '#dc322f' +green = '#859900' +yellow = '#b58900' +blue = '#268bd2' +magenta = '#d33682' +cyan = '#2aa198' +white = '#eee8d5' + +# Bright colors +[colors.bright] +black = '#002b36' +red = '#cb4b16' +green = '#586e75' +yellow = '#657b83' +blue = '#839496' +magenta = '#6c71c4' +cyan = '#93a1a1' +white = '#fdf6e3' |
