Compare commits
No commits in common. "ce57427424afe8774731a79997a643bf45d02229" and "b1b7ddbb7ba99ecf9067395f281734b872b491af" have entirely different histories.
ce57427424
...
b1b7ddbb7b
@ -1,240 +0,0 @@
|
|||||||
# Default config for sway
|
|
||||||
#
|
|
||||||
# Copy this to ~/.config/sway/config and edit it to your liking.
|
|
||||||
#
|
|
||||||
# Read `man 5 sway` for a complete reference.
|
|
||||||
|
|
||||||
### Variables
|
|
||||||
#
|
|
||||||
# Logo key. Use Mod1 for Alt.
|
|
||||||
set $mod Mod4
|
|
||||||
# Home row direction keys, like vim
|
|
||||||
set $left h
|
|
||||||
set $down j
|
|
||||||
set $up k
|
|
||||||
set $right l
|
|
||||||
# Your preferred terminal emulator
|
|
||||||
set $term kitty
|
|
||||||
# Your preferred application launcher
|
|
||||||
# Note: pass the final command to swaymsg so that the resulting window can be opened
|
|
||||||
# on the original workspace that the command was run on.
|
|
||||||
set $menu dmenu_path | rofi -show drun | xargs swaymsg exec --
|
|
||||||
|
|
||||||
# Disable border
|
|
||||||
default_border none
|
|
||||||
# Gaps
|
|
||||||
gaps inner 8
|
|
||||||
|
|
||||||
### Output configuration
|
|
||||||
#
|
|
||||||
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
|
||||||
output * bg /usr/share/backgrounds/wall2.jpg fill
|
|
||||||
#
|
|
||||||
# Example configuration:
|
|
||||||
#
|
|
||||||
# output HDMI-A-1 resolution 1920x1080 position 1920,0
|
|
||||||
#
|
|
||||||
# You can get the names of your outputs by running: swaymsg -t get_outputs
|
|
||||||
|
|
||||||
### Idle configuration
|
|
||||||
#
|
|
||||||
# Example configuration:
|
|
||||||
#
|
|
||||||
# exec swayidle -w \
|
|
||||||
# timeout 300 'swaylock -f -c 000000' \
|
|
||||||
# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
|
|
||||||
# before-sleep 'swaylock -f -c 000000'
|
|
||||||
#
|
|
||||||
# This will lock your screen after 300 seconds of inactivity, then turn off
|
|
||||||
# your displays after another 300 seconds, and turn your screens back on when
|
|
||||||
# resumed. It will also lock your screen before your computer goes to sleep.
|
|
||||||
|
|
||||||
### Input configuration
|
|
||||||
#
|
|
||||||
# Example configuration:
|
|
||||||
#
|
|
||||||
input "1267:12391:ITE_Tech._Inc._ITE_Device(8910)_Touchpad" {
|
|
||||||
dwt enabled
|
|
||||||
tap enabled
|
|
||||||
natural_scroll enabled
|
|
||||||
middle_emulation enabled
|
|
||||||
}
|
|
||||||
#
|
|
||||||
# You can get the names of your inputs by running: swaymsg -t get_inputs
|
|
||||||
# Read `man 5 sway-input` for more information about this section.
|
|
||||||
|
|
||||||
### Key bindings
|
|
||||||
#
|
|
||||||
# Basics:
|
|
||||||
#
|
|
||||||
# Start a terminal
|
|
||||||
bindsym $mod+Return exec $term
|
|
||||||
|
|
||||||
# Kill focused window
|
|
||||||
bindsym $mod+Shift+q kill
|
|
||||||
|
|
||||||
# Start your launcher
|
|
||||||
bindsym $mod+d exec $menu
|
|
||||||
|
|
||||||
# Drag floating windows by holding down $mod and left mouse button.
|
|
||||||
# Resize them with right mouse button + $mod.
|
|
||||||
# Despite the name, also works for non-floating windows.
|
|
||||||
# Change normal to inverse to use left mouse button for resizing and right
|
|
||||||
# mouse button for dragging.
|
|
||||||
floating_modifier $mod normal
|
|
||||||
|
|
||||||
# Reload the configuration file
|
|
||||||
bindsym $mod+Shift+c reload
|
|
||||||
|
|
||||||
# Exit sway (logs you out of your Wayland session)
|
|
||||||
bindsym $mod+Shift+e exec wlogout
|
|
||||||
#
|
|
||||||
# Moving around:
|
|
||||||
#
|
|
||||||
# Move your focus around
|
|
||||||
bindsym $mod+$left focus left
|
|
||||||
bindsym $mod+$down focus down
|
|
||||||
bindsym $mod+$up focus up
|
|
||||||
bindsym $mod+$right focus right
|
|
||||||
# Or use $mod+[up|down|left|right]
|
|
||||||
bindsym $mod+Left focus left
|
|
||||||
bindsym $mod+Down focus down
|
|
||||||
bindsym $mod+Up focus up
|
|
||||||
bindsym $mod+Right focus right
|
|
||||||
|
|
||||||
# Move the focused window with the same, but add Shift
|
|
||||||
bindsym $mod+Shift+$left move left
|
|
||||||
bindsym $mod+Shift+$down move down
|
|
||||||
bindsym $mod+Shift+$up move up
|
|
||||||
bindsym $mod+Shift+$right move right
|
|
||||||
# Ditto, with arrow keys
|
|
||||||
bindsym $mod+Shift+Left move left
|
|
||||||
bindsym $mod+Shift+Down move down
|
|
||||||
bindsym $mod+Shift+Up move up
|
|
||||||
bindsym $mod+Shift+Right move right
|
|
||||||
#
|
|
||||||
# Workspaces:
|
|
||||||
#
|
|
||||||
# Switch to workspace
|
|
||||||
bindsym $mod+1 workspace number 1
|
|
||||||
bindsym $mod+2 workspace number 2
|
|
||||||
bindsym $mod+3 workspace number 3
|
|
||||||
bindsym $mod+4 workspace number 4
|
|
||||||
bindsym $mod+5 workspace number 5
|
|
||||||
bindsym $mod+6 workspace number 6
|
|
||||||
bindsym $mod+7 workspace number 7
|
|
||||||
bindsym $mod+8 workspace number 8
|
|
||||||
bindsym $mod+9 workspace number 9
|
|
||||||
bindsym $mod+0 workspace number 10
|
|
||||||
# Move focused container to workspace
|
|
||||||
bindsym $mod+Shift+1 move container to workspace number 1
|
|
||||||
bindsym $mod+Shift+2 move container to workspace number 2
|
|
||||||
bindsym $mod+Shift+3 move container to workspace number 3
|
|
||||||
bindsym $mod+Shift+4 move container to workspace number 4
|
|
||||||
bindsym $mod+Shift+5 move container to workspace number 5
|
|
||||||
bindsym $mod+Shift+6 move container to workspace number 6
|
|
||||||
bindsym $mod+Shift+7 move container to workspace number 7
|
|
||||||
bindsym $mod+Shift+8 move container to workspace number 8
|
|
||||||
bindsym $mod+Shift+9 move container to workspace number 9
|
|
||||||
bindsym $mod+Shift+0 move container to workspace number 10
|
|
||||||
# Note: workspaces can have any name you want, not just numbers.
|
|
||||||
# We just use 1-10 as the default.
|
|
||||||
#
|
|
||||||
# Fn keys:
|
|
||||||
#
|
|
||||||
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
|
|
||||||
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
|
|
||||||
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
|
|
||||||
bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
|
||||||
bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
|
|
||||||
bindsym XF86MonBrightnessUp exec brightnessctl set 5%+
|
|
||||||
bindsym XF86AudioPlay exec playerctl play-pause
|
|
||||||
bindsym XF86AudioNext exec playerctl next
|
|
||||||
bindsym XF86AudioPrev exec playerctl previous
|
|
||||||
bindsym XF86Search exec $menu
|
|
||||||
|
|
||||||
#
|
|
||||||
# Layout stuff:
|
|
||||||
#
|
|
||||||
# You can "split" the current object of your focus with
|
|
||||||
# $mod+b or $mod+v, for horizontal and vertical splits
|
|
||||||
# respectively.
|
|
||||||
bindsym $mod+b splith
|
|
||||||
bindsym $mod+v splitv
|
|
||||||
|
|
||||||
# Switch the current container between different layout styles
|
|
||||||
bindsym $mod+s layout stacking
|
|
||||||
bindsym $mod+w layout tabbed
|
|
||||||
bindsym $mod+e layout toggle split
|
|
||||||
|
|
||||||
# Make the current focus fullscreen
|
|
||||||
bindsym $mod+f fullscreen
|
|
||||||
|
|
||||||
# Toggle the current focus between tiling and floating mode
|
|
||||||
bindsym $mod+Shift+space floating toggle
|
|
||||||
|
|
||||||
# Swap focus between the tiling area and the floating area
|
|
||||||
bindsym $mod+space focus mode_toggle
|
|
||||||
|
|
||||||
# Move focus to the parent container
|
|
||||||
bindsym $mod+a focus parent
|
|
||||||
#
|
|
||||||
# Scratchpad:
|
|
||||||
#
|
|
||||||
# Sway has a "scratchpad", which is a bag of holding for windows.
|
|
||||||
# You can send windows there and get them back later.
|
|
||||||
|
|
||||||
# Move the currently focused window to the scratchpad
|
|
||||||
bindsym $mod+Shift+minus move scratchpad
|
|
||||||
|
|
||||||
# Show the next scratchpad window or hide the focused scratchpad window.
|
|
||||||
# If there are multiple scratchpad windows, this command cycles through them.
|
|
||||||
bindsym $mod+minus scratchpad show
|
|
||||||
#
|
|
||||||
# Resizing containers:
|
|
||||||
#
|
|
||||||
mode "resize" {
|
|
||||||
# left will shrink the containers width
|
|
||||||
# right will grow the containers width
|
|
||||||
# up will shrink the containers height
|
|
||||||
# down will grow the containers height
|
|
||||||
bindsym $left resize shrink width 10px
|
|
||||||
bindsym $down resize grow height 10px
|
|
||||||
bindsym $up resize shrink height 10px
|
|
||||||
bindsym $right resize grow width 10px
|
|
||||||
|
|
||||||
# Ditto, with arrow keys
|
|
||||||
bindsym Left resize shrink width 10px
|
|
||||||
bindsym Down resize grow height 10px
|
|
||||||
bindsym Up resize shrink height 10px
|
|
||||||
bindsym Right resize grow width 10px
|
|
||||||
|
|
||||||
# Return to default mode
|
|
||||||
bindsym Return mode "default"
|
|
||||||
bindsym Escape mode "default"
|
|
||||||
}
|
|
||||||
bindsym $mod+r mode "resize"
|
|
||||||
|
|
||||||
#
|
|
||||||
# Status Bar:
|
|
||||||
#
|
|
||||||
# Read `man 5 sway-bar` for more information about this section.
|
|
||||||
|
|
||||||
bar {
|
|
||||||
position top
|
|
||||||
swaybar_command waybar
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# Window configuration:
|
|
||||||
#
|
|
||||||
# class border backgr. text indicator child_border
|
|
||||||
client.focused #1e66f5 #1e66f5 #4c4f69 #fe640b #1e66f5
|
|
||||||
client.focused_inactive #bcc0cc #bcc0cc #4c4f69 #04a5e5 #04a5e5
|
|
||||||
client.unfocused #bcc0cc #bcc0cc #4c4f69 #bcc0cc #bcc0cc
|
|
||||||
client.urgent #d20f39 #d20f39 #eff1f5 #d20f39 #d20f39
|
|
||||||
client.placeholder #dce0e8 #dce0e8 #4c4f69 #dce0e8 #dce0e8
|
|
||||||
client.background #eff1f5
|
|
||||||
|
|
||||||
include /etc/sway/config.d/*
|
|
||||||
include /home/ss54/config/sway/config.d/*
|
|
@ -1,26 +0,0 @@
|
|||||||
set rosewater #dc8a78
|
|
||||||
set flamingo #dd7878
|
|
||||||
set pink #ea76cb
|
|
||||||
set mauve #8839ef
|
|
||||||
set red #d20f39
|
|
||||||
set maroon #e64553
|
|
||||||
set peach #fe640b
|
|
||||||
set yellow #df8e1d
|
|
||||||
set green #40a02b
|
|
||||||
set teal #179299
|
|
||||||
set sky #04a5e5
|
|
||||||
set sapphire #209fb5
|
|
||||||
set blue #1e66f5
|
|
||||||
set lavender #7287fd
|
|
||||||
set text #4c4f69
|
|
||||||
set subtext1 #5c5f77
|
|
||||||
set subtext0 #6c6f85
|
|
||||||
set overlay2 #7c7f93
|
|
||||||
set overlay1 #8c8fa1
|
|
||||||
set overlay0 #9ca0b0
|
|
||||||
set surface2 #acb0be
|
|
||||||
set surface1 #bcc0cc
|
|
||||||
set surface0 #ccd0da
|
|
||||||
set crust #dce0e8
|
|
||||||
set mantle #e6e9ef
|
|
||||||
set base #eff1f5
|
|
@ -1,159 +0,0 @@
|
|||||||
{
|
|
||||||
// "layer": "top", // Waybar at top layer
|
|
||||||
// "position": "bottom", // Waybar position (top|bottom|left|right)
|
|
||||||
"height": 30, // Waybar height (to be removed for auto height)
|
|
||||||
// "width": 1280, // Waybar width
|
|
||||||
"spacing": 4, // Gaps between modules (4px)
|
|
||||||
// Choose the order of the modules
|
|
||||||
"modules-left": ["sway/workspaces", "sway/mode", "custom/media"],
|
|
||||||
"modules-center": ["sway/window"],
|
|
||||||
"modules-right": ["pulseaudio", "network", "backlight", "battery", "clock", "tray"],
|
|
||||||
// Modules configuration
|
|
||||||
// "sway/workspaces": {
|
|
||||||
// "disable-scroll": true,
|
|
||||||
// "all-outputs": true,
|
|
||||||
// "format": "{name}: {icon}",
|
|
||||||
// "format-icons": {
|
|
||||||
// "1": "",
|
|
||||||
// "2": "",
|
|
||||||
// "3": "",
|
|
||||||
// "4": "",
|
|
||||||
// "5": "",
|
|
||||||
// "urgent": "",
|
|
||||||
// "focused": "",
|
|
||||||
// "default": ""
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
"keyboard-state": {
|
|
||||||
"numlock": true,
|
|
||||||
"capslock": true,
|
|
||||||
"format": "{name} {icon}",
|
|
||||||
"format-icons": {
|
|
||||||
"locked": "",
|
|
||||||
"unlocked": ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sway/mode": {
|
|
||||||
"format": "<span style=\"italic\">{}</span>"
|
|
||||||
},
|
|
||||||
"mpd": {
|
|
||||||
"format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ",
|
|
||||||
"format-disconnected": "Disconnected ",
|
|
||||||
"format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ",
|
|
||||||
"unknown-tag": "N/A",
|
|
||||||
"interval": 2,
|
|
||||||
"consume-icons": {
|
|
||||||
"on": " "
|
|
||||||
},
|
|
||||||
"random-icons": {
|
|
||||||
"off": "<span color=\"#f53c3c\"></span> ",
|
|
||||||
"on": " "
|
|
||||||
},
|
|
||||||
"repeat-icons": {
|
|
||||||
"on": " "
|
|
||||||
},
|
|
||||||
"single-icons": {
|
|
||||||
"on": "1 "
|
|
||||||
},
|
|
||||||
"state-icons": {
|
|
||||||
"paused": "",
|
|
||||||
"playing": ""
|
|
||||||
},
|
|
||||||
"tooltip-format": "MPD (connected)",
|
|
||||||
"tooltip-format-disconnected": "MPD (disconnected)"
|
|
||||||
},
|
|
||||||
"idle_inhibitor": {
|
|
||||||
"format": "{icon}",
|
|
||||||
"format-icons": {
|
|
||||||
"activated": "",
|
|
||||||
"deactivated": ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tray": {
|
|
||||||
// "icon-size": 21,
|
|
||||||
"spacing": 10
|
|
||||||
},
|
|
||||||
"clock": {
|
|
||||||
"timezone": "Asia/Jakarta",
|
|
||||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
|
||||||
"format-alt": "{:%Y-%m-%d}"
|
|
||||||
},
|
|
||||||
"cpu": {
|
|
||||||
"format": "{usage}% ",
|
|
||||||
"tooltip": false
|
|
||||||
},
|
|
||||||
"memory": {
|
|
||||||
"format": "{}% "
|
|
||||||
},
|
|
||||||
"temperature": {
|
|
||||||
// "thermal-zone": 2,
|
|
||||||
// "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
|
|
||||||
"critical-threshold": 80,
|
|
||||||
// "format-critical": "{temperatureC}°C {icon}",
|
|
||||||
"format": "{temperatureC}°C {icon}",
|
|
||||||
"format-icons": ["", "", ""]
|
|
||||||
},
|
|
||||||
"backlight": {
|
|
||||||
// "device": "acpi_video1",
|
|
||||||
"format": "{percent}% {icon}",
|
|
||||||
"format-icons": ["", "", "", "", "", "", "", "", ""]
|
|
||||||
},
|
|
||||||
"battery": {
|
|
||||||
"states": {
|
|
||||||
// "good": 95,
|
|
||||||
"warning": 30,
|
|
||||||
"critical": 15
|
|
||||||
},
|
|
||||||
"format": "{capacity}% {icon}",
|
|
||||||
"format-charging": "{capacity}% ",
|
|
||||||
"format-plugged": "{capacity}% ",
|
|
||||||
"format-alt": "{time} {icon}",
|
|
||||||
// "format-good": "", // An empty format will hide the module
|
|
||||||
// "format-full": "",
|
|
||||||
"format-icons": ["", "", "", "", ""]
|
|
||||||
},
|
|
||||||
"battery#bat2": {
|
|
||||||
"bat": "BAT2"
|
|
||||||
},
|
|
||||||
"network": {
|
|
||||||
// "interface": "wlp2*", // (Optional) To force the use of this interface
|
|
||||||
"format-wifi": "{ipaddr} ({signalStrength}%) ",
|
|
||||||
"format-ethernet": "{ipaddr}/{cidr} ",
|
|
||||||
"tooltip-format": "{ifname} via {gwaddr} ",
|
|
||||||
"format-linked": "{ifname} (No IP) ",
|
|
||||||
"format-disconnected": "Disconnected ⚠",
|
|
||||||
"format-alt": "{ifname}: {ipaddr}/{cidr}"
|
|
||||||
},
|
|
||||||
"pulseaudio": {
|
|
||||||
// "scroll-step": 1, // %, can be a float
|
|
||||||
"format": "{volume}% {icon} {format_source}",
|
|
||||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
|
||||||
"format-bluetooth-muted": " {icon} {format_source}",
|
|
||||||
"format-muted": " {format_source}",
|
|
||||||
"format-source": "{volume}% ",
|
|
||||||
"format-source-muted": "",
|
|
||||||
"format-icons": {
|
|
||||||
"headphone": "",
|
|
||||||
"hands-free": "",
|
|
||||||
"headset": "",
|
|
||||||
"phone": "",
|
|
||||||
"portable": "",
|
|
||||||
"car": "",
|
|
||||||
"default": ["", "", ""]
|
|
||||||
},
|
|
||||||
"on-click": "pavucontrol"
|
|
||||||
},
|
|
||||||
"custom/media": {
|
|
||||||
"format": "{icon} {}",
|
|
||||||
"return-type": "json",
|
|
||||||
"max-length": 40,
|
|
||||||
"format-icons": {
|
|
||||||
"spotify": "",
|
|
||||||
"default": "🎜"
|
|
||||||
},
|
|
||||||
"escape": true,
|
|
||||||
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
|
|
||||||
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,256 +0,0 @@
|
|||||||
* {
|
|
||||||
/* `otf-font-awesome` is required to be installed for icons */
|
|
||||||
font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
background-color: #eff1f5;
|
|
||||||
border-bottom: 3px solid #eff1f5;
|
|
||||||
color: #4c4f69;
|
|
||||||
transition-property: background-color;
|
|
||||||
transition-duration: .5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.hidden {
|
|
||||||
opacity: 0.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
window#waybar.empty {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
window#waybar.solo {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
window#waybar.termite {
|
|
||||||
background-color: #5c5f77;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.chromium {
|
|
||||||
background-color: #5c5f77;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
padding: 0 5px;
|
|
||||||
background-color: transparent;
|
|
||||||
color: #4c4f69;
|
|
||||||
/* Use box-shadow instead of border so the text isn't offset */
|
|
||||||
box-shadow: inset 0 -3px transparent;
|
|
||||||
/* Avoid rounded borders under each workspace name */
|
|
||||||
border: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
|
||||||
#workspaces button:hover {
|
|
||||||
background: #bcc0cc;
|
|
||||||
box-shadow: inset 0 -3px #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.focused {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
box-shadow: inset 0 -3px #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.urgent {
|
|
||||||
background-color: #d20f39;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mode {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
border-bottom: 3px solid #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#battery,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#disk,
|
|
||||||
#temperature,
|
|
||||||
#backlight,
|
|
||||||
#network,
|
|
||||||
#pulseaudio,
|
|
||||||
#custom-media,
|
|
||||||
#tray,
|
|
||||||
#mode,
|
|
||||||
#idle_inhibitor,
|
|
||||||
#mpd {
|
|
||||||
padding: 0 10px;
|
|
||||||
color: #eff1f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window,
|
|
||||||
#workspaces {
|
|
||||||
margin: 0 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If workspaces is the leftmost module, omit left margin */
|
|
||||||
.modules-left > widget:first-child > #workspaces {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If workspaces is the rightmost module, omit right margin */
|
|
||||||
.modules-right > widget:last-child > #workspaces {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
color: #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
color: #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.charging, #battery.plugged {
|
|
||||||
color: #eff1f5;
|
|
||||||
background-color: #40a02b;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink {
|
|
||||||
to {
|
|
||||||
background-color: #eff1f5;
|
|
||||||
color: #4c4f69;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.critical:not(.charging) {
|
|
||||||
background-color: #d20f39;
|
|
||||||
color: #eff1f5;
|
|
||||||
animation-name: blink;
|
|
||||||
animation-duration: 0.5s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
|
|
||||||
label:focus {
|
|
||||||
background-color: #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu {
|
|
||||||
background-color: #04a5e5;
|
|
||||||
color: #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#memory {
|
|
||||||
background-color: #7287fd;
|
|
||||||
}
|
|
||||||
|
|
||||||
#disk {
|
|
||||||
background-color: #fe640b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#backlight {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
color: #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#network {
|
|
||||||
background-color: #1e66f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#network.disconnected {
|
|
||||||
background-color: #d20f39;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio {
|
|
||||||
background-color: #1e66f5;
|
|
||||||
color: #eff1f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio.muted {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
color: #eff1f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media {
|
|
||||||
background-color: #04a5e5;
|
|
||||||
color: #4c4f69;
|
|
||||||
min-width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media.custom-spotify {
|
|
||||||
background-color: #40a02b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media.custom-vlc {
|
|
||||||
background-color: #df8e1d;
|
|
||||||
}
|
|
||||||
|
|
||||||
#temperature {
|
|
||||||
background-color: #fe640b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#temperature.critical {
|
|
||||||
background-color: #fe640b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray {
|
|
||||||
background-color: #1e66f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray > .passive {
|
|
||||||
-gtk-icon-effect: dim;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray > .needs-attention {
|
|
||||||
-gtk-icon-effect: highlight;
|
|
||||||
background-color: #d20f39;
|
|
||||||
}
|
|
||||||
|
|
||||||
#idle_inhibitor {
|
|
||||||
background-color: #6c6f85;
|
|
||||||
}
|
|
||||||
|
|
||||||
#idle_inhibitor.activated {
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
color: #4c4f69;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mpd {
|
|
||||||
background-color: #66cc99;
|
|
||||||
color: #2a5c45;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mpd.disconnected {
|
|
||||||
background-color: #f53c3c;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mpd.stopped {
|
|
||||||
background-color: #90b1b1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mpd.paused {
|
|
||||||
background-color: #51a37a;
|
|
||||||
}
|
|
||||||
|
|
||||||
#language {
|
|
||||||
background: #179299;
|
|
||||||
color: #eff1f5;
|
|
||||||
padding: 0 5px;
|
|
||||||
margin: 0 5px;
|
|
||||||
min-width: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard-state {
|
|
||||||
background: #40a02b;
|
|
||||||
color: #eff1f5;
|
|
||||||
padding: 0 0px;
|
|
||||||
margin: 0 5px;
|
|
||||||
min-width: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard-state > label {
|
|
||||||
padding: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard-state > label.locked {
|
|
||||||
background: #4c4f69;
|
|
||||||
}
|
|
@ -1,36 +0,0 @@
|
|||||||
{
|
|
||||||
"label" : "lock",
|
|
||||||
"action" : "swaylock",
|
|
||||||
"text" : "Lock",
|
|
||||||
"keybind" : "l"
|
|
||||||
}
|
|
||||||
{
|
|
||||||
"label" : "hibernate",
|
|
||||||
"action" : "systemctl hibernate",
|
|
||||||
"text" : "Hibernate",
|
|
||||||
"keybind" : "h"
|
|
||||||
}
|
|
||||||
{
|
|
||||||
"label" : "logout",
|
|
||||||
"action" : "loginctl terminate-user $USER",
|
|
||||||
"text" : "Logout",
|
|
||||||
"keybind" : "e"
|
|
||||||
}
|
|
||||||
{
|
|
||||||
"label" : "shutdown",
|
|
||||||
"action" : "systemctl poweroff",
|
|
||||||
"text" : "Shutdown",
|
|
||||||
"keybind" : "s"
|
|
||||||
}
|
|
||||||
{
|
|
||||||
"label" : "suspend",
|
|
||||||
"action" : "systemctl suspend",
|
|
||||||
"text" : "Suspend",
|
|
||||||
"keybind" : "u"
|
|
||||||
}
|
|
||||||
{
|
|
||||||
"label" : "reboot",
|
|
||||||
"action" : "systemctl reboot",
|
|
||||||
"text" : "Reboot",
|
|
||||||
"keybind" : "r"
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
* {
|
|
||||||
background-image: none;
|
|
||||||
}
|
|
||||||
window {
|
|
||||||
background-color: #eff1f5;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
color: #4c4f69;
|
|
||||||
background-color: #bcc0cc;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 2px;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center;
|
|
||||||
background-size: 25%;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:focus, button:active, button:hover {
|
|
||||||
background-color: #209fb5;
|
|
||||||
outline-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#lock {
|
|
||||||
background-image: image(url("/usr/share/wlogout/icons/lock.png"), url("/usr/local/share/wlogout/icons/lock.png"));
|
|
||||||
}
|
|
||||||
|
|
||||||
#logout {
|
|
||||||
background-image: image(url("/usr/share/wlogout/icons/logout.png"), url("/usr/local/share/wlogout/icons/logout.png"));
|
|
||||||
}
|
|
||||||
|
|
||||||
#suspend {
|
|
||||||
background-image: image(url("/usr/share/wlogout/icons/suspend.png"), url("/usr/local/share/wlogout/icons/suspend.png"));
|
|
||||||
}
|
|
||||||
|
|
||||||
#hibernate {
|
|
||||||
background-image: image(url("/usr/share/wlogout/icons/hibernate.png"), url("/usr/local/share/wlogout/icons/hibernate.png"));
|
|
||||||
}
|
|
||||||
|
|
||||||
#shutdown {
|
|
||||||
background-image: image(url("/usr/share/wlogout/icons/shutdown.png"), url("/usr/local/share/wlogout/icons/shutdown.png"));
|
|
||||||
}
|
|
||||||
|
|
||||||
#reboot {
|
|
||||||
background-image: image(url("/usr/share/wlogout/icons/reboot.png"), url("/usr/local/share/wlogout/icons/reboot.png"));
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/christianalt2500]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/home/antonijonsianturi/Desktop/terminalrc]
|
|
||||||
row=3
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/antonijonsianturi]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/home/antonijonsianturi/Desktop/terminalrc]
|
|
||||||
row=3
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/antonijonsianturi]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/home/antonijonsianturi/Desktop/terminalrc]
|
|
||||||
row=3
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/antonijonsianturi]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/home/antonijonsianturi/Desktop/terminalrc]
|
|
||||||
row=3
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/antonijonsianturi]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/home/antonijonsianturi/Desktop/terminalrc]
|
|
||||||
row=3
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/antonijonsianturi]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/christianalt2500]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/christianalt2500]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/christianalt2500]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
|||||||
auto-online=false
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
|||||||
; xfce4-terminal GtkAccelMap rc-file -*- scheme -*-
|
|
||||||
; this file is an automated accelerator map dump
|
|
||||||
;
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-2" "<Alt>2")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-6" "<Alt>6")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/copy-input" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/close-other-tabs" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/move-tab-right" "<Primary><Shift>Page_Down")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-7" "<Alt>7")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/set-title-color" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/edit-menu" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/zoom-menu" "")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-1" "<Alt>1")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/fullscreen" "F11")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/read-only" "")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-5" "<Alt>5")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/preferences" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/reset-and-clear" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/about" "")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-4" "<Alt>4")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/close-window" "<Primary><Shift>q")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/reset" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/save-contents" "")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/toggle-menubar" "F10")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/copy" "<Primary><Shift>c")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/copy-html" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/last-active-tab" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/show-borders" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/view-menu" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/detach-tab" "<Primary><Shift>d")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/scroll-on-output" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/show-toolbar" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/next-tab" "<Primary>Page_Down")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/tabs-menu" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/search-next" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/search-prev" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/undo-close-tab" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/set-title" "<Primary><Shift>s")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/contents" "F1")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/zoom-reset" "<Primary>0")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/close-tab" "<Primary><Shift>w")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/new-tab" "<Primary><Shift>t")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/new-window" "<Primary><Shift>n")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/terminal-menu" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/show-menubar" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/select-all" "<Primary><Shift>a")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/paste" "<Primary><Shift>v")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-9" "<Alt>9")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/move-tab-left" "<Primary><Shift>Page_Up")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/search" "<Primary><Shift>f")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/file-menu" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/prev-tab" "<Primary>Page_Up")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/paste-selection" "")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/zoom-in" "<Primary>plus")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/zoom-out" "<Primary>minus")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-8" "<Alt>8")
|
|
||||||
; (gtk_accel_path "<Actions>/terminal-window/help-menu" "")
|
|
||||||
(gtk_accel_path "<Actions>/terminal-window/goto-tab-3" "<Alt>3")
|
|
@ -1,37 +0,0 @@
|
|||||||
[Configuration]
|
|
||||||
ColorForeground=#d9d9e0e0eeee
|
|
||||||
MiscAlwaysShowTabs=FALSE
|
|
||||||
MiscBell=TRUE
|
|
||||||
MiscBellUrgent=FALSE
|
|
||||||
MiscBordersDefault=TRUE
|
|
||||||
MiscCursorBlinks=FALSE
|
|
||||||
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
|
|
||||||
MiscDefaultGeometry=80x24
|
|
||||||
MiscInheritGeometry=FALSE
|
|
||||||
MiscMenubarDefault=TRUE
|
|
||||||
MiscMouseAutohide=FALSE
|
|
||||||
MiscMouseWheelZoom=TRUE
|
|
||||||
MiscToolbarDefault=FALSE
|
|
||||||
MiscConfirmClose=TRUE
|
|
||||||
MiscCycleTabs=TRUE
|
|
||||||
MiscTabCloseButtons=TRUE
|
|
||||||
MiscTabCloseMiddleClick=TRUE
|
|
||||||
MiscTabPosition=GTK_POS_TOP
|
|
||||||
MiscHighlightUrls=TRUE
|
|
||||||
MiscMiddleClickOpensUri=FALSE
|
|
||||||
MiscCopyOnSelect=FALSE
|
|
||||||
MiscShowRelaunchDialog=TRUE
|
|
||||||
MiscRewrapOnResize=TRUE
|
|
||||||
MiscUseShiftArrowsToScroll=FALSE
|
|
||||||
MiscSlimTabs=FALSE
|
|
||||||
MiscNewTabAdjacent=FALSE
|
|
||||||
MiscSearchDialogOpacity=100
|
|
||||||
MiscShowUnsafePasteDialog=TRUE
|
|
||||||
ColorBackground=#1e1e1e1e2e2e
|
|
||||||
ColorSelectionUseDefault=FALSE
|
|
||||||
ColorSelection=#d9d9e0e0eeee
|
|
||||||
ColorSelectionBackground=#575752526868
|
|
||||||
TabActivityColor=#f5f5c2c2e7e7
|
|
||||||
ColorPalette=rgb(110,108,126);rgb(242,143,173);rgb(171,233,179);rgb(250,227,176);rgb(150,205,251);rgb(245,194,231);rgb(137,220,235);rgb(217,224,238);rgb(152,139,162);rgb(242,143,173);rgb(171,233,179);rgb(250,227,176);rgb(150,205,251);rgb(245,194,231);rgb(137,220,235);rgb(217,224,238)
|
|
||||||
FontName=Liberation Mono 10
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
|||||||
app=/usr/lib/firefox-esr/firefox-esr
|
|
||||||
last_user=
|
|
||||||
screenshot_dir=file:/home/christianalt2500/Pictures
|
|
||||||
action=1
|
|
||||||
delay=0
|
|
||||||
region=1
|
|
||||||
show_mouse=0
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
[Settings]
|
|
||||||
ShowAllProcesses=FALSE
|
|
||||||
ShowLegend=TRUE
|
|
||||||
MorePrecision=FALSE
|
|
||||||
FullCommandLine=FALSE
|
|
||||||
ShowStatusIcon=FALSE
|
|
||||||
MonitorPaintBox=TRUE
|
|
||||||
ShowApplicationIcons=TRUE
|
|
||||||
ToolbarStyle=DEFAULT
|
|
||||||
PromptTerminateTask=TRUE
|
|
||||||
RefreshRate=750
|
|
||||||
ColumnUID=FALSE
|
|
||||||
ColumnPID=TRUE
|
|
||||||
ColumnPPID=FALSE
|
|
||||||
ColumnState=FALSE
|
|
||||||
ColumnVSZ=FALSE
|
|
||||||
ColumnRSS=TRUE
|
|
||||||
ColumnCPU=TRUE
|
|
||||||
ColumnPriority=FALSE
|
|
||||||
SortColumn=7
|
|
||||||
SortType=1
|
|
||||||
WindowWidth=490
|
|
||||||
WindowHeight=465
|
|
||||||
HandlePosition=100
|
|
||||||
ProcessTreeView=FALSE
|
|
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="displays" version="1.0">
|
|
||||||
<property name="ActiveProfile" type="string" value="Default"/>
|
|
||||||
<property name="Default" type="empty">
|
|
||||||
<property name="screen" type="string" value="screen">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value=""/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="-nan"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="Fallback" type="empty">
|
|
||||||
<property name="screen" type="string" value="screen">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value=""/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="-nan"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="keyboards" version="1.0">
|
|
||||||
<property name="Default" type="empty">
|
|
||||||
<property name="Numlock" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="thunar" version="1.0">
|
|
||||||
<property name="last-view" type="string" value="ThunarIconView"/>
|
|
||||||
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_100_PERCENT"/>
|
|
||||||
<property name="last-separator-position" type="int" value="170"/>
|
|
||||||
<property name="last-window-width" type="int" value="640"/>
|
|
||||||
<property name="last-window-height" type="int" value="480"/>
|
|
||||||
<property name="last-window-maximized" type="bool" value="false"/>
|
|
||||||
</channel>
|
|
@ -1,46 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-appfinder" version="1.0">
|
|
||||||
<property name="actions" type="array">
|
|
||||||
<value type="int" value="5"/>
|
|
||||||
<value type="int" value="4"/>
|
|
||||||
<value type="int" value="3"/>
|
|
||||||
<value type="int" value="2"/>
|
|
||||||
<value type="int" value="1"/>
|
|
||||||
<property name="action-5" type="empty">
|
|
||||||
<property name="type" type="int" value="0"/>
|
|
||||||
<property name="pattern" type="string" value="/"/>
|
|
||||||
<property name="command" type="string" value="exo-open --launch FileManager %S"/>
|
|
||||||
<property name="save" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="action-4" type="empty">
|
|
||||||
<property name="type" type="int" value="0"/>
|
|
||||||
<property name="pattern" type="string" value="#"/>
|
|
||||||
<property name="command" type="string" value="exo-open --launch TerminalEmulator man %s"/>
|
|
||||||
<property name="save" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="action-3" type="empty">
|
|
||||||
<property name="type" type="int" value="0"/>
|
|
||||||
<property name="pattern" type="string" value="!w"/>
|
|
||||||
<property name="command" type="string" value="exo-open --launch WebBrowser http://en.wikipedia.org/wiki/%s"/>
|
|
||||||
<property name="save" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="action-2" type="empty">
|
|
||||||
<property name="type" type="int" value="0"/>
|
|
||||||
<property name="pattern" type="string" value="$"/>
|
|
||||||
<property name="command" type="string" value="exo-open --launch TerminalEmulator %s"/>
|
|
||||||
<property name="save" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="action-1" type="empty">
|
|
||||||
<property name="type" type="int" value="1"/>
|
|
||||||
<property name="pattern" type="string" value="^(file|http|https):\/\/(.*)$"/>
|
|
||||||
<property name="command" type="string" value="exo-open \0"/>
|
|
||||||
<property name="save" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="last" type="empty">
|
|
||||||
<property name="window-height" type="int" value="400"/>
|
|
||||||
<property name="window-width" type="int" value="400"/>
|
|
||||||
<property name="pane-position" type="int" value="180"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,56 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-desktop" version="1.0">
|
|
||||||
<property name="backdrop" type="empty">
|
|
||||||
<property name="screen0" type="empty">
|
|
||||||
<property name="monitor0" type="empty">
|
|
||||||
<property name="brightness" type="empty"/>
|
|
||||||
<property name="color1" type="empty"/>
|
|
||||||
<property name="color2" type="empty"/>
|
|
||||||
<property name="color-style" type="empty"/>
|
|
||||||
<property name="image-path" type="empty"/>
|
|
||||||
<property name="image-show" type="empty"/>
|
|
||||||
<property name="last-image" type="empty"/>
|
|
||||||
<property name="last-single-image" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="monitor1" type="empty">
|
|
||||||
<property name="brightness" type="empty"/>
|
|
||||||
<property name="color1" type="empty"/>
|
|
||||||
<property name="color2" type="empty"/>
|
|
||||||
<property name="color-style" type="empty"/>
|
|
||||||
<property name="image-path" type="empty"/>
|
|
||||||
<property name="image-show" type="empty"/>
|
|
||||||
<property name="last-image" type="empty"/>
|
|
||||||
<property name="last-single-image" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="monitorscreen" type="empty">
|
|
||||||
<property name="workspace0" type="empty">
|
|
||||||
<property name="color-style" type="int" value="1"/>
|
|
||||||
<property name="image-style" type="int" value="5"/>
|
|
||||||
<property name="last-image" type="string" value="/home/christianalt2500/Pictures/Konachan.com - 336383 andychen animal_ears blonde_hair bow cherry_blossoms close flowers hololive horns long_hair sheepgirl tsunomaki_watame.jpg"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace1" type="empty">
|
|
||||||
<property name="color-style" type="int" value="1"/>
|
|
||||||
<property name="image-style" type="int" value="5"/>
|
|
||||||
<property name="last-image" type="string" value="/usr/share/images/desktop-base/default"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace2" type="empty">
|
|
||||||
<property name="color-style" type="int" value="1"/>
|
|
||||||
<property name="image-style" type="int" value="5"/>
|
|
||||||
<property name="last-image" type="string" value="/home/christianalt2500/Pictures/Konachan.com - 337959 animal_ears bunny_ears bunnygirl hololive magowasabi phone sleeping usada_pekora.jpg"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace3" type="empty">
|
|
||||||
<property name="color-style" type="int" value="1"/>
|
|
||||||
<property name="image-style" type="int" value="5"/>
|
|
||||||
<property name="last-image" type="string" value="/usr/share/images/desktop-base/default"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="single-workspace-mode" type="bool" value="true"/>
|
|
||||||
<property name="single-workspace-number" type="int" value="2"/>
|
|
||||||
</property>
|
|
||||||
<property name="last" type="empty">
|
|
||||||
<property name="window-width" type="int" value="665"/>
|
|
||||||
<property name="window-height" type="int" value="609"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,194 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-keyboard-shortcuts" version="1.0">
|
|
||||||
<property name="commands" type="empty">
|
|
||||||
<property name="default" type="empty">
|
|
||||||
<property name="<Alt>F1" type="empty"/>
|
|
||||||
<property name="<Alt>F2" type="empty">
|
|
||||||
<property name="startup-notify" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Alt>F3" type="empty">
|
|
||||||
<property name="startup-notify" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Primary><Alt>Delete" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>l" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>t" type="empty"/>
|
|
||||||
<property name="XF86Display" type="empty"/>
|
|
||||||
<property name="<Super>p" type="empty"/>
|
|
||||||
<property name="<Primary>Escape" type="empty"/>
|
|
||||||
<property name="XF86WWW" type="empty"/>
|
|
||||||
<property name="HomePage" type="empty"/>
|
|
||||||
<property name="XF86Mail" type="empty"/>
|
|
||||||
<property name="Print" type="empty"/>
|
|
||||||
<property name="<Alt>Print" type="empty"/>
|
|
||||||
<property name="<Shift>Print" type="empty"/>
|
|
||||||
<property name="<Super>e" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>f" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Escape" type="empty"/>
|
|
||||||
<property name="<Primary><Shift>Escape" type="empty"/>
|
|
||||||
<property name="<Super>r" type="empty">
|
|
||||||
<property name="startup-notify" type="empty"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="custom" type="empty">
|
|
||||||
<property name="<Alt>F2" type="string" value="xfce4-appfinder --collapsed">
|
|
||||||
<property name="startup-notify" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Alt>Print" type="string" value="xfce4-screenshooter -w"/>
|
|
||||||
<property name="<Super>r" type="string" value="xfce4-appfinder -c">
|
|
||||||
<property name="startup-notify" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/>
|
|
||||||
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/>
|
|
||||||
<property name="<Alt>F3" type="string" value="xfce4-appfinder">
|
|
||||||
<property name="startup-notify" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="Print" type="string" value="xfce4-screenshooter"/>
|
|
||||||
<property name="<Primary>Escape" type="string" value="xfdesktop --menu"/>
|
|
||||||
<property name="<Shift>Print" type="string" value="xfce4-screenshooter -r"/>
|
|
||||||
<property name="<Primary><Alt>Delete" type="string" value="xfce4-session-logout"/>
|
|
||||||
<property name="<Primary><Alt>t" type="string" value="exo-open --launch TerminalEmulator"/>
|
|
||||||
<property name="<Primary><Alt>f" type="string" value="thunar"/>
|
|
||||||
<property name="<Primary><Alt>l" type="string" value="xflock4"/>
|
|
||||||
<property name="<Alt>F1" type="string" value="xfce4-popup-applicationsmenu"/>
|
|
||||||
<property name="<Super>p" type="string" value="xfce4-display-settings --minimal"/>
|
|
||||||
<property name="<Primary><Shift>Escape" type="string" value="xfce4-taskmanager"/>
|
|
||||||
<property name="<Super>e" type="string" value="thunar"/>
|
|
||||||
<property name="<Primary><Alt>Escape" type="string" value="xkill"/>
|
|
||||||
<property name="HomePage" type="string" value="exo-open --launch WebBrowser"/>
|
|
||||||
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/>
|
|
||||||
<property name="override" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="xfwm4" type="empty">
|
|
||||||
<property name="default" type="empty">
|
|
||||||
<property name="<Alt>Insert" type="empty"/>
|
|
||||||
<property name="Escape" type="empty"/>
|
|
||||||
<property name="Left" type="empty"/>
|
|
||||||
<property name="Right" type="empty"/>
|
|
||||||
<property name="Up" type="empty"/>
|
|
||||||
<property name="Down" type="empty"/>
|
|
||||||
<property name="<Alt>Tab" type="empty"/>
|
|
||||||
<property name="<Alt><Shift>Tab" type="empty"/>
|
|
||||||
<property name="<Alt>Delete" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Down" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Left" type="empty"/>
|
|
||||||
<property name="<Shift><Alt>Page_Down" type="empty"/>
|
|
||||||
<property name="<Alt>F4" type="empty"/>
|
|
||||||
<property name="<Alt>F6" type="empty"/>
|
|
||||||
<property name="<Alt>F7" type="empty"/>
|
|
||||||
<property name="<Alt>F8" type="empty"/>
|
|
||||||
<property name="<Alt>F9" type="empty"/>
|
|
||||||
<property name="<Alt>F10" type="empty"/>
|
|
||||||
<property name="<Alt>F11" type="empty"/>
|
|
||||||
<property name="<Alt>F12" type="empty"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Left" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>End" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Home" type="empty"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Right" type="empty"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Up" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_1" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_2" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_3" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_4" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_5" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_6" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_7" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_8" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_9" type="empty"/>
|
|
||||||
<property name="<Alt>space" type="empty"/>
|
|
||||||
<property name="<Shift><Alt>Page_Up" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Right" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>d" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Up" type="empty"/>
|
|
||||||
<property name="<Super>Tab" type="empty"/>
|
|
||||||
<property name="<Primary>F1" type="empty"/>
|
|
||||||
<property name="<Primary>F2" type="empty"/>
|
|
||||||
<property name="<Primary>F3" type="empty"/>
|
|
||||||
<property name="<Primary>F4" type="empty"/>
|
|
||||||
<property name="<Primary>F5" type="empty"/>
|
|
||||||
<property name="<Primary>F6" type="empty"/>
|
|
||||||
<property name="<Primary>F7" type="empty"/>
|
|
||||||
<property name="<Primary>F8" type="empty"/>
|
|
||||||
<property name="<Primary>F9" type="empty"/>
|
|
||||||
<property name="<Primary>F10" type="empty"/>
|
|
||||||
<property name="<Primary>F11" type="empty"/>
|
|
||||||
<property name="<Primary>F12" type="empty"/>
|
|
||||||
<property name="<Super>KP_Left" type="empty"/>
|
|
||||||
<property name="<Super>KP_Right" type="empty"/>
|
|
||||||
<property name="<Super>KP_Up" type="empty"/>
|
|
||||||
<property name="<Super>KP_Down" type="empty"/>
|
|
||||||
<property name="<Super>KP_Page_Up" type="empty"/>
|
|
||||||
<property name="<Super>KP_Home" type="empty"/>
|
|
||||||
<property name="<Super>KP_End" type="empty"/>
|
|
||||||
<property name="<Super>KP_Next" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="custom" type="empty">
|
|
||||||
<property name="<Primary>F12" type="string" value="workspace_12_key"/>
|
|
||||||
<property name="<Super>KP_Down" type="string" value="tile_up_key"/>
|
|
||||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_3" type="string" value="move_window_workspace_3_key"/>
|
|
||||||
<property name="<Primary>F2" type="string" value="workspace_2_key"/>
|
|
||||||
<property name="<Primary>F6" type="string" value="workspace_6_key"/>
|
|
||||||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/>
|
|
||||||
<property name="<Super>KP_Up" type="string" value="tile_down_key"/>
|
|
||||||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/>
|
|
||||||
<property name="<Primary>F8" type="string" value="workspace_8_key"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
|
||||||
<property name="<Super>KP_Right" type="string" value="tile_right_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/>
|
|
||||||
<property name="Right" type="string" value="right_key"/>
|
|
||||||
<property name="Down" type="string" value="down_key"/>
|
|
||||||
<property name="<Primary>F3" type="string" value="workspace_3_key"/>
|
|
||||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
|
||||||
<property name="<Primary>F9" type="string" value="workspace_9_key"/>
|
|
||||||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
|
||||||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/>
|
|
||||||
<property name="<Alt>F6" type="string" value="stick_window_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/>
|
|
||||||
<property name="<Primary>F11" type="string" value="workspace_11_key"/>
|
|
||||||
<property name="<Alt>F10" type="string" value="maximize_window_key"/>
|
|
||||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
|
||||||
<property name="<Super>Tab" type="string" value="switch_window_key"/>
|
|
||||||
<property name="<Primary><Alt>d" type="string" value="show_desktop_key"/>
|
|
||||||
<property name="<Primary>F4" type="string" value="workspace_4_key"/>
|
|
||||||
<property name="<Super>KP_Page_Up" type="string" value="tile_up_right_key"/>
|
|
||||||
<property name="<Alt>F7" type="string" value="move_window_key"/>
|
|
||||||
<property name="Up" type="string" value="up_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/>
|
|
||||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
|
||||||
<property name="<Alt>space" type="string" value="popup_menu_key"/>
|
|
||||||
<property name="<Super>KP_Home" type="string" value="tile_up_left_key"/>
|
|
||||||
<property name="Escape" type="string" value="cancel_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/>
|
|
||||||
<property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
|
|
||||||
<property name="<Super>KP_Left" type="string" value="tile_left_key"/>
|
|
||||||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/>
|
|
||||||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/>
|
|
||||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
|
||||||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/>
|
|
||||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
|
||||||
<property name="<Primary>F5" type="string" value="workspace_5_key"/>
|
|
||||||
<property name="<Alt>F8" type="string" value="resize_window_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/>
|
|
||||||
<property name="<Super>KP_End" type="string" value="tile_down_left_key"/>
|
|
||||||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/>
|
|
||||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
|
||||||
<property name="<Primary>F7" type="string" value="workspace_7_key"/>
|
|
||||||
<property name="<Primary>F10" type="string" value="workspace_10_key"/>
|
|
||||||
<property name="Left" type="string" value="left_key"/>
|
|
||||||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/>
|
|
||||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
|
||||||
<property name="<Primary>F1" type="string" value="workspace_1_key"/>
|
|
||||||
<property name="override" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="providers" type="array">
|
|
||||||
<value type="string" value="xfwm4"/>
|
|
||||||
<value type="string" value="commands"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-notifyd" version="1.0">
|
|
||||||
<property name="applications" type="empty">
|
|
||||||
<property name="known_applications" type="array">
|
|
||||||
<value type="string" value="discord"/>
|
|
||||||
<value type="string" value="itch"/>
|
|
||||||
<value type="string" value="org.kde.kdenlive"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,64 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-panel" version="1.0">
|
|
||||||
<property name="configver" type="int" value="2"/>
|
|
||||||
<property name="panels" type="array">
|
|
||||||
<value type="int" value="1"/>
|
|
||||||
<property name="dark-mode" type="bool" value="true"/>
|
|
||||||
<property name="panel-1" type="empty">
|
|
||||||
<property name="position" type="string" value="p=6;x=0;y=0"/>
|
|
||||||
<property name="length" type="uint" value="100"/>
|
|
||||||
<property name="position-locked" type="bool" value="true"/>
|
|
||||||
<property name="icon-size" type="uint" value="16"/>
|
|
||||||
<property name="size" type="uint" value="26"/>
|
|
||||||
<property name="plugin-ids" type="array">
|
|
||||||
<value type="int" value="1"/>
|
|
||||||
<value type="int" value="2"/>
|
|
||||||
<value type="int" value="3"/>
|
|
||||||
<value type="int" value="4"/>
|
|
||||||
<value type="int" value="5"/>
|
|
||||||
<value type="int" value="6"/>
|
|
||||||
<value type="int" value="8"/>
|
|
||||||
<value type="int" value="10"/>
|
|
||||||
<value type="int" value="11"/>
|
|
||||||
<value type="int" value="12"/>
|
|
||||||
<value type="int" value="13"/>
|
|
||||||
<value type="int" value="14"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="plugins" type="empty">
|
|
||||||
<property name="plugin-1" type="string" value="applicationsmenu"/>
|
|
||||||
<property name="plugin-2" type="string" value="tasklist">
|
|
||||||
<property name="grouping" type="uint" value="1"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-3" type="string" value="separator">
|
|
||||||
<property name="expand" type="bool" value="true"/>
|
|
||||||
<property name="style" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-4" type="string" value="pager"/>
|
|
||||||
<property name="plugin-5" type="string" value="separator">
|
|
||||||
<property name="style" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-6" type="string" value="systray">
|
|
||||||
<property name="square-icons" type="bool" value="true"/>
|
|
||||||
<property name="known-legacy-items" type="array">
|
|
||||||
<value type="string" value="anydesk"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-8" type="string" value="pulseaudio">
|
|
||||||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
|
||||||
<property name="show-notifications" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-9" type="string" value="power-manager-plugin"/>
|
|
||||||
<property name="plugin-10" type="string" value="notification-plugin"/>
|
|
||||||
<property name="plugin-11" type="string" value="separator">
|
|
||||||
<property name="style" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-12" type="string" value="clock"/>
|
|
||||||
<property name="plugin-13" type="string" value="separator">
|
|
||||||
<property name="style" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-14" type="string" value="actions"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,42 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-session" version="1.0">
|
|
||||||
<property name="splash" type="empty">
|
|
||||||
<property name="Engine" type="empty"/>
|
|
||||||
<property name="engines" type="empty">
|
|
||||||
<property name="simple" type="empty">
|
|
||||||
<property name="Font" type="empty"/>
|
|
||||||
<property name="BgColor" type="empty"/>
|
|
||||||
<property name="FgColor" type="empty"/>
|
|
||||||
<property name="Image" type="empty"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="general" type="empty">
|
|
||||||
<property name="FailsafeSessionName" type="empty"/>
|
|
||||||
<property name="LockCommand" type="empty"/>
|
|
||||||
<property name="SessionName" type="string" value="Default"/>
|
|
||||||
<property name="SaveOnExit" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="sessions" type="empty">
|
|
||||||
<property name="Failsafe" type="empty">
|
|
||||||
<property name="IsFailsafe" type="empty"/>
|
|
||||||
<property name="Count" type="empty"/>
|
|
||||||
<property name="Client0_Command" type="empty"/>
|
|
||||||
<property name="Client0_Priority" type="empty"/>
|
|
||||||
<property name="Client0_PerScreen" type="empty"/>
|
|
||||||
<property name="Client1_Command" type="empty"/>
|
|
||||||
<property name="Client1_Priority" type="empty"/>
|
|
||||||
<property name="Client1_PerScreen" type="empty"/>
|
|
||||||
<property name="Client2_Command" type="empty"/>
|
|
||||||
<property name="Client2_Priority" type="empty"/>
|
|
||||||
<property name="Client2_PerScreen" type="empty"/>
|
|
||||||
<property name="Client3_Command" type="empty"/>
|
|
||||||
<property name="Client3_Priority" type="empty"/>
|
|
||||||
<property name="Client3_PerScreen" type="empty"/>
|
|
||||||
<property name="Client4_Command" type="empty"/>
|
|
||||||
<property name="Client4_Priority" type="empty"/>
|
|
||||||
<property name="Client4_PerScreen" type="empty"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-settings-editor" version="1.0">
|
|
||||||
<property name="last" type="empty">
|
|
||||||
<property name="window-width" type="int" value="640"/>
|
|
||||||
<property name="window-height" type="int" value="500"/>
|
|
||||||
<property name="paned-position" type="int" value="180"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-settings-manager" version="1.0">
|
|
||||||
<property name="last" type="empty">
|
|
||||||
<property name="window-width" type="int" value="671"/>
|
|
||||||
<property name="window-height" type="int" value="500"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,91 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfwm4" version="1.0">
|
|
||||||
<property name="general" type="empty">
|
|
||||||
<property name="activate_action" type="string" value="bring"/>
|
|
||||||
<property name="borderless_maximize" type="bool" value="true"/>
|
|
||||||
<property name="box_move" type="bool" value="false"/>
|
|
||||||
<property name="box_resize" type="bool" value="false"/>
|
|
||||||
<property name="button_layout" type="string" value="O|HMC"/>
|
|
||||||
<property name="button_offset" type="int" value="0"/>
|
|
||||||
<property name="button_spacing" type="int" value="0"/>
|
|
||||||
<property name="click_to_focus" type="bool" value="true"/>
|
|
||||||
<property name="cycle_apps_only" type="bool" value="false"/>
|
|
||||||
<property name="cycle_draw_frame" type="bool" value="true"/>
|
|
||||||
<property name="cycle_raise" type="bool" value="false"/>
|
|
||||||
<property name="cycle_hidden" type="bool" value="true"/>
|
|
||||||
<property name="cycle_minimum" type="bool" value="true"/>
|
|
||||||
<property name="cycle_minimized" type="bool" value="false"/>
|
|
||||||
<property name="cycle_preview" type="bool" value="true"/>
|
|
||||||
<property name="cycle_tabwin_mode" type="int" value="0"/>
|
|
||||||
<property name="cycle_workspaces" type="bool" value="false"/>
|
|
||||||
<property name="double_click_action" type="string" value="maximize"/>
|
|
||||||
<property name="double_click_distance" type="int" value="5"/>
|
|
||||||
<property name="double_click_time" type="int" value="250"/>
|
|
||||||
<property name="easy_click" type="string" value="Alt"/>
|
|
||||||
<property name="focus_delay" type="int" value="250"/>
|
|
||||||
<property name="focus_hint" type="bool" value="true"/>
|
|
||||||
<property name="focus_new" type="bool" value="true"/>
|
|
||||||
<property name="frame_opacity" type="int" value="100"/>
|
|
||||||
<property name="frame_border_top" type="int" value="0"/>
|
|
||||||
<property name="full_width_title" type="bool" value="true"/>
|
|
||||||
<property name="horiz_scroll_opacity" type="bool" value="false"/>
|
|
||||||
<property name="inactive_opacity" type="int" value="100"/>
|
|
||||||
<property name="maximized_offset" type="int" value="0"/>
|
|
||||||
<property name="mousewheel_rollup" type="bool" value="true"/>
|
|
||||||
<property name="move_opacity" type="int" value="100"/>
|
|
||||||
<property name="placement_mode" type="string" value="center"/>
|
|
||||||
<property name="placement_ratio" type="int" value="20"/>
|
|
||||||
<property name="popup_opacity" type="int" value="100"/>
|
|
||||||
<property name="prevent_focus_stealing" type="bool" value="false"/>
|
|
||||||
<property name="raise_delay" type="int" value="250"/>
|
|
||||||
<property name="raise_on_click" type="bool" value="true"/>
|
|
||||||
<property name="raise_on_focus" type="bool" value="false"/>
|
|
||||||
<property name="raise_with_any_button" type="bool" value="true"/>
|
|
||||||
<property name="repeat_urgent_blink" type="bool" value="false"/>
|
|
||||||
<property name="resize_opacity" type="int" value="100"/>
|
|
||||||
<property name="scroll_workspaces" type="bool" value="true"/>
|
|
||||||
<property name="shadow_delta_height" type="int" value="0"/>
|
|
||||||
<property name="shadow_delta_width" type="int" value="0"/>
|
|
||||||
<property name="shadow_delta_x" type="int" value="0"/>
|
|
||||||
<property name="shadow_delta_y" type="int" value="-3"/>
|
|
||||||
<property name="shadow_opacity" type="int" value="50"/>
|
|
||||||
<property name="show_app_icon" type="bool" value="false"/>
|
|
||||||
<property name="show_dock_shadow" type="bool" value="true"/>
|
|
||||||
<property name="show_frame_shadow" type="bool" value="true"/>
|
|
||||||
<property name="show_popup_shadow" type="bool" value="false"/>
|
|
||||||
<property name="snap_resist" type="bool" value="false"/>
|
|
||||||
<property name="snap_to_border" type="bool" value="true"/>
|
|
||||||
<property name="snap_to_windows" type="bool" value="false"/>
|
|
||||||
<property name="snap_width" type="int" value="10"/>
|
|
||||||
<property name="vblank_mode" type="string" value="auto"/>
|
|
||||||
<property name="theme" type="string" value="Catppuccin-dark"/>
|
|
||||||
<property name="tile_on_move" type="bool" value="true"/>
|
|
||||||
<property name="title_alignment" type="string" value="center"/>
|
|
||||||
<property name="title_font" type="string" value="Sans Bold 9"/>
|
|
||||||
<property name="title_horizontal_offset" type="int" value="0"/>
|
|
||||||
<property name="titleless_maximize" type="bool" value="false"/>
|
|
||||||
<property name="title_shadow_active" type="string" value="false"/>
|
|
||||||
<property name="title_shadow_inactive" type="string" value="false"/>
|
|
||||||
<property name="title_vertical_offset_active" type="int" value="0"/>
|
|
||||||
<property name="title_vertical_offset_inactive" type="int" value="0"/>
|
|
||||||
<property name="toggle_workspaces" type="bool" value="false"/>
|
|
||||||
<property name="unredirect_overlays" type="bool" value="true"/>
|
|
||||||
<property name="urgent_blink" type="bool" value="false"/>
|
|
||||||
<property name="use_compositing" type="bool" value="true"/>
|
|
||||||
<property name="workspace_count" type="int" value="4"/>
|
|
||||||
<property name="wrap_cycle" type="bool" value="true"/>
|
|
||||||
<property name="wrap_layout" type="bool" value="true"/>
|
|
||||||
<property name="wrap_resistance" type="int" value="10"/>
|
|
||||||
<property name="wrap_windows" type="bool" value="true"/>
|
|
||||||
<property name="wrap_workspaces" type="bool" value="false"/>
|
|
||||||
<property name="zoom_desktop" type="bool" value="true"/>
|
|
||||||
<property name="zoom_pointer" type="bool" value="true"/>
|
|
||||||
<property name="workspace_names" type="array">
|
|
||||||
<value type="string" value="Workspace 1"/>
|
|
||||||
<value type="string" value="Workspace 2"/>
|
|
||||||
<value type="string" value="Workspace 3"/>
|
|
||||||
<value type="string" value="Workspace 4"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
@ -1,44 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xsettings" version="1.0">
|
|
||||||
<property name="Net" type="empty">
|
|
||||||
<property name="ThemeName" type="string" value="Catppuccin-dark"/>
|
|
||||||
<property name="IconThemeName" type="string" value="Papirus-Dark"/>
|
|
||||||
<property name="DoubleClickTime" type="empty"/>
|
|
||||||
<property name="DoubleClickDistance" type="empty"/>
|
|
||||||
<property name="DndDragThreshold" type="empty"/>
|
|
||||||
<property name="CursorBlink" type="empty"/>
|
|
||||||
<property name="CursorBlinkTime" type="empty"/>
|
|
||||||
<property name="SoundThemeName" type="empty"/>
|
|
||||||
<property name="EnableEventSounds" type="empty"/>
|
|
||||||
<property name="EnableInputFeedbackSounds" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="Xft" type="empty">
|
|
||||||
<property name="DPI" type="empty"/>
|
|
||||||
<property name="Antialias" type="empty"/>
|
|
||||||
<property name="Hinting" type="empty"/>
|
|
||||||
<property name="HintStyle" type="empty"/>
|
|
||||||
<property name="RGBA" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="Gtk" type="empty">
|
|
||||||
<property name="CanChangeAccels" type="empty"/>
|
|
||||||
<property name="ColorPalette" type="empty"/>
|
|
||||||
<property name="FontName" type="empty"/>
|
|
||||||
<property name="MonospaceFontName" type="empty"/>
|
|
||||||
<property name="IconSizes" type="empty"/>
|
|
||||||
<property name="KeyThemeName" type="empty"/>
|
|
||||||
<property name="ToolbarStyle" type="empty"/>
|
|
||||||
<property name="ToolbarIconSize" type="empty"/>
|
|
||||||
<property name="MenuImages" type="empty"/>
|
|
||||||
<property name="ButtonImages" type="empty"/>
|
|
||||||
<property name="MenuBarAccel" type="empty"/>
|
|
||||||
<property name="CursorThemeName" type="string" value="Catppuccin-Dark-Cursors"/>
|
|
||||||
<property name="CursorThemeSize" type="empty"/>
|
|
||||||
<property name="DecorationLayout" type="empty"/>
|
|
||||||
<property name="DialogsUseHeader" type="empty"/>
|
|
||||||
<property name="TitlebarMiddleClick" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="Gdk" type="empty">
|
|
||||||
<property name="WindowScalingFactor" type="empty"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
18
README.md
18
README.md
@ -1,12 +1,8 @@
|
|||||||
# dotfiles
|
# dotfiles
|
||||||
Dotfiles for everything what I use
|
Dotfiles for Sway and Waybar
|
||||||
|
# Requirements
|
||||||
Available for:
|
sway and waybar
|
||||||
sway, waybar, xfce4-panel
|
# Instructions
|
||||||
|
1. Clone this repository using git or download it directly as ZIP file
|
||||||
Requirements:
|
2. Copy the sway and waybar folder into .config directory
|
||||||
Xfce: Plank, Catppuccin-light GTK theme, Papirus Icon theme, vala-panel-appmenu
|
3. Press Super+Shift+C to reload Sway and Waybar
|
||||||
Sway/Wayland: wlogout, waybar
|
|
||||||
|
|
||||||
Credits:
|
|
||||||
[Catppuccin](https://github.com/catppuccin)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user