Compare commits
35 Commits
93a738f0e4
...
master
Author | SHA1 | Date | |
---|---|---|---|
2525d94f8a | |||
9f891cce6c | |||
a1617fb3d1 | |||
8f44967dd0 | |||
b7f71215b0 | |||
77b618ce3b | |||
16eb86a0ed | |||
073430579a | |||
b47d69c9df | |||
d7b17edc61 | |||
8439a20056 | |||
8b686b3040 | |||
3cfb9e4830 | |||
2aaa27281b | |||
3459200947 | |||
3d6a361bcd | |||
22333637ea | |||
032fb99841 | |||
6210c93d35 | |||
9e18018917 | |||
bbb32fb0bd | |||
946e6e2f9f | |||
657e38fb34 | |||
cf7707dedf | |||
5042dd248c | |||
b8871f647c | |||
4a750e9740 | |||
207bb53bc0 | |||
7cdda95176 | |||
fba92b7dd0 | |||
4a49a3b594 | |||
405c69bb82 | |||
a7e613c1e4 | |||
766dd7db39 | |||
dcf6a1d284 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@
|
|||||||
*.swo
|
*.swo
|
||||||
*.DS_STORE
|
*.DS_STORE
|
||||||
*desktop.ini
|
*desktop.ini
|
||||||
|
nord.rasi
|
@@ -16,6 +16,12 @@ It shouldn't be difficult to find an equilivant package for your distribution wi
|
|||||||
A list of the packages that I have installed can be found in the files `pacman.lst` and `pacman_aur.lst`.
|
A list of the packages that I have installed can be found in the files `pacman.lst` and `pacman_aur.lst`.
|
||||||
Non-official packages come from the AUR, which can't typically be installed by pacman directly and the reason why it's a seperate list.
|
Non-official packages come from the AUR, which can't typically be installed by pacman directly and the reason why it's a seperate list.
|
||||||
|
|
||||||
|
Most of those packages are completely optional. The bare minimum for installing these dotfiles require you to have these programs:
|
||||||
|
|
||||||
|
1. git
|
||||||
|
1. curl
|
||||||
|
1. unzip
|
||||||
|
|
||||||
### Dotfiles Postinstall
|
### Dotfiles Postinstall
|
||||||
|
|
||||||
You may create a standard text file called `.dotfiles.postinst` in your home directory before installing.
|
You may create a standard text file called `.dotfiles.postinst` in your home directory before installing.
|
||||||
|
@@ -1,39 +1,39 @@
|
|||||||
! special
|
! special
|
||||||
*.foreground: #c6c8d1
|
*.foreground: #d8dee9
|
||||||
*.background: #161821
|
*.background: #2e3440
|
||||||
*.cursorColor: #c6c8d1
|
*.cursorColor: #d8dee9
|
||||||
|
|
||||||
! black
|
! black
|
||||||
*.color0: #161821
|
*.color0: #2e3440
|
||||||
*.color8: #6b7089
|
*.color8: #88c0d0
|
||||||
|
|
||||||
! red
|
! red
|
||||||
*.color1: #e27878
|
*.color1: #bf616a
|
||||||
*.color9: #e98989
|
*.color9: #e98989
|
||||||
|
|
||||||
! green
|
! green
|
||||||
*.color2: #b4be82
|
*.color2: #a3be8c
|
||||||
*.color10: #c0ca8e
|
*.color10: #c0ca8e
|
||||||
|
|
||||||
! yellow
|
! yellow
|
||||||
*.color3: #e2a478
|
*.color3: #ebcb8b
|
||||||
*.color11: #e9b189
|
*.color11: #e9b189
|
||||||
|
|
||||||
! blue
|
! blue
|
||||||
*.color4: #84a0c6
|
*.color4: #81a1c1
|
||||||
*.color12: #91acd1
|
*.color12: #5e81ac
|
||||||
|
|
||||||
! magenta
|
! magenta
|
||||||
*.color5: #a093c7
|
*.color5: #b48ead
|
||||||
*.color13: #ada0d3
|
*.color13: #ada0d3
|
||||||
|
|
||||||
! cyan
|
! cyan
|
||||||
*.color6: #89b8c2
|
*.color6: #8fbcbb
|
||||||
*.color14: #95c4ce
|
*.color14: #88c0d0
|
||||||
|
|
||||||
! white
|
! white
|
||||||
*.color7: #c6c8d1
|
*.color7: #d8dee9
|
||||||
*.color15: #d2d4de
|
*.color15: #e5e9f0
|
||||||
|
|
||||||
URxvt.font: xft:Source Code Pro:size=10.5
|
URxvt.font: xft:Source Code Pro:size=10.5
|
||||||
URxvt.depth: 32
|
URxvt.depth: 32
|
||||||
|
@@ -19,6 +19,7 @@ alias ta='tmux attach -t C0DE || tmux new -s C0DE'
|
|||||||
alias open='xdg-open'
|
alias open='xdg-open'
|
||||||
alias dmesg='dmesg --color=always | grep -v UFW --color=always'
|
alias dmesg='dmesg --color=always | grep -v UFW --color=always'
|
||||||
alias sudo='sudo ' # So we can use my aliases in sudo - https://askubuntu.com/a/22043
|
alias sudo='sudo ' # So we can use my aliases in sudo - https://askubuntu.com/a/22043
|
||||||
|
alias gp='java -jar ~/bin/gp.jar -r "ACR1252 Dual Reader PICC"'
|
||||||
|
|
||||||
# Use `shred` if it exists, or just `rm -P`
|
# Use `shred` if it exists, or just `rm -P`
|
||||||
type "$shred" > /dev/null || alias shred='rm -P'
|
type "$shred" > /dev/null || alias shred='rm -P'
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
"files.autoSave": "afterDelay",
|
"files.autoSave": "afterDelay",
|
||||||
"python.languageServer": "Pylance",
|
"python.languageServer": "Pylance",
|
||||||
"window.zoomLevel": 0,
|
"window.zoomLevel": 0,
|
||||||
"workbench.colorTheme": "Iceberg",
|
"workbench.colorTheme": "Nord",
|
||||||
"sync.quietSync": true,
|
"sync.quietSync": true,
|
||||||
"sync.autoUpload": true,
|
"sync.autoUpload": true,
|
||||||
"sync.autoDownload": true,
|
"sync.autoDownload": true,
|
||||||
|
@@ -1,4 +1,2 @@
|
|||||||
file:/// /
|
file:/// /
|
||||||
file:///home/dtodd/dev dev
|
file:///home/c0de/dev dev
|
||||||
file:///home/dtodd/Documents Documents
|
|
||||||
file:///mnt/otdc otdc
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[Settings]
|
[Settings]
|
||||||
gtk-icon-theme-name=oomox-iceberg
|
gtk-icon-theme-name=oomox-iceberg
|
||||||
gtk-theme-name=oomox-iceberg
|
gtk-theme-name=Nordic
|
||||||
gtk-cursor-theme-name=xcursor-breeze
|
gtk-cursor-theme-name=xcursor-breeze
|
||||||
gtk-font-name=Source Code Pro Semibold 10.5
|
gtk-font-name=Source Code Pro Semibold 10.5
|
||||||
gtk-xft-antialias=1
|
gtk-xft-antialias=1
|
||||||
|
@@ -7,9 +7,10 @@ bar {
|
|||||||
#workspace_buttons yes
|
#workspace_buttons yes
|
||||||
#separator_symbol "|"
|
#separator_symbol "|"
|
||||||
|
|
||||||
font pango:FontAwesome5Free, SourceCodeProforPowerline 11
|
font pango:FontAwesome6Free 11, SourceCodeProforPowerline 11
|
||||||
|
|
||||||
status_command i3blocks -c $i3_path/i3blocks.conf
|
status_command i3blocks -c $i3_path/i3blocks.conf
|
||||||
|
# status_command i3status-rs $i3_path/i3status-rs.toml
|
||||||
|
|
||||||
colors {
|
colors {
|
||||||
background #161821
|
background #161821
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
# Frequently used programs
|
# Frequently used programs
|
||||||
bindsym $mod+Return exec --no-startup-id terminator
|
bindsym $mod+Return exec --no-startup-id terminator
|
||||||
bindsym $mod+Shift+Return exec --no-startup-id urxvt
|
bindsym $mod+Shift+Return exec --no-startup-id urxvt
|
||||||
bindsym $mod+F2 exec --no-startup-id firefox
|
bindsym $mod+F2 exec --no-startup-id vivaldi-stable
|
||||||
bindsym $mod+F3 exec --no-startup-id pcmanfm
|
bindsym $mod+F3 exec --no-startup-id pcmanfm
|
||||||
bindsym $mod+F4 exec --no-startup-id code
|
bindsym $mod+F4 exec --no-startup-id code
|
||||||
bindsym $mod+F6 exec --no-startup-id ~/bin/music_player
|
bindsym $mod+F6 exec --no-startup-id ~/bin/music_player
|
||||||
|
@@ -201,9 +201,10 @@ bar {
|
|||||||
#workspace_buttons yes
|
#workspace_buttons yes
|
||||||
#separator_symbol "|"
|
#separator_symbol "|"
|
||||||
|
|
||||||
font pango:FontAwesome5Free, SourceCodeProforPowerline 11
|
font pango:FontAwesome6Free 11, SourceCodeProforPowerline 11
|
||||||
|
|
||||||
status_command i3blocks -c $i3_path/i3blocks.conf
|
status_command i3blocks -c $i3_path/i3blocks.conf
|
||||||
|
# status_command i3status-rs $i3_path/i3status-rs.toml
|
||||||
|
|
||||||
colors {
|
colors {
|
||||||
background #161821
|
background #161821
|
||||||
@@ -351,7 +352,7 @@ mode "resize" {
|
|||||||
# Frequently used programs
|
# Frequently used programs
|
||||||
bindsym $mod+Return exec --no-startup-id terminator
|
bindsym $mod+Return exec --no-startup-id terminator
|
||||||
bindsym $mod+Shift+Return exec --no-startup-id urxvt
|
bindsym $mod+Shift+Return exec --no-startup-id urxvt
|
||||||
bindsym $mod+F2 exec --no-startup-id firefox
|
bindsym $mod+F2 exec --no-startup-id vivaldi-stable
|
||||||
bindsym $mod+F3 exec --no-startup-id pcmanfm
|
bindsym $mod+F3 exec --no-startup-id pcmanfm
|
||||||
bindsym $mod+F4 exec --no-startup-id code
|
bindsym $mod+F4 exec --no-startup-id code
|
||||||
bindsym $mod+F6 exec --no-startup-id ~/bin/music_player
|
bindsym $mod+F6 exec --no-startup-id ~/bin/music_player
|
||||||
|
@@ -29,6 +29,10 @@ command=~/bin/i3blocks/$BLOCK_NAME
|
|||||||
separator_block_width=15
|
separator_block_width=15
|
||||||
markup=pango
|
markup=pango
|
||||||
|
|
||||||
|
[window]
|
||||||
|
interval=1
|
||||||
|
label=🗔
|
||||||
|
|
||||||
[scratchpad]
|
[scratchpad]
|
||||||
interval=5
|
interval=5
|
||||||
|
|
||||||
@@ -70,10 +74,6 @@ label=
|
|||||||
color=#81b71a
|
color=#81b71a
|
||||||
interval=5
|
interval=5
|
||||||
|
|
||||||
[window]
|
|
||||||
interval=1
|
|
||||||
label=🗔
|
|
||||||
|
|
||||||
[clock]
|
[clock]
|
||||||
label=
|
label=
|
||||||
interval=30
|
interval=30
|
||||||
|
71
home/.config/i3/i3status-rs.toml
Normal file
71
home/.config/i3/i3status-rs.toml
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
# Reference: https://github.com/greshake/i3status-rust/blob/v0.22.0/doc/blocks.md
|
||||||
|
|
||||||
|
[theme]
|
||||||
|
theme = "nord-dark"
|
||||||
|
|
||||||
|
[icons]
|
||||||
|
icons = "awesome6"
|
||||||
|
|
||||||
|
# [[block]]
|
||||||
|
#block = "focused_window"
|
||||||
|
#max_width = 35
|
||||||
|
#format = "{title}"
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "cpu"
|
||||||
|
#interval = 2
|
||||||
|
#format = "{utilization}"
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "load"
|
||||||
|
#format = "{1m}"
|
||||||
|
#interval = 15
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "memory"
|
||||||
|
#format = "{mem_used}"
|
||||||
|
#icons = true
|
||||||
|
#interval = 5
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "net"
|
||||||
|
interval = 2
|
||||||
|
#hide_missing = true
|
||||||
|
#hide_inactive = true
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "temperature"
|
||||||
|
# TODO: Only if I have temp sensors
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "backlight"
|
||||||
|
# TODO: Only if I'm a laptop
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "pacman"
|
||||||
|
interval = 600
|
||||||
|
format = "{both} updates available"
|
||||||
|
format_singular = "{both} update available"
|
||||||
|
critical_updates_regex = "(linux|linux-lts|linux-zen)"
|
||||||
|
aur_command = "yay -Qua"
|
||||||
|
#hide_when_uptodate = true
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "battery"
|
||||||
|
interval = 15
|
||||||
|
#hide_missing = true
|
||||||
|
format = " {percentage} ({time})"
|
||||||
|
full_threshold = 99
|
||||||
|
full_format = " "
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "sound"
|
||||||
|
format = "{volume}"
|
||||||
|
headphones_indicator = true
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "time"
|
||||||
|
format = "%h %d %R"
|
||||||
|
interval = 15
|
||||||
|
#on_click = "notify-send \"$(cal)\""
|
||||||
|
|
@@ -1,15 +1,15 @@
|
|||||||
[Default Applications]
|
[Default Applications]
|
||||||
x-scheme-handler/http=userapp-google-chrome.desktop
|
x-scheme-handler/http=vivaldi-stable.desktop
|
||||||
x-scheme-handler/https=userapp-google-chrome.desktop
|
x-scheme-handler/https=vivaldi-stable.desktop
|
||||||
x-scheme-handler/ftp=userapp-google-chrome.desktop
|
x-scheme-handler/ftp=vivaldi-stable.desktop
|
||||||
x-scheme-handler/chrome=userapp-google-chrome.desktop
|
x-scheme-handler/chrome=vivaldi-stable.desktop
|
||||||
text/html=userapp-google-chrome.desktop
|
text/html=vivaldi-stable.desktop
|
||||||
application/x-extension-htm=userapp-google-chrome.desktop
|
application/x-extension-htm=vivaldi-stable.desktop
|
||||||
application/x-extension-html=userapp-google-chrome.desktop
|
application/x-extension-html=vivaldi-stable.desktop
|
||||||
application/x-extension-shtml=userapp-google-chrome.desktop
|
application/x-extension-shtml=vivaldi-stable.desktop
|
||||||
application/xhtml+xml=userapp-google-chrome.desktop
|
application/xhtml+xml=vivaldi-stable.desktop
|
||||||
application/x-extension-xhtml=userapp-google-chrome.desktop
|
application/x-extension-xhtml=vivaldi-stable.desktop
|
||||||
application/x-extension-xht=userapp-google-chrome.desktop
|
application/x-extension-xht=vivaldi-stable.desktop
|
||||||
image/jpeg=viewnior.desktop;gpicview.desktop;
|
image/jpeg=viewnior.desktop;gpicview.desktop;
|
||||||
image/png=viewnior.desktop;gpicview.desktop;
|
image/png=viewnior.desktop;gpicview.desktop;
|
||||||
text/plain=gvim.desktop
|
text/plain=gvim.desktop
|
||||||
@@ -28,17 +28,17 @@ text/x-python=gvim.desktop
|
|||||||
x-scheme-handler/etcher=balena-etcher-electron.desktop
|
x-scheme-handler/etcher=balena-etcher-electron.desktop
|
||||||
|
|
||||||
[Added Associations]
|
[Added Associations]
|
||||||
x-scheme-handler/http=userapp-google-chrome.desktop;
|
x-scheme-handler/http=vivaldi-stable.desktop;
|
||||||
x-scheme-handler/https=userapp-google-chrome.desktop;
|
x-scheme-handler/https=vivaldi-stable.desktop;
|
||||||
x-scheme-handler/ftp=userapp-google-chrome.desktop;
|
x-scheme-handler/ftp=vivaldi-stable.desktop;
|
||||||
x-scheme-handler/chrome=userapp-google-chrome.desktop;
|
x-scheme-handler/chrome=vivaldi-stable.desktop;
|
||||||
text/html=userapp-google-chrome.desktop;
|
text/html=vivaldi-stable.desktop;
|
||||||
application/x-extension-htm=userapp-google-chrome.desktop;
|
application/x-extension-htm=vivaldi-stable.desktop;
|
||||||
application/x-extension-html=userapp-google-chrome.desktop;
|
application/x-extension-html=vivaldi-stable.desktop;
|
||||||
application/x-extension-shtml=userapp-google-chrome.desktop;
|
application/x-extension-shtml=vivaldi-stable.desktop;
|
||||||
application/xhtml+xml=userapp-google-chrome.desktop;
|
application/xhtml+xml=vivaldi-stable.desktop;
|
||||||
application/x-extension-xhtml=userapp-google-chrome.desktop;
|
application/x-extension-xhtml=vivaldi-stable.desktop;
|
||||||
application/x-extension-xht=userapp-google-chrome.desktop;
|
application/x-extension-xht=vivaldi-stable.desktop;
|
||||||
image/jpeg=viewnior.desktop;gpicview.desktop;
|
image/jpeg=viewnior.desktop;gpicview.desktop;
|
||||||
image/png=viewnior.desktop;gpicview.desktop;
|
image/png=viewnior.desktop;gpicview.desktop;
|
||||||
text/plain=gvim.desktop;mousepad.desktop;
|
text/plain=gvim.desktop;mousepad.desktop;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
configuration {
|
configuration {
|
||||||
theme: "iceberg-dark";
|
|
||||||
font: "Source Code Pro Semibold 10.5";
|
font: "Source Code Pro Semibold 10.5";
|
||||||
}
|
}
|
||||||
|
@theme "nord"
|
||||||
|
|
||||||
|
0
home/.config/rofi/themes/.gitkeep
Normal file
0
home/.config/rofi/themes/.gitkeep
Normal file
@@ -1,205 +0,0 @@
|
|||||||
/*******************************************************************************
|
|
||||||
* ROFI Color Theme
|
|
||||||
* User: Sheepla
|
|
||||||
* Copyleft: Sheepla
|
|
||||||
*******************************************************************************/
|
|
||||||
|
|
||||||
* {
|
|
||||||
highlight: bold italic;
|
|
||||||
scrollbar: true;
|
|
||||||
|
|
||||||
/* Color palette from iceberg.vim and iceberg-dark
|
|
||||||
* https://github.com/cocopon/iceberg.vim
|
|
||||||
* https://github.com/gkeep/iceberg-dark
|
|
||||||
*/
|
|
||||||
palette-bg0: #161821;
|
|
||||||
palette-bg1: #1e2132;
|
|
||||||
palette-bg2: #444b71;
|
|
||||||
palette-fg0: #c6c8d1;
|
|
||||||
palette-fg1: #aeb4cc;
|
|
||||||
palette-red: #e27878;
|
|
||||||
palette-green: #b4be82;
|
|
||||||
palette-yellow: #e2a478;
|
|
||||||
palette-blue: #84a0c6;
|
|
||||||
palette-purple: #a093c7;
|
|
||||||
palette-cyan: #89b8c2;
|
|
||||||
palette-grey: #c0bfc9;
|
|
||||||
|
|
||||||
/* Base colors */
|
|
||||||
background: @palette-bg0;
|
|
||||||
background-color: @background;
|
|
||||||
foreground: @palette-fg1;
|
|
||||||
|
|
||||||
/* Normal colors */
|
|
||||||
normal-background: @background;
|
|
||||||
normal-foreground: @foreground;
|
|
||||||
alternate-normal-background: @palette-bg1;
|
|
||||||
alternate-normal-foreground: @foreground;
|
|
||||||
selected-normal-background: @palette-bg2;
|
|
||||||
selected-normal-foreground: @palette-fg0;
|
|
||||||
|
|
||||||
/* Active window colors */
|
|
||||||
active-background: @normal-background;
|
|
||||||
active-foreground: @palette-blue;
|
|
||||||
alternate-active-background: @alternate-normal-background;
|
|
||||||
alternate-active-foreground: @active-foreground;
|
|
||||||
selected-active-background: @palette-blue;
|
|
||||||
selected-active-foreground: @normal-background;
|
|
||||||
|
|
||||||
/* Urgent colors */
|
|
||||||
urgent-background: @background;
|
|
||||||
urgent-foreground: @palette-yellow;
|
|
||||||
alternate-urgent-background: @alternate-normal-background;
|
|
||||||
alternate-urgent-foreground: @urgent-foreground;
|
|
||||||
selected-urgent-background: @urgent-foreground;
|
|
||||||
selected-urgent-foreground: @normal-background;
|
|
||||||
|
|
||||||
/* Other colors */
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
separatorcolor: @border-color;
|
|
||||||
scrollbar-handle: @palette-bg2;
|
|
||||||
|
|
||||||
text-color: @alternate-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
background-color: @background-color;
|
|
||||||
children: [mainbox];
|
|
||||||
}
|
|
||||||
|
|
||||||
#mainbox {
|
|
||||||
border: 0;
|
|
||||||
orientation: vertical;
|
|
||||||
children: [ entry, message, listview, mode-switcher ];
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry {
|
|
||||||
expand: false;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
/* Padding between 2 lines */
|
|
||||||
padding: 10px 0px 10px 10px;
|
|
||||||
border: 0 0 2px;
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar {
|
|
||||||
expand: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Message box */
|
|
||||||
#textbox {
|
|
||||||
horizontal-align: 0;
|
|
||||||
background-color: @palette-bg2;
|
|
||||||
padding: 10px 20px 10px 20px ;
|
|
||||||
text-color: @palette-fg0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#listview {
|
|
||||||
border: 0px 0px 0px ;
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
padding: 0px 0px 5px 0px;
|
|
||||||
scrollbar: @scrollbar;
|
|
||||||
columns: 3;
|
|
||||||
lines: 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#mode-switcher {
|
|
||||||
border: 3px 0px 0px 0px;
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#button.selected {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element {
|
|
||||||
border: 0;
|
|
||||||
padding: 3px 10px 3px 10px ;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.normal {
|
|
||||||
background-color: @normal-background;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.urgent {
|
|
||||||
background-color: @urgent-background;
|
|
||||||
text-color: @urgent-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.active {
|
|
||||||
background-color: @active-background;
|
|
||||||
text-color: @active-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.selected.normal {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.selected.urgent {
|
|
||||||
background-color: @selected-urgent-background;
|
|
||||||
text-color: @selected-urgent-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.selected.active {
|
|
||||||
background-color: @selected-active-background;
|
|
||||||
text-color: @selected-active-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.alternate.normal {
|
|
||||||
background-color: @alternate-normal-background;
|
|
||||||
text-color: @alternate-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.alternate.urgent {
|
|
||||||
background-color: @alternate-urgent-background;
|
|
||||||
text-color: @alternate-urgent-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.alternate.active {
|
|
||||||
background-color: @alternate-active-background;
|
|
||||||
text-color: @alternate-active-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
inputbar {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
padding: 2px;
|
|
||||||
children: [ textbox-prompt-sep, entry, case-indicator ];
|
|
||||||
}
|
|
||||||
|
|
||||||
case-indicator,
|
|
||||||
entry,
|
|
||||||
button {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.selected {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
textbox-prompt-sep {
|
|
||||||
expand: false;
|
|
||||||
str: ":";
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
margin: 0 0.3em 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
prompt {
|
|
||||||
padding:6px 9px;
|
|
||||||
background-color: @palette-bg2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element-icon {
|
|
||||||
size: 18;
|
|
||||||
}
|
|
@@ -1,8 +1,8 @@
|
|||||||
[global_config]
|
[global_config]
|
||||||
title_transmit_fg_color = "#161821"
|
title_transmit_fg_color = "#161821"
|
||||||
title_transmit_bg_color = "#89b8c2"
|
title_transmit_bg_color = "#8fbcbb"
|
||||||
title_inactive_fg_color = "#c6c8d1"
|
title_inactive_fg_color = "#3b4252"
|
||||||
title_inactive_bg_color = "#6b7089"
|
title_inactive_bg_color = "#88c0d0"
|
||||||
enabled_plugins = APTURLHandler, LaunchpadCodeURLHandler, LaunchpadBugURLHandler
|
enabled_plugins = APTURLHandler, LaunchpadCodeURLHandler, LaunchpadBugURLHandler
|
||||||
title_use_system_font = False
|
title_use_system_font = False
|
||||||
title_font = Source Code Pro 10
|
title_font = Source Code Pro 10
|
||||||
@@ -10,11 +10,11 @@
|
|||||||
[profiles]
|
[profiles]
|
||||||
[[default]]
|
[[default]]
|
||||||
visible_bell = True
|
visible_bell = True
|
||||||
background_color = "#161821"
|
background_color = "#2e3440"
|
||||||
cursor_color = "#c6c8d1"
|
cursor_color = "#d8dee9"
|
||||||
foreground_color = "#c6c8d1"
|
foreground_color = "#d8dee9"
|
||||||
scrollback_infinite = True
|
scrollback_infinite = True
|
||||||
palette = "#161821:#e27878:#b4be82:#e2a478:#84a0c6:#a093c7:#89b8c2:#c6c8d1:#6b7089:#e98989:#c0ca8e:#e9b189:#91acd1:#ada0d3:#95c4ce:#d2d4de"
|
palette ="#2e3440:#d8dee9:#ebcb8b:#a3be8c:#d8dee9:#e5e9f0:#eceff4:#8fbcbb:#88c0d0:#81a1c1:#5e81ac:#bf616a:#d08770:#ebcb8b:#a3be8c:#b48ead"
|
||||||
[layouts]
|
[layouts]
|
||||||
[[default]]
|
[[default]]
|
||||||
[[[child1]]]
|
[[[child1]]]
|
||||||
|
@@ -1,26 +0,0 @@
|
|||||||
[Alsa]
|
|
||||||
card=HDA ATI SB
|
|
||||||
channel=Master
|
|
||||||
|
|
||||||
[Notification]
|
|
||||||
show_notification=true
|
|
||||||
notification_type=1
|
|
||||||
|
|
||||||
[StatusIcon]
|
|
||||||
stepsize=5
|
|
||||||
onclick=urxvt -e 'alsamixer'
|
|
||||||
theme=White Gnome
|
|
||||||
use_panel_specific_icons=true
|
|
||||||
lmb_slider=true
|
|
||||||
mmb_mute=true
|
|
||||||
use_horizontal_slider=false
|
|
||||||
show_sound_level=true
|
|
||||||
use_transparent_background=true
|
|
||||||
|
|
||||||
[Hotkeys]
|
|
||||||
up_enabled=true
|
|
||||||
down_enabled=true
|
|
||||||
mute_enabled=true
|
|
||||||
up=XF86AudioRaiseVolume
|
|
||||||
down=XF86AudioLowerVolume
|
|
||||||
mute=XF86AudioMute
|
|
@@ -1,22 +0,0 @@
|
|||||||
# Configuration for D-Menu (I use rofi mostly, this is usually forgotten about)
|
|
||||||
|
|
||||||
## define the font for dmenu to be used
|
|
||||||
DMENU_FN="Source Code Pro Semibold 10.5"
|
|
||||||
|
|
||||||
## background colour for unselected menu-items
|
|
||||||
DMENU_NB="#6b7089"
|
|
||||||
|
|
||||||
## textcolour for unselected menu-items
|
|
||||||
DMENU_NF="#c6c8d1"
|
|
||||||
|
|
||||||
## background colour for selected menu-items
|
|
||||||
DMENU_SB="#89b8c2"
|
|
||||||
|
|
||||||
## textcolour for selected menu-items
|
|
||||||
DMENU_SF="#161821"
|
|
||||||
|
|
||||||
## command for the terminal application to be used:
|
|
||||||
TERMINAL_CMD="terminal -e"
|
|
||||||
|
|
||||||
## export our variables
|
|
||||||
DMENU_OPTIONS="-fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"
|
|
@@ -10,7 +10,7 @@ export LANGUAGE=en_US.UTF-8
|
|||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
|
|
||||||
# Paths
|
# Paths
|
||||||
export PATH=${HOME}/bin:$PATH:/usr/lib/wine/bin:/sbin:/usr/sbin:/usr/local/bin
|
export PATH=${HOME}/bin:${HOME}/.local/bin:$PATH:/sbin:/usr/sbin:/usr/local/bin
|
||||||
|
|
||||||
# Give the path to the dotfiles
|
# Give the path to the dotfiles
|
||||||
export _DOTFILES="${HOME}/dotfiles"
|
export _DOTFILES="${HOME}/dotfiles"
|
||||||
|
@@ -1,139 +0,0 @@
|
|||||||
# vim:filetype=config:tw=80:et
|
|
||||||
#
|
|
||||||
# This is sample ~/.stalonetrayrc, resembling default configuration.
|
|
||||||
# Remember: command line parameters take precedence.
|
|
||||||
#
|
|
||||||
# Directives introduced in 0.8 are marked with "NEW in 0.8"
|
|
||||||
#
|
|
||||||
####################################################################
|
|
||||||
#
|
|
||||||
# stalonetray understands following directives
|
|
||||||
#
|
|
||||||
####################################################################
|
|
||||||
|
|
||||||
# background <color> # color can be specified as an HTML hex triplet or
|
|
||||||
# as a name from rgb.txt, note that '#' must be quoted
|
|
||||||
background "#6b7089"
|
|
||||||
|
|
||||||
# decorations <decspec> # set trays window decorations; possible values for
|
|
||||||
# decspec are: all, title, border, none
|
|
||||||
decorations none
|
|
||||||
|
|
||||||
# display <display name> # as usual
|
|
||||||
|
|
||||||
# dockapp_mode <mode> # set dockapp mode, which can be either simple (for
|
|
||||||
# e.g. OpenBox, wmaker for WindowMaker, or none
|
|
||||||
# (default). NEW in 0.8.
|
|
||||||
dockapp_mode none
|
|
||||||
|
|
||||||
# fuzzy_edges [<level>] # enable fuzzy edges and set fuzziness level. level
|
|
||||||
# can be from 0 (disabled) to 3; this setting works
|
|
||||||
# with tinting and/or transparent and/or pixmap
|
|
||||||
# backgrounds
|
|
||||||
fuzzy_edges 0
|
|
||||||
|
|
||||||
# geometry <geometry> # tray's geometry in standard X notation; width and
|
|
||||||
# height are specified in slot_size multiples
|
|
||||||
geometry 1x1+0+0
|
|
||||||
|
|
||||||
# grow_gravity <gravity> # one of N, S, E, W, NW, NE, SW, SE; tray will grow
|
|
||||||
# in the direction opposite to one specified by
|
|
||||||
# grow_gravity; if horizontal or vertical
|
|
||||||
# direction is not specified, tray will not grow in
|
|
||||||
# that direction
|
|
||||||
grow_gravity NW
|
|
||||||
|
|
||||||
# icon_gravity <gravity> # icon placement gravity, one of NW, NE, SW, SE
|
|
||||||
icon_gravity NW
|
|
||||||
|
|
||||||
# icon_size <int> # specifies dimensions of typical icon slot
|
|
||||||
icon_size 24
|
|
||||||
|
|
||||||
# log_level <level> # controls the amount of logging output, level can
|
|
||||||
# be err (default), info, or trace (enabled only
|
|
||||||
# when stalonetray configured with --enable-debug)
|
|
||||||
# NEW in 0.8.
|
|
||||||
log_level err
|
|
||||||
|
|
||||||
# kludges kludge[,kludge] # enable specific kludges to work around
|
|
||||||
# non-conforming WMs and/or stalonetray bugs.
|
|
||||||
# NEW in 0.8. Argument is a
|
|
||||||
# comma-separated list of
|
|
||||||
# * fix_window_pos - fix tray window position on
|
|
||||||
# erroneous moves by WM
|
|
||||||
# * force_icons_size - ignore resize events on all
|
|
||||||
# icons; force their size to be equal to
|
|
||||||
# icon_size
|
|
||||||
# * use_icon_hints - use icon window hints to
|
|
||||||
# dtermine icon size
|
|
||||||
|
|
||||||
kludges force_icons_size
|
|
||||||
|
|
||||||
# max_geometry <geometry> # maximal tray dimensions; 0 in width/height means
|
|
||||||
# no limit
|
|
||||||
max_geometry 0x0
|
|
||||||
|
|
||||||
# no_shrink [<bool>] # disables shrink-back mode
|
|
||||||
no_shrink false
|
|
||||||
|
|
||||||
# parent_bg [<bool>] # whether to use pseudo-transparency
|
|
||||||
# (looks better when reparented into smth like FvwmButtons)
|
|
||||||
parent_bg false
|
|
||||||
|
|
||||||
# pixmap_bg <path_to_xpm> # use pixmap from specified xpm file for (tiled) background
|
|
||||||
# pixmap_bg /home/user/.stalonetraybg.xpm
|
|
||||||
|
|
||||||
# scrollbars <mode> # enable/disable scrollbars; mode is either
|
|
||||||
# vertical, horizontal, all or none (default)
|
|
||||||
# NEW in 0.8.
|
|
||||||
scrollbars none
|
|
||||||
|
|
||||||
# scrollbars-size <size> # scrollbars step in pixels; default is slot_size / 4
|
|
||||||
# scrollbars-step 8
|
|
||||||
|
|
||||||
# scrollbars-step <step> # scrollbars step in pixels; default is slot_size / 2
|
|
||||||
# scrollbars-step 32
|
|
||||||
|
|
||||||
# slot_size <int> # specifies size of icon slot, defaults to
|
|
||||||
# icon_size NEW in 0.8.
|
|
||||||
|
|
||||||
# skip_taskbar [<bool>] # hide tray`s window from the taskbar
|
|
||||||
skip_taskbar true
|
|
||||||
|
|
||||||
# sticky [<bool>] # make a tray`s window sticky across the
|
|
||||||
# desktops/pages
|
|
||||||
sticky true
|
|
||||||
|
|
||||||
# tint_color <color> # set tinting color
|
|
||||||
tint_color white
|
|
||||||
|
|
||||||
# tint_level <level> # set tinting level; level ranges from 0 (disabled)
|
|
||||||
# to 255
|
|
||||||
tint_level 0
|
|
||||||
|
|
||||||
# transparent [<bool>] # whether to use root-transparency (background
|
|
||||||
# image must be set with Esetroot or compatible utility)
|
|
||||||
transparent false
|
|
||||||
|
|
||||||
# vertical [<bool>] # whether to use vertical layout (horisontal layout
|
|
||||||
# is used by default)
|
|
||||||
vertical false
|
|
||||||
|
|
||||||
# window_layer <layer> # set the EWMH-compatible window layer; one of:
|
|
||||||
# bottom, normal, top
|
|
||||||
window_layer normal
|
|
||||||
|
|
||||||
# window_strut <mode> # enable/disable window struts for tray window (to
|
|
||||||
# avoid converting of tray window by maximized
|
|
||||||
# windows); mode defines to which screen border tray
|
|
||||||
# will be attached; it can be either top, bottom,
|
|
||||||
# left, right, none or auto (default)
|
|
||||||
window_strut auto
|
|
||||||
|
|
||||||
# window_type <type> # set the EWMH-compatible window type; one of:
|
|
||||||
# desktop, dock, normal, toolbar, utility
|
|
||||||
window_type utility
|
|
||||||
|
|
||||||
# xsync [<bool>] # whether to operate on X server synchronously (SLOOOOW)
|
|
||||||
xsync false
|
|
||||||
|
|
115
home/.tmux.conf
115
home/.tmux.conf
@@ -61,120 +61,17 @@ set -g history-limit 5000
|
|||||||
|
|
||||||
# Syncronizes keys typed in one pane across all panes, press again to disable
|
# Syncronizes keys typed in one pane across all panes, press again to disable
|
||||||
bind-key y setw synchronize-panes
|
bind-key y setw synchronize-panes
|
||||||
#
|
|
||||||
#######################
|
|
||||||
#### DESIGN CHANGES ###
|
|
||||||
#######################
|
|
||||||
#
|
|
||||||
## panes
|
|
||||||
#set -g pane-border-fg black
|
|
||||||
#set -g pane-active-border-fg brightred
|
|
||||||
#
|
|
||||||
### Status bar design
|
|
||||||
## status line
|
|
||||||
#set -g status-utf8 on
|
|
||||||
#set -g status-justify left
|
|
||||||
#set -g status-bg default
|
|
||||||
#set -g status-fg colour12
|
|
||||||
#set -g status-interval 2
|
|
||||||
#
|
|
||||||
## messaging
|
|
||||||
#set -g message-fg black
|
|
||||||
#set -g message-bg yellow
|
|
||||||
#set -g message-command-fg blue
|
|
||||||
#set -g message-command-bg black
|
|
||||||
#
|
|
||||||
##window mode
|
|
||||||
#setw -g mode-bg colour6
|
|
||||||
#setw -g mode-fg colour0
|
|
||||||
#
|
|
||||||
## window status
|
|
||||||
#setw -g window-status-format " #F#I:#W#F "
|
|
||||||
#setw -g window-status-current-format " #F#I:#W#F "
|
|
||||||
#setw -g window-status-format "#[fg=magenta]#[bg=black] #I #[bg=cyan]#[fg=colour8] #W "
|
|
||||||
#setw -g window-status-current-format "#[bg=brightmagenta]#[fg=colour8] #I #[fg=colour8]#[bg=colour14] #W "
|
|
||||||
#setw -g window-status-current-bg colour0
|
|
||||||
#setw -g window-status-current-fg colour11
|
|
||||||
#setw -g window-status-current-attr dim
|
|
||||||
#setw -g window-status-bg green
|
|
||||||
#setw -g window-status-fg black
|
|
||||||
#setw -g window-status-attr reverse
|
|
||||||
#
|
|
||||||
## Info on left (I don't have a session display for now)
|
|
||||||
#set -g status-left ''
|
|
||||||
#
|
|
||||||
## loud or quiet?
|
|
||||||
#set-option -g visual-activity off
|
|
||||||
#set-option -g visual-bell off
|
|
||||||
#set-option -g visual-silence off
|
|
||||||
#set-window-option -g monitor-activity off
|
|
||||||
#set-option -g bell-action none
|
|
||||||
#
|
|
||||||
## Colors
|
|
||||||
#set -g default-terminal "screen-256color"
|
|
||||||
#
|
|
||||||
## The modes {
|
|
||||||
#setw -g clock-mode-colour colour135
|
|
||||||
#setw -g mode-attr bold
|
|
||||||
#setw -g mode-fg colour196
|
|
||||||
#setw -g mode-bg colour238
|
|
||||||
#
|
|
||||||
## }
|
|
||||||
## The panes {
|
|
||||||
#
|
|
||||||
#set -g pane-border-bg colour235
|
|
||||||
#set -g pane-border-fg colour238
|
|
||||||
#set -g pane-active-border-bg colour236
|
|
||||||
#set -g pane-active-border-fg colour51
|
|
||||||
#
|
|
||||||
## }
|
|
||||||
## The statusbar {
|
|
||||||
#
|
|
||||||
#set -g status-position bottom
|
|
||||||
#set -g status-bg colour234
|
|
||||||
#set -g status-fg colour137
|
|
||||||
#set -g status-attr dim
|
|
||||||
#set -g status-left '#{prefix_highlight}'
|
|
||||||
#set -g status-right '#{net_speed} #[fg=yellow]#(hostname)#[default] #[fg=colour234,bg=colour241,bold] %m/%d #[fg=colour233,bg=colour245,bold] %H:%M:%S '
|
|
||||||
#set -g status-right-length 70
|
|
||||||
#set -g status-left-length 4
|
|
||||||
#
|
|
||||||
#setw -g window-status-current-fg colour81
|
|
||||||
#setw -g window-status-current-bg colour238
|
|
||||||
#setw -g window-status-current-attr bold
|
|
||||||
#setw -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour255]#W#[fg=colour50]#F '
|
|
||||||
#
|
|
||||||
#setw -g window-status-fg colour138
|
|
||||||
#setw -g window-status-bg colour235
|
|
||||||
#setw -g window-status-attr none
|
|
||||||
#setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
|
|
||||||
#
|
|
||||||
#setw -g window-status-bell-attr bold
|
|
||||||
#setw -g window-status-bell-fg colour255
|
|
||||||
#setw -g window-status-bell-bg colour1
|
|
||||||
#
|
|
||||||
## }
|
|
||||||
## The messages {
|
|
||||||
#
|
|
||||||
#set -g message-attr bold
|
|
||||||
#set -g message-fg colour232
|
|
||||||
#set -g message-bg colour166
|
|
||||||
#
|
|
||||||
## }
|
|
||||||
#
|
|
||||||
|
|
||||||
# Load Iceberg theme
|
|
||||||
source-file ~/.tmux/iceberg.tmux.conf
|
|
||||||
|
|
||||||
# Iceberg-specific settings
|
# Iceberg-specific settings
|
||||||
# Powerline separators
|
# Powerline separators
|
||||||
separator_left="\ue0b0"
|
# separator_left="\ue0b0"
|
||||||
separator_right="\ue0b2"
|
# separator_right="\ue0b2"
|
||||||
|
|
||||||
subseparator_left="\ue0b1"
|
|
||||||
subseparator_right="\ue0b3"
|
|
||||||
|
|
||||||
|
# subseparator_left="\ue0b1"
|
||||||
|
# subseparator_right="\ue0b3"
|
||||||
|
|
||||||
|
# Nord Theme
|
||||||
|
set -g @plugin "arcticicestudio/nord-tmux"
|
||||||
|
|
||||||
# List your plugins here
|
# List your plugins here
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
|
@@ -1,37 +0,0 @@
|
|||||||
# FILE: iceberg.tmux.conf
|
|
||||||
# REPO: https://github.com/gkeep/iceberg-dark
|
|
||||||
# MAINTAINER: gkeep <gkeep77@protonmail.com>
|
|
||||||
|
|
||||||
set -g status-justify "centre"
|
|
||||||
set -g status "on"
|
|
||||||
set -g status-left-style "none"
|
|
||||||
set -g message-command-style "fg=#c6c8d1,bg=#2e3244"
|
|
||||||
set -g status-right-style "none"
|
|
||||||
set -g pane-active-border-style "fg=#454b68"
|
|
||||||
set -g status-style "none,bg=#1e2132"
|
|
||||||
set -g message-style "fg=#c6c8d1,bg=#2e3244"
|
|
||||||
set -g pane-border-style "fg=#2e3244"
|
|
||||||
set -g status-right-length "100"
|
|
||||||
set -g status-left-length "100"
|
|
||||||
setw -g window-status-activity-style "none,fg=#454b68,bg=#1e2132"
|
|
||||||
setw -g window-status-separator ""
|
|
||||||
setw -g window-status-style "none,fg=#c6c8d1,bg=#1e2132"
|
|
||||||
|
|
||||||
# modules
|
|
||||||
module_left_1="#(whoami)"
|
|
||||||
module_left_2="%R %a"
|
|
||||||
|
|
||||||
module_right_1="#(ip route get 1 | awk '{print $7}')"
|
|
||||||
module_right_2="#H"
|
|
||||||
|
|
||||||
# separators
|
|
||||||
separator_left="\ue0bc"
|
|
||||||
separator_right="\ue0ba"
|
|
||||||
|
|
||||||
subseparator_left="\ue0bb"
|
|
||||||
subseparator_right="\ue0bd"
|
|
||||||
|
|
||||||
set -g status-left "#[fg=#c6c8d1,bg=#454b68,bold] $module_left_1 #[fg=#454b68,bg=#2e3244,nobold,nounderscore,noitalics]$separator_left#[fg=#c6c8d1,bg=#2e3244] $module_left_2 #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left#[fg=#c6c8d1,bg=#1e2132] #[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left"
|
|
||||||
set -g status-right "#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#1e2132] #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#2e3244] $module_right_1 #[fg=#454b68,bg=#2e3244,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#454b68,bold] $module_right_2 #{prefix_highlight}"
|
|
||||||
setw -g window-status-format "#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1] #I $subseparator_right #W $subseparator_left#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right"
|
|
||||||
setw -g window-status-current-format "#[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#2e3244] #I $subseparator_right #W $subseparator_left #F #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left"
|
|
@@ -1,9 +1,6 @@
|
|||||||
" Syntax highlighting based on detected language
|
" Syntax highlighting based on detected language
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
" Iceberg theme - I also use this theme in VSCode
|
|
||||||
colorscheme iceberg
|
|
||||||
|
|
||||||
" Default GUI Window Geometry
|
" Default GUI Window Geometry
|
||||||
if has("gui_running")
|
if has("gui_running")
|
||||||
" Preferred window size
|
" Preferred window size
|
||||||
@@ -50,5 +47,7 @@ let g:go_auto_type_info = 1
|
|||||||
let g:better_whitespace_enabled=1
|
let g:better_whitespace_enabled=1
|
||||||
let g:better_whitespace_ctermcolor='red'
|
let g:better_whitespace_ctermcolor='red'
|
||||||
|
|
||||||
|
colorscheme nord
|
||||||
|
|
||||||
execute pathogen#infect()
|
execute pathogen#infect()
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
@@ -5,9 +5,9 @@ source ~/.functions
|
|||||||
|
|
||||||
# History Settings
|
# History Settings
|
||||||
export HISTIGNORE="&:ls:[bf]g:exit:reset:clear:cd:cd ..:cd..:replay"
|
export HISTIGNORE="&:ls:[bf]g:exit:reset:clear:cd:cd ..:cd..:replay"
|
||||||
export HISTSIZE=25000
|
export HISTSIZE=2500000
|
||||||
export HISTFILE=~/.zsh_history
|
export HISTFILE=~/.zsh_history
|
||||||
export SAVEHIST=10000
|
export SAVEHIST=1000000
|
||||||
setopt INC_APPEND_HISTORY
|
setopt INC_APPEND_HISTORY
|
||||||
setopt HIST_IGNORE_ALL_DUPS
|
setopt HIST_IGNORE_ALL_DUPS
|
||||||
setopt HIST_IGNORE_SPACE
|
setopt HIST_IGNORE_SPACE
|
||||||
|
@@ -1,15 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Provides access over our VPN to a shell-in-a-box instance that
|
|
||||||
# is running on some WipeOS appliances. This backdoor exists for
|
|
||||||
# instances that the appliance is on the VPN, but for whatever reason
|
|
||||||
# we can't ssh in. This was brought about due to our Padnos customer.
|
|
||||||
|
|
||||||
CLIENTIP="$1"
|
|
||||||
if [[ $# -le 0 ]]; then
|
|
||||||
echo "please pass me the appliance's VPN address"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
xdg-open http://localhost/shell/
|
|
||||||
sudo ssh -L "localhost:80:${CLIENTIP}:80" production-portal
|
|
||||||
|
|
@@ -1 +0,0 @@
|
|||||||
/home/dtodd/dev/WipeOS/Infrastructure/remote_debugging/fast-debug
|
|
BIN
home/bin/gp.jar
Normal file
BIN
home/bin/gp.jar
Normal file
Binary file not shown.
1
home/bin/pyboard
Symbolic link
1
home/bin/pyboard
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/home/c0de/dev/Inkplate-micropython/pyboard.py
|
@@ -1,4 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
ssh -t login.wipeos.com "grep $1 /var/log/openvpn/openvpn-status.log" 2>/dev/null | cut -d$'\n' -f2 | cut -d',' -f1
|
|
||||||
|
|
29
install.sh
29
install.sh
@@ -12,7 +12,7 @@ fi
|
|||||||
#set -e
|
#set -e
|
||||||
|
|
||||||
# Change this url to point to your repo if you made customizations
|
# Change this url to point to your repo if you made customizations
|
||||||
GIT_REPO="git://github.com/alopexc0de/dotfiles.git"
|
GIT_REPO="https://c0de.dev/c0de/dotfiles.git"
|
||||||
|
|
||||||
DOTFILES=${HOME}/dotfiles
|
DOTFILES=${HOME}/dotfiles
|
||||||
DF_HOME=${DOTFILES}/home
|
DF_HOME=${DOTFILES}/home
|
||||||
@@ -74,16 +74,13 @@ echo "Linking Configuration files..."
|
|||||||
symlink "${DOTFILES}/.editorconfig" "${HOME}/.editorconfig"
|
symlink "${DOTFILES}/.editorconfig" "${HOME}/.editorconfig"
|
||||||
symlink "${DF_HOME}/.aliases" "${HOME}/.aliases"
|
symlink "${DF_HOME}/.aliases" "${HOME}/.aliases"
|
||||||
symlink "${DF_HOME}/.bashrc" "${HOME}/.bashrc"
|
symlink "${DF_HOME}/.bashrc" "${HOME}/.bashrc"
|
||||||
symlink "${DF_HOME}/.dmenurc" "${HOME}/.dmenurc"
|
|
||||||
symlink "${DF_HOME}/.dmrc" "${HOME}/.dmrc"
|
symlink "${DF_HOME}/.dmrc" "${HOME}/.dmrc"
|
||||||
symlink "${DF_HOME}/.environment" "${HOME}/.environment"
|
symlink "${DF_HOME}/.environment" "${HOME}/.environment"
|
||||||
symlink "${DF_HOME}/.functions" "${HOME}/.functions"
|
symlink "${DF_HOME}/.functions" "${HOME}/.functions"
|
||||||
symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig"
|
symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig"
|
||||||
symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine"
|
symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine"
|
||||||
symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0"
|
symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0"
|
||||||
symlink "${DF_HOME}/.stalonetrayrc" "${HOME}/.stalonetrayrc"
|
|
||||||
symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf"
|
symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf"
|
||||||
symlink "${DF_HOME}/.tmux/iceberg.tmux.conf" "${HOME}/.tmux/iceberg.tmux.conf"
|
|
||||||
symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc"
|
symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc"
|
||||||
symlink "${DF_HOME}/.zshrc" "${HOME}/.zshrc"
|
symlink "${DF_HOME}/.zshrc" "${HOME}/.zshrc"
|
||||||
|
|
||||||
@@ -100,14 +97,21 @@ symlink "${DF_CONFIG}/nitrogen" "${HOME}/.config/nitrogen"
|
|||||||
symlink "${DF_CONFIG}/terminator" "${HOME}/.config/terminator"
|
symlink "${DF_CONFIG}/terminator" "${HOME}/.config/terminator"
|
||||||
symlink "${DF_CONFIG}/ranger" "${HOME}/.config/ranger"
|
symlink "${DF_CONFIG}/ranger" "${HOME}/.config/ranger"
|
||||||
symlink "${DF_CONFIG}/viewnior" "${HOME}/.config/viewnior"
|
symlink "${DF_CONFIG}/viewnior" "${HOME}/.config/viewnior"
|
||||||
symlink "${DF_CONFIG}/volumeicon" "${HOME}/.config/volumeicon"
|
|
||||||
symlink "${DF_CONFIG}/mimeapps.list" "${HOME}/.config/mimeapps.list"
|
symlink "${DF_CONFIG}/mimeapps.list" "${HOME}/.config/mimeapps.list"
|
||||||
symlink "${DF_CONFIG}/Code/User/settings.json" "${HOME}/.config/Code/User/settings.json"
|
symlink "${DF_CONFIG}/Code/User/settings.json" "${HOME}/.config/Code/User/settings.json"
|
||||||
|
|
||||||
echo "Installing Iceberg GTK theme and Icon pack..."
|
echo "Installing Nord rofi theme"
|
||||||
symlink "${DF_HOME}/.themes/oomox-iceberg" "${HOME}/.themes/oomox-iceberg"
|
wget https://raw.githubusercontent.com/undiabler/nord-rofi-theme/master/nord.rasi -O "${HOME}/.config/rofi/themes/nord.rasi"
|
||||||
|
|
||||||
|
echo "Installing Iceberg Icon pack..."
|
||||||
|
# symlink "${DF_HOME}/.themes/oomox-iceberg" "${HOME}/.themes/oomox-iceberg"
|
||||||
symlink "${DF_HOME}/.icons/oomox-iceberg" "${HOME}/.icons/oomox-iceberg"
|
symlink "${DF_HOME}/.icons/oomox-iceberg" "${HOME}/.icons/oomox-iceberg"
|
||||||
|
|
||||||
|
echo "Installing Nord GTK theme"
|
||||||
|
mkdir -p "${HOME}/.themes/Nordic"
|
||||||
|
wget https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic.tar.xz -O "${HOME}/.themes/Nordic.tar.xz"
|
||||||
|
tar -xf "${HOME}/.themes/Nordic.tar.xz" -C "${HOME}/.themes/Nordic"
|
||||||
|
|
||||||
echo "Building i3 configuration..."
|
echo "Building i3 configuration..."
|
||||||
"${DF_HOME}/bin/build-i3-config"
|
"${DF_HOME}/bin/build-i3-config"
|
||||||
|
|
||||||
@@ -123,6 +127,9 @@ CHSH='no' RUNZSH='no' KEEP_ZSHRC='yes' sh -c "$(curl -fsSL https://raw.github.co
|
|||||||
echo "Installing VIM Pathogen..."
|
echo "Installing VIM Pathogen..."
|
||||||
curl -LSs https://tpo.pe/pathogen.vim -o "${HOME}/.vim/autoload/pathogen.vim"
|
curl -LSs https://tpo.pe/pathogen.vim -o "${HOME}/.vim/autoload/pathogen.vim"
|
||||||
|
|
||||||
|
echo "Installing VIM Nord theme"
|
||||||
|
curl -fLo "${HOME}/.vim/colors/nord.vim" --create-dirs https://raw.githubusercontent.com/arcticicestudio/nord-vim/main/colors/nord.vim
|
||||||
|
|
||||||
echo "Installing VIM Sensible..."
|
echo "Installing VIM Sensible..."
|
||||||
git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible"
|
git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible"
|
||||||
|
|
||||||
@@ -132,14 +139,6 @@ git clone https://github.com/ntpeters/vim-better-whitespace.git "${HOME}/.vim/bu
|
|||||||
echo "Installing VIM Indent Guides..."
|
echo "Installing VIM Indent Guides..."
|
||||||
git clone https://github.com/thaerkh/vim-indentguides.git "${HOME}/.vim/bundle/vim-indentguides"
|
git clone https://github.com/thaerkh/vim-indentguides.git "${HOME}/.vim/bundle/vim-indentguides"
|
||||||
|
|
||||||
echo "Installing VIM Iceberg theme..."
|
|
||||||
cd /tmp
|
|
||||||
wget https://www.vim.org/scripts/download_script.php?src_id=25718 -O iceberg.zip
|
|
||||||
unzip iceberg.zip
|
|
||||||
cp -r iceberg.vim/{autoload,colors} "${HOME}/.vim/"
|
|
||||||
rm -rf /tmp/iceberg*
|
|
||||||
cd "${HOME}"
|
|
||||||
|
|
||||||
if [ -e "${POSTINSTALL_SCRIPT}" ]; then
|
if [ -e "${POSTINSTALL_SCRIPT}" ]; then
|
||||||
echo "Running post install..."
|
echo "Running post install..."
|
||||||
"${POSTINSTALL_SCRIPT}"
|
"${POSTINSTALL_SCRIPT}"
|
||||||
|
121
pacman.lst
121
pacman.lst
@@ -1,49 +1,40 @@
|
|||||||
accountsservice
|
accountsservice
|
||||||
acpi
|
acpi
|
||||||
acpid
|
acpid
|
||||||
alacritty
|
|
||||||
alsa-firmware
|
alsa-firmware
|
||||||
alsa-plugins
|
alsa-plugins
|
||||||
alsa-utils
|
alsa-utils
|
||||||
|
amd-ucode
|
||||||
android-tools
|
android-tools
|
||||||
|
android-udev
|
||||||
|
ant
|
||||||
apparmor
|
apparmor
|
||||||
arandr
|
arandr
|
||||||
arm-none-eabi-gcc
|
arduino
|
||||||
artwork-i3
|
artwork-i3
|
||||||
audacity
|
audacity
|
||||||
autoconf
|
autoconf
|
||||||
autoconf-archive
|
|
||||||
autogen
|
|
||||||
automake
|
automake
|
||||||
avahi
|
avahi
|
||||||
aws-cli
|
|
||||||
b43-fwcutter
|
b43-fwcutter
|
||||||
barrier
|
|
||||||
bash
|
bash
|
||||||
bauh
|
|
||||||
binutils
|
binutils
|
||||||
binwalk
|
|
||||||
bison
|
bison
|
||||||
blueman
|
blueman
|
||||||
bluez-utils
|
bluez-utils
|
||||||
bmenu
|
bmenu
|
||||||
bmon
|
bmon
|
||||||
|
btop
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
bzip2
|
bzip2
|
||||||
cantarell-fonts
|
cantarell-fonts
|
||||||
certbot
|
catimg
|
||||||
certbot-dns-cloudflare
|
chromium
|
||||||
clipit
|
clipit
|
||||||
cmatrix
|
|
||||||
colordiff
|
|
||||||
coreutils
|
coreutils
|
||||||
cpupower
|
cpupower
|
||||||
crda
|
|
||||||
cronie
|
cronie
|
||||||
cryptsetup
|
cryptsetup
|
||||||
debootstrap
|
|
||||||
deja-dup
|
|
||||||
deluge
|
|
||||||
device-mapper
|
device-mapper
|
||||||
dfc
|
dfc
|
||||||
dhclient
|
dhclient
|
||||||
@@ -55,13 +46,11 @@ dmraid
|
|||||||
dnsmasq
|
dnsmasq
|
||||||
docker
|
docker
|
||||||
docker-compose
|
docker-compose
|
||||||
docker-machine
|
|
||||||
dosbox
|
dosbox
|
||||||
dosfstools
|
dosfstools
|
||||||
downgrade
|
downgrade
|
||||||
e2fsprogs
|
e2fsprogs
|
||||||
ecryptfs-utils
|
ecryptfs-utils
|
||||||
ed
|
|
||||||
efibootmgr
|
efibootmgr
|
||||||
epdfview
|
epdfview
|
||||||
etcher
|
etcher
|
||||||
@@ -78,8 +67,7 @@ findutils
|
|||||||
firefox
|
firefox
|
||||||
flac
|
flac
|
||||||
flex
|
flex
|
||||||
fping
|
gandi.cli
|
||||||
freerdp
|
|
||||||
gawk
|
gawk
|
||||||
gcc
|
gcc
|
||||||
gcc-libs
|
gcc-libs
|
||||||
@@ -88,13 +76,13 @@ gettext
|
|||||||
gimp
|
gimp
|
||||||
git
|
git
|
||||||
glibc
|
glibc
|
||||||
|
glibc-locales
|
||||||
gnome-keyring
|
gnome-keyring
|
||||||
gnu-netcat
|
gnu-netcat
|
||||||
go
|
|
||||||
gource
|
gource
|
||||||
gparted
|
gparted
|
||||||
|
gradle
|
||||||
grep
|
grep
|
||||||
grsync
|
|
||||||
grub
|
grub
|
||||||
grub-theme-manjaro-dev
|
grub-theme-manjaro-dev
|
||||||
gst-libav
|
gst-libav
|
||||||
@@ -103,7 +91,6 @@ gst-plugins-base
|
|||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
gst-plugins-ugly
|
gst-plugins-ugly
|
||||||
gstreamer
|
gstreamer
|
||||||
gtk-chtheme
|
|
||||||
gtksourceview-pkgbuild
|
gtksourceview-pkgbuild
|
||||||
gufw
|
gufw
|
||||||
gvfs
|
gvfs
|
||||||
@@ -113,45 +100,43 @@ gvfs-mtp
|
|||||||
gvfs-smb
|
gvfs-smb
|
||||||
gvim
|
gvim
|
||||||
gzip
|
gzip
|
||||||
|
haveged
|
||||||
hexchat
|
hexchat
|
||||||
htop
|
htop
|
||||||
hw-probe
|
|
||||||
i3blocks
|
i3blocks
|
||||||
inetutils
|
inetutils
|
||||||
intel-ucode
|
|
||||||
inxi
|
inxi
|
||||||
iperf3
|
|
||||||
iproute2
|
iproute2
|
||||||
iputils
|
iputils
|
||||||
jdk-openjdk
|
|
||||||
jfsutils
|
jfsutils
|
||||||
|
jq
|
||||||
|
kdeconnect
|
||||||
kdenlive
|
kdenlive
|
||||||
kdiff3
|
kimageformats
|
||||||
|
krita
|
||||||
kvantum-manjaro
|
kvantum-manjaro
|
||||||
less
|
less
|
||||||
lib32-flex
|
lib32-flex
|
||||||
lib32-libva-vdpau-driver
|
|
||||||
lib32-mesa-demos
|
lib32-mesa-demos
|
||||||
lib32-mesa-vdpau
|
lib32-nvidia-utils
|
||||||
lib32-vulkan-intel
|
|
||||||
lib32-vulkan-radeon
|
|
||||||
libdvdcss
|
libdvdcss
|
||||||
libgpod
|
libgpod
|
||||||
libreoffice-still
|
|
||||||
libtool
|
libtool
|
||||||
libva-mesa-driver
|
libxnvctrl
|
||||||
libva-vdpau-driver
|
|
||||||
licenses
|
licenses
|
||||||
lightdm-settings
|
lightdm-settings
|
||||||
lightdm-slick-greeter
|
lightdm-slick-greeter
|
||||||
linux59
|
linux510
|
||||||
|
linux510-nvidia
|
||||||
|
linux510-r8168
|
||||||
logrotate
|
logrotate
|
||||||
|
lrzsz
|
||||||
|
lutris
|
||||||
lvm2
|
lvm2
|
||||||
lxappearance
|
lxappearance
|
||||||
lxinput
|
lxinput
|
||||||
m4
|
m4
|
||||||
maia-console
|
maia-console
|
||||||
maim
|
|
||||||
make
|
make
|
||||||
man-db
|
man-db
|
||||||
man-pages
|
man-pages
|
||||||
@@ -163,26 +148,25 @@ manjaro-hello
|
|||||||
manjaro-hotfixes
|
manjaro-hotfixes
|
||||||
manjaro-i3-settings
|
manjaro-i3-settings
|
||||||
manjaro-printer
|
manjaro-printer
|
||||||
|
manjaro-pulse
|
||||||
manjaro-ranger-settings
|
manjaro-ranger-settings
|
||||||
manjaro-release
|
manjaro-release
|
||||||
manjaro-settings-manager-notifier
|
manjaro-settings-manager-notifier
|
||||||
manjaro-system
|
manjaro-system
|
||||||
manjaro-zsh-config
|
manjaro-zsh-config
|
||||||
mariadb
|
|
||||||
markdown_previewer
|
markdown_previewer
|
||||||
matcha-gtk-theme
|
matcha-gtk-theme
|
||||||
mdadm
|
mdadm
|
||||||
memtest86+
|
memtest86+
|
||||||
mesa-demos
|
mesa-demos
|
||||||
mesa-vdpau
|
|
||||||
mhwd
|
mhwd
|
||||||
mhwd-db
|
mhwd-db
|
||||||
|
minicom
|
||||||
mkinitcpio-openswap
|
mkinitcpio-openswap
|
||||||
mlocate
|
mlocate
|
||||||
mobile-broadband-provider-info
|
mobile-broadband-provider-info
|
||||||
moc
|
moc
|
||||||
modemmanager
|
modemmanager
|
||||||
monit
|
|
||||||
morc_menu
|
morc_menu
|
||||||
mousepad
|
mousepad
|
||||||
mplayer
|
mplayer
|
||||||
@@ -196,31 +180,32 @@ networkmanager-openvpn
|
|||||||
networkmanager-pptp
|
networkmanager-pptp
|
||||||
networkmanager-vpnc
|
networkmanager-vpnc
|
||||||
nfs-utils
|
nfs-utils
|
||||||
|
nmap
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
npm
|
|
||||||
nss-mdns
|
nss-mdns
|
||||||
ntfs-3g
|
ntfs-3g
|
||||||
ntp
|
ntp
|
||||||
|
nvidia-utils
|
||||||
obs-studio
|
obs-studio
|
||||||
okular
|
okular
|
||||||
openresolv
|
openresolv
|
||||||
openssh
|
openssh
|
||||||
os-prober
|
os-prober
|
||||||
p7zip
|
p7zip
|
||||||
|
pa-applet
|
||||||
pacman
|
pacman
|
||||||
palemoon-bin
|
palemoon-bin
|
||||||
pamac-gtk
|
pamac-gtk
|
||||||
|
pasystray
|
||||||
patch
|
patch
|
||||||
patchutils
|
patchutils
|
||||||
|
pavucontrol
|
||||||
pciutils
|
pciutils
|
||||||
pcmanfm
|
pcmanfm
|
||||||
perl
|
perl
|
||||||
perl-file-mimeinfo
|
perl-file-mimeinfo
|
||||||
pgadmin4
|
|
||||||
pigz
|
pigz
|
||||||
pinta
|
pinta
|
||||||
pkgconf
|
|
||||||
playerctl
|
|
||||||
polkit-gnome
|
polkit-gnome
|
||||||
poppler-data
|
poppler-data
|
||||||
powerline
|
powerline
|
||||||
@@ -228,17 +213,9 @@ powerline-vim
|
|||||||
powertop
|
powertop
|
||||||
procps-ng
|
procps-ng
|
||||||
psmisc
|
psmisc
|
||||||
putty
|
pyenv
|
||||||
pygtk
|
python-pipenv
|
||||||
python-dnspython
|
python-pygit2
|
||||||
python-pymongo
|
|
||||||
python-tzlocal
|
|
||||||
python2-pip
|
|
||||||
qbittorrent
|
|
||||||
qemu
|
|
||||||
qemu-arch-extra
|
|
||||||
qt5-styleplugins
|
|
||||||
qt5-websockets
|
|
||||||
qt5ct
|
qt5ct
|
||||||
ranger
|
ranger
|
||||||
reiserfsprogs
|
reiserfsprogs
|
||||||
@@ -248,23 +225,19 @@ rsync
|
|||||||
s-nail
|
s-nail
|
||||||
samba
|
samba
|
||||||
sbxkb
|
sbxkb
|
||||||
|
screen
|
||||||
screenfetch
|
screenfetch
|
||||||
screenkey
|
|
||||||
sed
|
sed
|
||||||
shadow
|
shadow
|
||||||
simplescreenrecorder
|
|
||||||
smartmontools
|
smartmontools
|
||||||
snapd
|
snapd
|
||||||
spectre-meltdown-checker
|
spectre-meltdown-checker
|
||||||
speedtest-cli
|
speedtest-cli
|
||||||
sqlitebrowser
|
sqlitebrowser
|
||||||
stalonetray
|
|
||||||
steam-manjaro
|
steam-manjaro
|
||||||
steam-native
|
steam-native
|
||||||
strace
|
|
||||||
subversion
|
subversion
|
||||||
sudo
|
sudo
|
||||||
synergy
|
|
||||||
sysfsutils
|
sysfsutils
|
||||||
syslog-ng
|
syslog-ng
|
||||||
systemd
|
systemd
|
||||||
@@ -274,13 +247,9 @@ tar
|
|||||||
telegram-desktop
|
telegram-desktop
|
||||||
terminator
|
terminator
|
||||||
terminus-font
|
terminus-font
|
||||||
|
testdisk
|
||||||
texinfo
|
texinfo
|
||||||
thunderbird
|
|
||||||
tigervnc
|
|
||||||
tldr
|
|
||||||
tlp
|
tlp
|
||||||
tmux
|
|
||||||
traceroute
|
|
||||||
tree
|
tree
|
||||||
ttf-dejavu
|
ttf-dejavu
|
||||||
ttf-droid
|
ttf-droid
|
||||||
@@ -288,49 +257,36 @@ ttf-font-awesome
|
|||||||
ttf-inconsolata
|
ttf-inconsolata
|
||||||
ttf-indic-otf
|
ttf-indic-otf
|
||||||
ttf-liberation
|
ttf-liberation
|
||||||
udftools
|
|
||||||
unzip
|
unzip
|
||||||
upower
|
upower
|
||||||
usbutils
|
usbutils
|
||||||
util-linux
|
util-linux
|
||||||
vault
|
|
||||||
vertex-maia-themes
|
|
||||||
vibrancy-icons-teal
|
vibrancy-icons-teal
|
||||||
viewnior
|
viewnior
|
||||||
virt-manager
|
virt-manager
|
||||||
virtualbox
|
vivaldi
|
||||||
virtualbox-guest-iso
|
vivaldi-ffmpeg-codecs
|
||||||
vlc
|
vlc
|
||||||
volumeicon
|
volumeicon
|
||||||
vulkan-intel
|
|
||||||
vulkan-radeon
|
|
||||||
w3m
|
w3m
|
||||||
wallpapers-juhraya
|
wallpapers-juhraya
|
||||||
wget
|
wget
|
||||||
which
|
which
|
||||||
|
whois
|
||||||
wine
|
wine
|
||||||
wireguard-dkms
|
|
||||||
wireguard-tools
|
|
||||||
wmutils
|
wmutils
|
||||||
woeusb
|
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
x2goserver
|
|
||||||
xarchiver
|
xarchiver
|
||||||
xautolock
|
xautolock
|
||||||
xcursor-chameleon-pearl
|
xcursor-chameleon-pearl
|
||||||
xcursor-maia
|
xcursor-maia
|
||||||
xdg-user-dirs
|
xdg-user-dirs
|
||||||
xdg-utils
|
xdg-utils
|
||||||
xdot
|
|
||||||
xdotool
|
xdotool
|
||||||
xf86-input-elographics
|
xf86-input-elographics
|
||||||
xf86-input-evdev
|
xf86-input-evdev
|
||||||
xf86-input-libinput
|
xf86-input-libinput
|
||||||
xf86-input-void
|
xf86-input-void
|
||||||
xf86-video-amdgpu
|
|
||||||
xf86-video-ati
|
|
||||||
xf86-video-intel
|
|
||||||
xf86-video-nouveau
|
|
||||||
xfburn
|
xfburn
|
||||||
xfce4-power-manager
|
xfce4-power-manager
|
||||||
xfsprogs
|
xfsprogs
|
||||||
@@ -340,12 +296,9 @@ xorg-xhost
|
|||||||
xorg-xinit
|
xorg-xinit
|
||||||
xorg-xkill
|
xorg-xkill
|
||||||
xorg-xprop
|
xorg-xprop
|
||||||
xscreensaver
|
|
||||||
xterm
|
xterm
|
||||||
xz
|
xz
|
||||||
yarn
|
|
||||||
yay
|
yay
|
||||||
yubico-pam
|
|
||||||
yubikey-manager-qt
|
yubikey-manager-qt
|
||||||
yubikey-personalization-gui
|
yubikey-personalization-gui
|
||||||
yubioath-desktop
|
yubioath-desktop
|
||||||
|
@@ -1,38 +1,48 @@
|
|||||||
aarch64-linux-musl
|
1password
|
||||||
anydesk-bin
|
android-sdk-platform-tools
|
||||||
aqemu
|
bauh
|
||||||
cpuid
|
celt
|
||||||
distrobuilder
|
dunstify
|
||||||
fet.sh-git
|
eclipse-java
|
||||||
gdrive-git
|
gconf
|
||||||
go-to-meeting-desktop
|
genkfs
|
||||||
google-chrome
|
giblib
|
||||||
gprof2dot
|
go-mtpfs-git
|
||||||
i3-layout-manager-git
|
|
||||||
i3ipc-python-git
|
i3ipc-python-git
|
||||||
i3lock-fancy-git
|
i3lock-fancy-git
|
||||||
mhwd-nvidia-340xx
|
intellij-idea-ce
|
||||||
minecraft
|
knightos-sass
|
||||||
ninja-bin
|
kpack
|
||||||
ntfy
|
lib32-unixodbc
|
||||||
open-fuse-iso
|
libffi7
|
||||||
openwsman
|
libglade
|
||||||
|
libticables
|
||||||
|
libticalcs
|
||||||
|
libticonv
|
||||||
|
libtifiles
|
||||||
|
minecraft-launcher
|
||||||
|
opencolorio1
|
||||||
|
openrgb
|
||||||
pangox-compat
|
pangox-compat
|
||||||
perl-uuid
|
polymc
|
||||||
|
polymc-curseforge
|
||||||
|
postman-bin
|
||||||
powerline-fonts-git
|
powerline-fonts-git
|
||||||
|
progsreiserfs
|
||||||
|
pygtk
|
||||||
|
python2-cairo
|
||||||
|
python2-gobject2
|
||||||
|
python2-numpy
|
||||||
|
python39
|
||||||
qdirstat
|
qdirstat
|
||||||
|
qmk-git
|
||||||
|
qt5-styleplugins
|
||||||
remmina-plugin-rdesktop
|
remmina-plugin-rdesktop
|
||||||
rustscan
|
scas
|
||||||
sblim-sfcc
|
|
||||||
spotify
|
spotify
|
||||||
step-ca-bin
|
tilp
|
||||||
step-cli-bin
|
vertex-maia-themes
|
||||||
surf
|
|
||||||
symlinks
|
|
||||||
vi-vim-symlink
|
vi-vim-symlink
|
||||||
visual-studio-code-bin
|
visual-studio-code-bin
|
||||||
wsmancli
|
|
||||||
xcwd-git
|
|
||||||
xdg-su
|
xdg-su
|
||||||
xorg-font-utils
|
|
||||||
zenmap
|
zenmap
|
||||||
|
Reference in New Issue
Block a user